From 47c185538be8d33278adbaed8b022032a4321547 Mon Sep 17 00:00:00 2001 From: Baohua Yang Date: Fri, 12 Jan 2018 22:32:27 -0800 Subject: [PATCH] Update explorer artifacts path --- hyperledger_fabric/latest/base.yaml | 51 +- .../docker-compose-2orgs-4peers-solo-be.yaml | 17 +- .../latest/explorer-artifacts/config.json | 57 + .../fabricexplorer.sql | 0 .../latest/explorer/config.json | 73 - .../latest/scripts/test_lscc.sh | 2 +- .../channel-artifacts/businesschannel_0.block | Bin 12127 -> 12128 bytes .../channel-artifacts/businesschannel_1.block | Bin 13969 -> 13969 bytes .../channel-artifacts/businesschannel_2.block | Bin 14027 -> 14027 bytes .../channel-artifacts/businesschannel_3.block | Bin 5332 -> 5331 bytes .../channel-artifacts/businesschannel_4.block | Bin 5336 -> 5337 bytes .../channel-artifacts/businesschannel_5.block | Bin 4792 -> 4791 bytes .../channel-artifacts/businesschannel_6.block | Bin 4797 -> 4795 bytes .../channel-artifacts/businesschannel_7.block | Bin 21277 -> 21279 bytes .../businesschannel_config.block | Bin 21277 -> 21279 bytes .../businesschannel_config.block.json | 24 +- .../solo/channel-artifacts/config_delta.pb | Bin 2967 -> 2967 bytes .../channel-artifacts/config_delta_env.pb | Bin 5733 -> 5733 bytes .../orderer.genesis.updated.block | Bin 9161 -> 9161 bytes .../solo/channel-artifacts/original_config.pb | Bin 9096 -> 9096 bytes .../channel-artifacts/testchainid_1.block | Bin 14872 -> 14872 bytes .../solo/channel-artifacts/updated_config.pb | Bin 11821 -> 11821 bytes .../latest/solo/logs/dev_all.log | 37153 +++++++++------- .../latest/solo/logs/dev_orderer.log | 8387 ++-- .../latest/solo/logs/dev_peer0.log | 9584 ++-- hyperledger_fabric/v1.0.2/Makefile | 2 +- .../v1.0.2/scripts/test_lscc.sh | 2 +- .../v1.0.2/scripts/variables.sh | 1 + .../channel-artifacts/businesschannel_1.block | Bin 13737 -> 13739 bytes .../channel-artifacts/businesschannel_2.block | Bin 13795 -> 13794 bytes .../channel-artifacts/businesschannel_3.block | Bin 5220 -> 5219 bytes .../channel-artifacts/businesschannel_4.block | Bin 5220 -> 5219 bytes .../channel-artifacts/businesschannel_5.block | Bin 4681 -> 4678 bytes .../channel-artifacts/businesschannel_6.block | Bin 4680 -> 4681 bytes .../businesschannel_config.block | Bin 13795 -> 13794 bytes .../new_businesschannel.tx.json | 113 - .../channel-artifacts/testchainid_1.block | Bin 14612 -> 14613 bytes .../v1.0.5/solo/logs/dev_all.log | 30750 +++++++------ .../v1.0.5/solo/logs/dev_orderer.log | 14837 +++--- .../v1.0.5/solo/logs/dev_peer0.log | 4988 +-- 40 files changed, 56771 insertions(+), 49270 deletions(-) create mode 100644 hyperledger_fabric/latest/explorer-artifacts/config.json rename hyperledger_fabric/latest/{explorer => explorer-artifacts}/fabricexplorer.sql (100%) delete mode 100644 hyperledger_fabric/latest/explorer/config.json diff --git a/hyperledger_fabric/latest/base.yaml b/hyperledger_fabric/latest/base.yaml index d814da45..39b164dc 100644 --- a/hyperledger_fabric/latest/base.yaml +++ b/hyperledger_fabric/latest/base.yaml @@ -1,10 +1,20 @@ -# This is the default base file to config env and command -# All element in this file is abstract without knowing the org and consensus type +# Contains the base template for all Hyperledger Fabric services +# Never directly use services in this template, but inherent +# All services are abstract without any names, config or port mapping # https://github.com/yeasy/docker-compose-files +# +# * ca-base: base for fabric-ca +# * orderer-base: base for fabric-orderer +# * peer-base: base for fabric-peer +# * cli-base: base for fabric peer client +# * event-listener-base: base for fabric eventhub listener +# * kafka-base: base for kafka +# * zookeeper-base: base for fabric-zookeeper +# * couchdb-base: base for couchdb +# * explorer-base: base for Hyperledger blockchain-explorer +# * mysql-base: base for MySQL -# Depends on the hyperledger/fabric-peer image. - -version: '2' +version: '2' # compose v3 still doesn't support `extends`, shame! services: ca-base: @@ -12,8 +22,7 @@ services: restart: always environment: - FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server - - FABRIC_CA_SERVER_TLS_ENABLED=true - #- FABRIC_CA_SERVER_TLS_ENABLED=false + - FABRIC_CA_SERVER_TLS_ENABLED=true # change to false to disable TLS orderer-base: image: yeasy/hyperledger-fabric-orderer:latest @@ -108,14 +117,6 @@ services: #command: bash -c 'block-listener -events-address=peer0.org1.example.com:7053 -events-mspdir=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/ -events-mspid=Org1MSP' command: bash -c 'while true; do sleep 20170504; done' - couchdb-base: - #container_name: couchdb0 - image: hyperledger/fabric-couchdb:x86_64-1.1.0-preview - restart: always - tty: true - # Comment/Uncomment the port mapping if you want to hide/expose the CouchDB service, - # for example map it to utilize Fauxton User Interface in dev environments. - zookeeper-base: image: hyperledger/fabric-zookeeper:x86_64-1.1.0-preview restart: always @@ -126,7 +127,6 @@ services: - '3888' kafka-base: - # official repo doesn't have latest tag, however, kafka changes version recently #image: yeasy/hyperledger-fabric-kafka:0.10.2.0 image: hyperledger/fabric-kafka:x86_64-1.1.0-preview restart: always @@ -137,4 +137,21 @@ services: - KAFKA_UNCLEAN_LEADER_ELECTION_ENABLE=false - KAFKA_LOG_RETENTION_MS=-1 expose: - - '9092' \ No newline at end of file + - '9092' + + couchdb-base: + image: hyperledger/fabric-couchdb:x86_64-1.1.0-preview + restart: always + tty: true + + explorer-base: + image: yeasy/blockchain-explorer:0.1.0-preview # Till we have official image + expose: + - "8080" # HTTP port + command: bash -c 'sleep 10; node main.js' + + mysql-base: # mysql service + image: mysql:8.0 + restart: always + expose: + - "3306" diff --git a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml index ee93a266..3c6d917e 100644 --- a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml +++ b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo-be.yaml @@ -50,31 +50,32 @@ services: service: peer1.org2.example.com explorer: - image: yeasy/blockchain-explorer:latest + extends: + file: base.yaml + service: explorer-base container_name: explorer hostname: explorer depends_on: - mysql volumes: - - ./explorer/config.json:/blockchain-explorer/config.json + - ./explorer-artifacts/config.json:/blockchain-explorer/config.json - ./solo/crypto-config:/blockchain-explorer/first-network/crypto-config ports: - "8080:8080" # HTTP port - command: bash -c 'sleep 10; node main.js' mysql: # mysql service - image: mysql:8.0 + extends: + file: base.yaml + service: mysql-base container_name: mysql hostname: mysql - restart: always environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=fabricexplorer volumes: - - ./explorer/fabricexplorer.sql:/docker-entrypoint-initdb.d/fabricexplorer.sql - expose: - - "3306" + - ./explorer-artifacts/fabricexplorer.sql:/docker-entrypoint-initdb.d/fabricexplorer.sql #command: bash -c 'mysqld; sleep 1; mysql -uroot -proot < /tmp/fabricexplorer.sql; while true; do sleep 20171117; done' + #networks: # default: # external: diff --git a/hyperledger_fabric/latest/explorer-artifacts/config.json b/hyperledger_fabric/latest/explorer-artifacts/config.json new file mode 100644 index 00000000..1fe07a38 --- /dev/null +++ b/hyperledger_fabric/latest/explorer-artifacts/config.json @@ -0,0 +1,57 @@ +{ + "network-config": { + "org1": { + "name": "peerOrg1", + "mspid": "Org1MSP", + "peer1": { + "requests": "grpcs://peer0.org1.example.com:7051", + "events": "grpcs://peer0.org1.example.com:7053", + "server-hostname": "peer0.org1.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt" + }, + "peer2": { + "requests": "grpcs://peer1.org1.example.com:7051", + "events": "grpcs://peer1.org1.example.com:7053", + "server-hostname": "peer1.org1.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt" + }, + "admin": { + "key": "/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore", + "cert": "/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts" + } + }, + "org2": { + "name": "peerOrg2", + "mspid": "Org2MSP", + "peer1": { + "requests": "grpcs://peer0.org2.example.com:7051", + "events": "grpcs://peer0.org2.example.com:7053", + "server-hostname": "peer0.org2.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt" + }, + "peer2": { + "requests": "grpcs://peer1.org2.example.com:7051", + "events": "grpcs://peer1.org2.example.com:7053", + "server-hostname": "peer1.org2.example.com", + "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt" + }, + "admin": { + "key": "/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore", + "cert": "/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts" + } + } + }, + "host":"explorer", + "port":"8080", + "channel": "businesschannel", + "GOPATH":"/opt/gopath", + "keyValueStore":"/tmp/fabric-client-kvs", + "eventWaitTime":"30000", + "mysql":{ + "host":"mysql", + "port":"3306", + "database":"fabricexplorer", + "username":"root", + "passwd":"root" + } +} diff --git a/hyperledger_fabric/latest/explorer/fabricexplorer.sql b/hyperledger_fabric/latest/explorer-artifacts/fabricexplorer.sql similarity index 100% rename from hyperledger_fabric/latest/explorer/fabricexplorer.sql rename to hyperledger_fabric/latest/explorer-artifacts/fabricexplorer.sql diff --git a/hyperledger_fabric/latest/explorer/config.json b/hyperledger_fabric/latest/explorer/config.json deleted file mode 100644 index 33a81daa..00000000 --- a/hyperledger_fabric/latest/explorer/config.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "network-config": { - "orderer": [ - { - "url": "grpcs://orderer.example.com:7050", - "server-hostname": "orderer.example.com", - "tls_cacerts": "/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt" - } - ], - "org1": { - "name": "peerOrg1", - "mspid": "Org1MSP", - "peer1": { - "requests": "grpcs://peer0.org1.example.com:7051", - "events": "grpcs://peer0.org1.example.com:7053", - "server-hostname": "peer0.org1.example.com", - "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt" - }, - "peer2": { - "requests": "grpcs://peer1.org1.example.com:7051", - "events": "grpcs://peer1.org1.example.com:7053", - "server-hostname": "peer1.org1.example.com", - "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt" - }, - "admin": { - "key": "/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore", - "cert": "/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts" - } - }, - "org2": { - "name": "peerOrg2", - "mspid": "Org2MSP", - "ca": "https://ca.org2.example.com:7054", - "peer1": { - "requests": "grpcs://peer0.org2.example.com:7051", - "events": "grpcs://peer0.org2.example.com:7053", - "server-hostname": "peer0.org2.example.com", - "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt" - }, - "peer2": { - "requests": "grpcs://peer1.org2.example.com:7051", - "events": "grpcs://peer1.org2.example.com:7053", - "server-hostname": "peer1.org2.example.com", - "tls_cacerts": "/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt" - }, - "admin": { - "key": "/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore", - "cert": "/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts" - } - } - }, - "host":"explorer", - "port":"8080", - "channel": "businesschannel", - "GOPATH":"../artifacts", - "keyValueStore":"/tmp/fabric-client-kvs", - "eventWaitTime":"30000", - "peer":"peer1", - "org":["org1"], - "users":[ - { - "username":"admin", - "secret":"adminpw" - } - ], - "mysql":{ - "host":"mysql", - "port":"3306", - "database":"fabricexplorer", - "username":"root", - "passwd":"root" - } -} diff --git a/hyperledger_fabric/latest/scripts/test_lscc.sh b/hyperledger_fabric/latest/scripts/test_lscc.sh index 1b9424a1..ae8a6ee2 100644 --- a/hyperledger_fabric/latest/scripts/test_lscc.sh +++ b/hyperledger_fabric/latest/scripts/test_lscc.sh @@ -29,7 +29,7 @@ chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_C echo_b "LSCC Get cc bytes" chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' -echo_b "LSCC Get all chaincodes installed on the channel" +echo_b "LSCC Get all chaincodes installed on the peer" chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' echo_b "LSCC Get all chaincodes instantiated on the channel" diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block index e1089781984ea8fb325bc9027ee773ebc7ff3b50..d601c9088f6d4f6cd6a849335cd7ca08b8257988 100644 GIT binary patch delta 534 zcmcZ~_aM%SOG!%Ma?+&Dznz>!Om423rm@EI!IcM})o$E+=iZYhIHh%|!7ripaa?QS zxE{oEon_;a=3ta!8(wC$=}PS|@C_MApDy+A;a11#g3edN54@a{TlkbF|KRPO?5^f9`5j;0W=1I{uE}O9$&;B>j5)N}98+>L z^NKe|^Rt6QRVTlZTSE<=DOSMe9XShA?$+tf1LO0vC8LQk^Zov=S9^}j9=o>Cf>=$x3aAi_txL?9E?_Hy; zd0Fks-v%BexE&) zg2AS_&(i--E@@^EQ)Q3aSHogpdZZ?}VAc$CS80KBU!Or;^vN)vo%hP4ueTrF$iO9J`<^Y+f!zJuS=N}l2#oTPKizv)%?KnNKoT=`U3CQbAq2;F-*$&aLYU!40SruX9dqlSJzqN{eP2nnr=<60fZ zbw8HtEE|_J2cr}l$E%%tHd<*jOFcSv;pmsmUNSFhk{`3)_ehAXv%48#`iozvXLCLC zCCM-JSLywQ;~-0 z7WyQ>wOoMfKFEno5GQV4rDn@4Rq-Ky4r6Kk@|Gh8-hS(|E{Ol_RO+4i=a$f+&5T;+ zjLco^T$}f)X)@PKOs#a7SHS+{q}fifcAfo6Jm=>NabEjmBjje_!ldBO_rGRC#eRkk zuMq9M3H)~-vPXQp^M3Q{4f(ofidY;Om=rAM1a7_+B&r-I&B2XkFO`?s1Ff2E9dpgp ztDMDfqKXdX35SEdeXLr|624vvyIu%pO0P=omUFZMhF5D$wsr!8OaHg%_C}) zmm@U+DwD<}CzC%Uj+4nIB$I(ANs|&KD+nqEL1b-dZgaD&16B%?W)3ow)fgs|Sq=@8 z2pJ`lSq==dm=4DZlc^>|lVK$-le8txlVBt!lgTC|lYu5k8!84tWNm3~a}voA3jGfX z-v$aB2m%@g2(`!Nvj`_W0~k_O2TT9lu{|X0){`e_z`CG~_Od4{Q5&;eDmw&!mG7!J zY|w}1pUdvg5+*leOTg@kbw8KF5=JmY0w7CX#A_wgbcpaU3K@QjdIWsrZ|P0DUb^E~ z-nmImsR;rgX*vVN<^@IvYOer?7YW|7?SyE6<3>_cF|{K1KKO?s$F3JBS0w8NVon5X#C3^ps*}JmmUL;@gS+0xyo58m8o_X!}MyK%xdg(?G??E>U_ z%m8ch@|^_&AUyGIJIAF_xG||r+VC9PwcSwkD~z_h315Fopa-05<2O&Ig3AxYw{Eo z)yZB`Jd=;AsDbGO6;(Dv-{1fN#?5|G=eZ`YRCAeZtE$4G#paljo0(Un}go zeUM|BAdcP4p>E48QET&Ni5OGr)`rmHw|>nkSHvWXbUf2i6E??cS+mr)YuJW%u2epw zX0d%|)QQq5jD3ec_L^AM3Aq`#Fe&68*`U#{y6Lj$V)>*gvm-oAxWwBpZk{DKao6?Z zs}D9lU{X+foj%uyGq2HV-hIWnb7e1wDp%)7&(h;tF6go&pvGArVvfL0)x;$BHFbxg z{|jyu7tKHF*_Agx_VKOe`l?^Tx|iZam=tm{xYzH~`?Dx5E%Ge)IXYx6XH5$1%? z-tS~T=r0VfT2`SkQP#_|s;5<7R*&Nx#PLZ&vb(ZYUsd@2Z>yiVl4Jh!a-X+0M>-W| zyb;@JaF6LK(8^5_Ka767k#6~yY|#-P@A|mrk=nm@_nVm}>zn7W@|JAoGFDAiHQ!{9?IU xeN!_r9#bZT;IQo_H%9$zzS;FI3lNO>Pi=L!`{0mprBt*0ZAn)d`cW4QG>d4Kfp`o7}}3svm*3M#9}PZ4!G7^D<)o5=JmY0w8~i zra7w#^jpt^ zv2qfh{T9>%0erGm5=JmY0w8~`@59oeKg%gD2);fXyTM(h;j!g8Ni~~)K;0TJz?qo> zAYx@l8-!v7!dg-!FCtlcWSP#$nYBQphrNx>>v%&I+Y(1GMFJrJzSwahK^9??{Rft% zDS{qCnwGl6Cw}WlGD?Q?OBZ{90w8f`v;`AL->F27^#9b?IY4mjC-LXX0!+FR9@(W% z>BAa@4hsAR68Q!Stp*CSQZp0-YD4u=k)RDxYBhJy#v*@~Z+wHmTbXK&qY_6jMFJrJ z%NS15xeT;&Lf4xX|FqI`201m~G5mFMebS3b;{m}i0w8KS`AB=is`pwQ3rjtodgGXz zW;U!`B;HlZZGu4XahnSN1_}ZQ0uuPMO*0t-WK4H1EbhtS78dbIj+b++aVrpt>`kP{ z6cR=-L;@fwUCf}8%!@qtECvqC)YgF^`|yl#3smCCf-gd8(M4SXAVfIdwjC78?6rV7 cr5kO=bVcewKol3gMHXP*{eE9yJPH5`07yMba{vGU delta 795 zcmV+$1LXY6ZOd(53PuP55+GzmMzsbGm~b?v^^VVk2{VuwoJksH597C(Gaz(3*KHag zq1lcS{W<+Tg6L_A3v29$mgKqM2j}{~JzJcg$dq%S68K&U^(PX>M~8+!YE3 zPjY85O;b=3&=m*)lZP2Nvycz>36t>|Ws|=dGLtbSC6jt3MUy@cERzx@sguVgOOtmc zNRvJfEfUEP3jPlY-v$aB2m%@g2=2MOvqC350~+!<`n$lKy38AYd&sfbzbsQ~3d~e; z{)G~mvzaOl0RfA%rzlWtJ%rIs|uDt$`S+GCjC&Jss3MFJrJ$^7z0 z<;o&_tqjSUCdT(!IQKqMfXnzg&MahlN*D%q0w6M<>E6ZHAUqiL+3%mOpD$5j#&Tli zhE;N7MmS}W$6yjhFhl|%eHgza==ds;fyj(gq@p3j^235Rrpe2#e`6U|!jC*#`vM>w z-I_8lkBUQ)V=BIHu^*-BEM}z+YP=$<2%gLhLDIAmMleJIAR~Z(`vWV0ce$m0B;jg|A~6Nvt80Ww*nwSWRD6HubgvmekKfb3ByJhx$xOuulNBXqM3Bd^G#G5 zg$@e)1`_xN3athTvr{t^18KKI3p7$$&jvCIABo*$;qHpg(*V)^(`yn&Fhl|%1d;@t z4U$rpEW>Z7NDxC+D;QOwsZjx`O90J5%FB8E0w7aIAm|;3#8x(6Pye^EPFY3u=(nEp zAIO;UI5-?+N5l$%2MPiR0uuSNPBR$;Wefdd?`a2N*nhcEN(?C1EV1`R&t^5K01`(q zMFJrJu3(qy{>ys+qAQ|5m!ULy!o5{n^HfxeJBb53IHdzOj-Z{ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block index 3ee4a06ddb09d54dbb5c1703d978d05d6bf75abb..19a18a80f7858993335240b8ac6cdb1a47f7f53d 100644 GIT binary patch delta 672 zcmcbjd0Dfb%Z-CsNa5RpJxr^kZqJc5KYv!_oTbn$HwOM$e^}mSTD(t4zVlmJN+IK) z!PU^9M-J$z6=)a>;i2^GG^Xi8uQ#q%frEN{&M@M_Oo>i-u~uO znH0n(owGgL@17}f{_WwSjU1(pOTX^=+!MYlV)vzu>NC!z3Aq`#Fe&itd;2i_+-J?1 zPYxUETz=Pg(Ce(vcdrm}OT*U>xwx7SF)8S9f7S>u`RXZp>-u88lNT8iS8eHDIEQEJ zk!tOJ{+!F_>ZMvXpW~Hht}j$gX`902cYjV-sB6o|7gIjmJAdh6;ss-fMd{IbcS8I+ zg(5@F{ov$XEq23V*6*Yb(|8|E-NbjXo=uHOp~hXYvTEK=`P|N3`#pK3zjEBNe!|qk zYXTb=mw!=8YEf#DZ*YK6BirU2L1yNZT%DH( zqQ1H^uva{r@h<%K4nF>W>rXxGp8;`1VDh@{*XpY-xt;oD*Qhs7ouTTEjfnYi#!U?- xPm&h=jAv3{d~dzCy*TZ@<@M%UJnJGanA};(_NOY_yfuE_Y{hwB?6?@X7yyMX9D)D< delta 673 zcmcbtc}26H%Z-CsNI~mmmGf5RR~ug|EL-IFTVVc?JQJ72-jld4<)82LeQM?*rQlq0 z!y@&@k4ZjXKN;kgt~$(MBc!^mXHivZKi>;&*Xxo(jnZ8Iq_{RqacyMh%H?2|;^FwR zbI&DKfhUW5W-=-9CzTdw=A{-FCubz)<)!9mIV2gR7#gQonWY(-SeTk8C#F~$r&uN? zCZ`x1B^z0$B&Jv-C8t?f7#k-h873u~C7PNUBwCsonx-ZvS*E6>rWtMAX~HaVws`~N z*0)pHo-J`Tba}Vi?O~5@kAC{I!p*EK2DoJ>`?Akgcx3L}krQxWhu_R6UsbPed^<7n z)OCr|=9%k0A3WFmrrK;X2ZuFl{ae-Y5W_J0-}g@GuFpOyx;S7~QDtt0;$?0X|LbI(*J1&4)-il>x2=X0h#y3Am(nEB_$DM#;J zXy#;DaMxp}f6IBU26iqc4kn?WY+P&ExF)c1arqaeq!y(X`346FHL`8a5oBggEvjWv zFcw%BV19oy<1xt>Ywcc?ADoorpep2U;L4=P@LzVtS^kunOC^^cuRJh8zf_@GV#}uN z4J=R0o~``#_p3M172%at@pEcF{+4zSmXk=CHBY;`^_4%1^=dYm?R$NGR&z0MF#rI; C0vR9x diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block index 4f0cd9ff0d6b10d413f76e67753285a1ba5a257f..f4a445131fb368a0f73e8a973f05626475b30a50 100644 GIT binary patch delta 705 zcmcbic~i5V%Z-CYNMXsD_=(<;eCeF+QpYb`WPka(wx_FVRe1Fm_R!V0w`{s9rEshI z=InLnCuRJeJi(#Gh1JoSBzeT%4Sdn3tEDqvc>`o@knEVr5}$nrd!oWMGh-W|U-Z zl44a0oClzMIU;Vz}9h>l;(OyMZf{ zBE#Aj8B6y>?%OMJ-_3K&+dp5Aeom2zK62_SFVM?Z59@|ADR`cKSI{)?`iFBnIG$vA z{J7y~y7BnWbCX2`O_`?8RCB&51Tkm{xAcXh3#>(~ul-Y(eer;O=H=Mb4P1|F#KiPj zt3+dOFe&8xj|uBKkZN^#s-jBvLy_~jV)r%OH?sZR$@+uac9WUVDyi1Z7kTBG>qRbJ ze*a6}yhYfDtyIgyqQ|N3lis1ER+vpasZToRy9aSi%6hsZJZ;nMjSt0gukJf}^TWz} zeh&-2F)}GQr#$B4IQ?vz$NBfqKTe;%A?=iw^*Xzg?{9J~WBxR2dp6g9HZCR(CZQi} zTx;35Ca`gF`4^?67Nr*X1_uZ=Zq65EVNMZG=el$I3~$D)jeAO7iX`r3idgbA+VS^( zAvXgTCIzE2ovv5yvWnM5_f1~=(ZuxBoT9}Oe`YCtf1>qTOn5IhlLEv1j-0*fz0b1d gUEu4P?^*jiNwGQ2_o;e0DP$?ZvX%Q delta 689 zcmcbqc|)_F%Z-CYNa4QXgSr4^t5@%iPgg5*+2UHdtaM`1e!qQdPiShtSRb)cO5sS` z>hgzb%nKNqZV3g%r=ONGon)u%@o2Xwm&wk>hF5fiTBNxerMb3AacyMh%H?2|;^FwS zbI&DKff={=A7oVGPbw|W%u6jUPR>Zo%S+ACa!55ZOEWdMGBq+yH8(J@NKQ6RGPF!G zH%&B8G%!pvNlQwxNVZHhNKG*`Nit7OHBU@4GB!&!HwWr7Fi0~tHQTt;gjrU-_<3fn zE|+SUmDFQK$0IKlSr@wo@7^9J^k0bU&t@(bZDuK)O14k-XP>0Lgqv$43zvfA4^f-R zKM#cdYON_%mHw6Jb;YV+TdawBo3Yq*uhi{Un>jcHm>Azq=4CP5?8Wtssou@Ng-Ic_ z^HWiXwZ^W0JWKinq<>9X`Kn%I%`#SH@v>XSJqbT-nH2K3uimnC`5*E4_l4_vZ=Sk( z%H3Vpf$`U|W-r;hiv&MN34zT~T4wkBhwJR>iTP%g8B9{^PEF=0xt(Rb{#N~wecRUh z>;u|#=b-wRr@J{H-n#RMb$wB|#G_r;XQ%S3Tu7?zoWDF>&|a#IkLwSc(9g{=f|ATx zr~e4_Xstc<>f(e%YX{%GPA89B8n7IhG+W5sz?DgnVXo!z2@0!=*ZKrA8XC>znQh)% z#&u=Fw1tMx_q1pcJS$9w7NxV3tTXJ>Y0)arT z26iqc4koC5sn@^1Zu&c=VM?e;FY_7prTbJbe_W;4!{GR6jo2U zHKF|6@>@R`&;3-o;pF>*PrJ4#xzb+!0+-R#Nh}INPsO+%iE&LA#lvys z__Ir_0zaPa>tIsiPbw|W%u6jUPR>Zo%S+ACaxhFzN=i(%GPg)GPc$(wH#bQ$Og0AM zG?Qe5q!i=iG$WHFlO)U3F~BW5*^k{oq4jQ6B3oYnop75&9Yr6R%{;n%mb-T* zZDusNA$^?XM(XBy>>bSYd|zgtXY$G@N_G3ZdEuLt53Vfq+9OdiY01}|{SC{mF0o@$ zkSOP@7qjFSzTeW%!`JZQ_{`(e%V)n+3R=AW!>yoNEn^`!0~aO*rMks)uZXN*6q_<< zB7@Qb#q)<4o;sbHSJzd!MuuDAip!TeM(8H|7+o2z7u}c zymOmuV#h%}6R{au>)aJiu%U69;#QN{xe=)O3SyD_27GkB}Y%;Dle0i;5%DvE!*S*lL ze8mSp6Q9P%JK?JB=m!gYb_hs1U4=%|Du%CqSPYa-~gdUw#@-HvU45dohlVpOJ0uYSt@M%(qM|-^*g({7`PY!lMod> delta 678 zcmdn4x|%Z-CoNFhM(%BS+h^^>MVPBitY?M{7g@yQjgYta{C^S52CtDSUIN})LQ zmcW@h^}Ni(AHJn_e|;uFA2yN&UmEN!*6FV&Bf)6n$pZo#hv2-zkgK zW>N@QvU=INDcj5!@+yUj?=jim%xJov`_{AQoqkWuIe9j36>>9hVN&q;GK)=?$0jm% zzND|)O|c0NF3nkc|8aeHi1foh??XJ7F)8S7I+`8!{@YZRm`PLQirhJton50f=#WpD3Cvl|bY6jH1oCnU{Ud^ROu3EMiY8KxJU zHcB1p>nQ5gh+F-BP1zBy26iqc4kn?WY+P&ExF)c1arqaeq!y(X`346FHL`6E;Adt| z<$SYs$=e6Yh0i|z-_G7XUrx@bYMay*hRH(i2Chts4BySenb^vi1UqJz=Y-l>h`l$| zTD$4-Dc5|Go%cWyZs H0~Z4T;>I71 diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block index 6accb3292e00e0777596a9c9b494f7ac013fecaa..9a13fad29dee9ec0382a1e494d486f271cde4a5e 100644 GIT binary patch delta 680 zcmdn1x?8oL%Z-CgNMUEUm~D#Q(Nn%jf@*?VS?8zj>rq#ezIdT_>#}8Bmse;=DKxA# zIqcOUUcIX0-sb;>VB_O4~;Nc^o7h+sb#kgjPacyMh%H?2|;^w$> z{MjW|f!*g9s4MX&l@@2_r4|<_XC&t3rRHckn3-8x7?@jHnwuF|BpDbOCnhJR8W^Oc z7?`D*nVJ}znHw3W7@HfLB&L`r8yKXSr5+!#a>Cx@9wX^SAK}MSa90(6EFV1&g-4eq)@V@U8`vA!nK=vj~_j}DMRGrm4lvl z%6jeyOS&;%cDtS@1U4r>r1z_8=D~?Zyz6cmC~P=-c*|coiJ3FLTv;+J?O#nWUvH8|A4oEMnC1vqEj?egYg H;9>v(mBJGD delta 682 zcmdn3x>vQH%Z-CgNTK=uZ_!lS1NJkX9*tmCz9V-_$ujq0z*|v;FDn|>@W<;)DOgUm z4L1vr6-lZW-oqoe{ok1*+8Yn$nr?smea7d_`3p7)y%OVkF2*%mjB6u1S1t#$6gS7L zU3)IE3fy@6sZ@zSskAsVFSWQhIU_MIFEvNYAu-j|A}!U@G9}G2*&@{<(cIj^$iy@y z*&@**(ICYzE!E5%sKPKcG1$r>$uQNz*f`PL$S5_{EXl~+XyXo3X4$05nE6k> zC$9ST^zgIxZB9Sk*9H69i6qPtdcw!`a5EQ+HnS8?C37bGv#YCrVdrXKuP?1f?0Qv zdH-bRpk?1YcCXhgjED~0eqh%gsBJ4(?K%C;CyD9ZiP&fRwt78?i7dYK%du6fcac-^ zjetZ3CIvC|_g^NNZ1iT&tZ7*M?AjFlmTMX3-|9~^X4qHEW|V(|>pvS869<#fkIlCH zlFTXf_kJeMJ2GR1diWV8wtc20*>@MQ6y9DHEaYb3!lYns?`S(M-PiNS4zC42FMF+X zvC?Qce8^rlZRL)H?DuCgm=wak9(>}Xo#&Z4=Vk5v_LeE}RTt0jOUAU#5W6BOlzrNRx;$C6hZ3NwWwgJPMPF86}g>FAS5r86}fwFF*(?20>(PX>N0~ z+BK#MlPMYzvvL~t36l#iAd^`d7?XA{CXu)C6kUMKa<)omy^RVp_6bhQj=sc zbrSS53aB#*-v$aB2m%@g2<6A-kzo|G|1l{88oUb&=ciN;Kl3OuJ~+?2=hE-VVf4;0 zuM)$PLN!~Hyg(TVA_@uyL1b-dZj-+?91aZ%2TyWmGEGxZ5&{STv)VNW3X?=HB$MD7 zK$D3XGLs-036p?84jdW~3JgPGaA9I;Y-x09Wpfe$A`1!!S8{1|Wpb0OKpYAx20>(P zX>M~8i?iQAD+6Kn3jI#)sn0c(xA!MR)#`A-t($)qNM=(VKApqA9?o7TT|M31T zGy^FrHr%oP0pgy5Ci&7_j62@Kt$P9>DMPMG)V7(G#C50unvfE#7Kl7}aNibVxmK6H z(xYEFvuZ>w17cL}$lOi2hVKp0rOPa-j&j@(*1h2BO{o$_Fhl|%A28uJ14W41;-eaz zOuKl2kmK#oo^$hZd>n%Br4wP*0w7HG2Sh4U-(6^w!uA%p*p3)X0?1QU1}x}UKODvX z?@tnov)@1~1AhY=y#-jqPlS(4)D}2o+E3WcujJX>3MCRpFhv3(0I|r8Q$M$RqOY!( zA98&Oee%&&F(`C4>85EUko;P+rve~w&W8oU(P(WT1k3*c$-gm8#ws6#g z+{@mHkcJox0MlCnAXv(i&7J9i@8_(Z-$if8q6%9X&r6yNfHe@>Ln-UI{b;t&{vH|JWu1=_M=(VKApqcK$lDt0-^975 zkvf)pOL7l{q^_7J%xy1I~s5~Z`I1J((X=M6EFcnxa- zDwALiZj&GmN0T5hNRx;$C6hZ3NwZ%XwhEIBFE_IkCHD!FbuVR;$s{I|n=cHL`y>go zgbzFllc+BwlNK64lXWj9lS&#Clj1LrlM^vflW;JilVmY<67n+&r!xxQ1_~Pp0vZMg zr@Fk6VHC6fF)0HYh2F9xE(GhD@^$`)6?U#Na{QfmDzeDe62g;0HCvOtKp2y$H4T%( zH5s#C8l?)8k3bHSdo?1Hy+9a~sWlA>Dh5GhZE0?E5{k3mKq~`auk7`~s*?<(agUt0 zC;y&4CaTK>)npC{5=JmY0w8Rp?*kC#txOM9rwXi31frY~E4D`~hwlC?S;bzL|!T()+XBKrI7*&R+(O%g&|o$--9BT7V$7 z6oU5&8oGKm5=Ssa0wDnUy^Jjfz)7U!dYLkL3clxGS7~Kqn-jj(y}|PD@R|AoAY5AP zyZx_qbnAOFy$hYZ4(p;-m0F8oOW6+Xg=FkwMiNFaL;@fiUf_+ipiGypI|>6KBc(g# zJnHv@faU~$==N*MA#4wn0w7j$v%qG9H~$S9Dvr6CJ*T3jSTKfOqvA>6k=Z`a-31ay zFhv3(0K76OCXH?Nn~mc8M^d^TynN2wn)7kw4}_d^~2b+z%&dRgboV(1`_xN3atjSrcV_EU}{O#XeYi@ZhEqEWR7R)vvPxAbFY7 z)Jpw+AOukp>SowjYE!?FJ`5N^MNRx;$C6hZ3NwWwgJPMPF86}g>FAS5r86}fwFF*(?20>(PX>N0~ z+BK#MlPMYzvvL~t36l#iAd^`d7?XA{CXu)C6kUMKa<)omy^RVp_6bhQj=sc zbrSS53aB#*-v$aB2m%@g2<6A-kzo|G|1l{88oUb&=ciN;Kl3OuJ~+?2=hE-VVf4;0 zuM)$PLN!~Hyg(TVA_@uyL1b-dZj-+?91aZ%2TyWmGEGxZ5&{STv)VNW3X?=HB$MD7 zK$D3XGLs-036p?84jdW~3JgPGaA9I;Y-x09Wpfe$A`1!!S8{1|Wpb0OKpYAx20>(P zX>M~8i?iQAD+6Kn3jI#)sn0c(xA!MR)#`A-t($)qNM=(VKApqA9?o7TT|M31T zGy^FrHr%oP0pgy5Ci&7_j62@Kt$P9>DMPMG)V7(G#C50unvfE#7Kl7}aNibVxmK6H z(xYEFvuZ>w17cL}$lOi2hVKp0rOPa-j&j@(*1h2BO{o$_Fhl|%A28uJ14W41;-eaz zOuKl2kmK#oo^$hZd>n%Br4wP*0w7HG2Sh4U-(6^w!uA%p*p3)X0?1QU1}x}UKODvX z?@tnov)@1~1AhY=y#-jqPlS(4)D}2o+E3WcujJX>3MCRpFhv3(0I|r8Q$M$RqOY!( zA98&Oee%&&F(`C4>85EUko;P+rve~w&W8oU(P(WT1k3*c$-gm8#ws6#g z+{@mHkcJox0MlCnAXv(i&7J9i@8_(Z-$if8q6%9X&r6yNfHe@>Ln-UI{b;t&{vH|JWu1=_M=(VKApqcK$lDt0-^975 zkvf)pOL7l{q^_7J%xy1I~s5~Z`I1J((X=M6EFcnxa- zDwALiZj&GmN0T5hNRx;$C6hZ3NwZ%XwhEIBFE_IkCHD!FbuVR;$s{I|n=cHL`y>go zgbzFllc+BwlNK64lXWj9lS&#Clj1LrlM^vflW;JilVmY<67n+&r!xxQ1_~Pp0vZMg zr@Fk6VHC6fF)0HYh2F9xE(GhD@^$`)6?U#Na{QfmDzeDe62g;0HCvOtKp2y$H4T%( zH5s#C8l?)8k3bHSdo?1Hy+9a~sWlA>Dh5GhZE0?E5{k3mKq~`auk7`~s*?<(agUt0 zC;y&4CaTK>)npC{5=JmY0w8Rp?*kC#txOM9rwXi31frY~E4D`~hwlC?S;bzL|!T()+XBKrI7*&R+(O%g&|o$--9BT7V$7 z6oU5&8oGKm5=Ssa0wDnUy^Jjfz)7U!dYLkL3clxGS7~Kqn-jj(y}|PD@R|AoAY5AP zyZx_qbnAOFy$hYZ4(p;-m0F8oOW6+Xg=FkwMiNFaL;@fiUf_+ipiGypI|>6KBc(g# zJnHv@faU~$==N*MA#4wn0w7j$v%qG9H~$S9Dvr6CJ*T3jSTKfOqvA>6k=Z`a-31ay zFhv3(0K76OCXH?Nn~mc8M^d^TynN2wn)7kw4}_d^~2b+z%&dRgboV(1`_xN3atjSrcV_EU}{O#XeYi@ZhEqEWR7R)vvPxAbFY7 z)Jpw+AOukp>SowjYE!?FJ`5N^MQLX9HW4;SL!yA_@uyL1b-dZgUa<8kiOml@V>4g%$_` z5)BFmPjY86O;b=30tf-K{{sgKlQ<4!lLZbklbjA0lfn)Y2@47bS8{1|Wpb0z4jc+9 z20>(PX>M~8i?aj|D+6Kn3jI#)sn0c(xA!MR)#`A-t($)qNM=(VKApqA9?o7TT z|M31TGy^FrHr%oP0pgy5Ci&7_j62@Kt$P9>DMPMG)V7(G#C50unvfE#7Kl7}aNibV zxmK6H(xYEFvyT!j1AkQR$lOi2hVKp0rOPa-j&j@(*1h2BO{o$_Fhl|%A28uJ14W41 z;-eazOuKl2kmK#oo^$hZd>n%Br4wP*0w7HG2Sh4U-(6^w!uA%p*p3)X0?1QU1}x}U zKODvX?@tm&Fhl|%Q!Q2N(LPP!m|6mJk0F*OIb?aX=r e*^3o&f3U0;;RKaPH87VA8S4>hC|>ivU&vWV>4g%$_`vkn9Y3X^&c zF_RPyWs|E87n7g^B9r0{7?aKe4GJm-L1b-dZgUcfvjh(-17NT0^}(u>45M+6oVO?c zo<1h3%LLVA4ha%QFhl|%Y^3i45az8+4^^iMtWO2YG_+Eb2F0dxmo@S2KNZ370w4gq zIg~~X#0bCix~T37_INW6mFi*_2U{*_ai)cc`)jk15-kINvH3@5MvN9dZiUyvHpNsm zoihTiob{Oo5=JmY0w7y|IL3wWydrExL1{*OSd37ud8M;^M!;hN=UdH{-Zlat7jeH8 z549#^J>q$fWF2hYQN{cLZWt&bl<~fqhLh6!5=Ssa0wDmWY76G~ZMO8g>!NKThzTjX zHuR>ba`?|G47E&h0*hP>0w6-xI(v$V0E&E}?Oymp48n(iT36ZTZTp@y}7u+39 BrW^nO 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 4de6263275e3b4310c75d49fc03d19d206422ec5..21406231b17dd7da9766a83faf1567e342c176f3 100644 GIT binary patch delta 50 zcmV-20L}l&N6AN!va`k(9t)EYB5RZ5AuI?g20>(PX>N0|u`&vi6$@mO=oKcjZ3|cn Ivx6c=0rhV`7U!Al2&9jSIczo;_u<~SQJ#CU4UhKZ^V~U1T5OwZ Hm3$Zh|ArBY diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb index 4eca1b11ab21d017e4413b8026bd39412517f65a..6d1cbe863c62e0518f36e42d6638cf96672ba056 100644 GIT binary patch delta 132 zcmeBh?{J?WEpSJai`~B{-Ox8UK%~dt|im2>lYh~BTOB7W$M~PkGoSdwXK3Pk_bn+Qd a&dK76nUgOmxBw+fCdVl2Y*tXpU<3ellOBO0TrlDuIF-?dy%0M`luuKOSt zGC^Iapk>P})iUj#;r6&E-}P#`&%AeyvgT#AE0;gKvX*iBUg@t*UpLfSQ`Wi3n^X~ax-vY zQpjD}y6ktwo7^SrF*99_=5za;ed)n)PpPneoviCep8I|FObP~@<~~dRKe?otK}?lB zZeIXVSq^sRll--)urZ*tj<4i8H59)OxW!uEc1?Rqt=tRrmF_Zk6P?SMsHc4H5)i z4u-iJik817taf}8Ij?u~5w3#_Up#c(6nM_Av(ZvG!lY0zJHLI&j{VY4<~b{BM)~+` zI&)6pZliQ~&+Gb|8k3fNM6xSonZ4$hhlYMzD|f`OM@~ delta 851 zcmV-Z1FZa*beMFIC^p`f|B^Gb2v2NZV@AsIW9<(WD;((a~%c>lQ$?A zH8jwH+sG(&iImoi%Yqv(end0kl>&io#?syrM=(VKApqfa`I{3ze{~OQzxt{G<{vdp zG^=%0T5C|VIbUPN9#{e(LQOi?>V{6T!`DV{HYMs6$|EUo!rf|PN$;1x>Vme%5=Ssa z0wDmpWi-U_NIuTB>NC^zHd;sx!j#Q|ctXRM=#A}3Nk=9U0w7_Ci309UvuljM)a7UE zf{#N(=>GAVKYJyRDRI{V&R^0@e`zJaGir zIub`PMFJrJsO)Ez4rlHw<{qUvQEYWQt-#sXNSH)gy?n_bli7~C0w4o(PAcV?_MOe5 da1BMC{?sfg)d&2nwf75LXx5yH-O>sG3IM*FY^eYM diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb index e5da744d8db4514653a20260bbe1043f83baf563..9da5ec7568d8a90f1c683a3ada1b0c42d682eb82 100644 GIT binary patch delta 94 zcmV-k0HOb_T&-M?ERzchACp1~7_lq&36nJyC9{7DToscx6(j*OlYj~{k{~{l%oPZe zc_1B=ye)CF2O-G`lLaeklg}zOlW!{tlV~j_lXxqKlesM=laeeelO-%jv%M^E0qO7{ AZ~y=R delta 96 zcmZ1*vo>ae&c>8)oD;PzCYy??Zm#Ew5uKbVsyf+N!44!a`M*5hC-2l% z+5BJOBIjglZIj98wX!GYYjaMXr` A$N&HU diff --git a/hyperledger_fabric/latest/solo/logs/dev_all.log b/hyperledger_fabric/latest/solo/logs/dev_all.log index 7d847172..a52383a3 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_all.log +++ b/hyperledger_fabric/latest/solo/logs/dev_all.log @@ -1,14857 +1,18088 @@ -Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2.example.com, peer0.org1.example.com, peer0.org2.example.com -peer1.org1.example.com | [001 01-05 06:36:23.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [002 01-05 06:36:23.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org1.example.com | Version: 1.1.0 -peer1.org1.example.com | Go version: go1.9.2 -peer1.org1.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | Experimental features: false -peer1.org1.example.com | Chaincode: -peer1.org1.example.com | Base Image Version: 0.4.2 -peer1.org1.example.com | Base Docker Namespace: hyperledger -peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org1.example.com | Docker Namespace: hyperledger -peer1.org1.example.com | -peer1.org1.example.com | [003 01-05 06:36:23.59 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer1.org1.example.com | [004 01-05 06:36:23.59 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 | [005 01-05 06:36:23.59 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 | [006 01-05 06:36:23.59 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 | [007 01-05 06:36:23.59 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 | [008 01-05 06:36:23.63 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 | [009 01-05 06:36:23.63 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 | [00a 01-05 06:36:23.63 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 | [00b 01-05 06:36:23.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer1.org1.example.com | [00c 01-05 06:36:23.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer1.org1.example.com | [00d 01-05 06:36:23.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer1.org1.example.com | [00e 01-05 06:36:23.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.org1.example.com | [00f 01-05 06:36:23.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.org1.example.com | [010 01-05 06:36:23.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.org1.example.com | [011 01-05 06:36:23.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.org1.example.com | [012 01-05 06:36:23.76 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 | [013 01-05 06:36:23.76 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 | [014 01-05 06:36:23.76 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 | [015 01-05 06:36:23.76 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 | [016 01-05 06:36:23.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.org1.example.com | [017 01-05 06:36:23.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.org1.example.com | [018 01-05 06:36:23.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.org1.example.com | [019 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org1.example.com | [01a 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 -peer1.org1.example.com | [01b 01-05 06:36:23.79 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 | [01c 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 -peer1.org1.example.com | [01d 01-05 06:36:23.79 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 | [01e 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [01f 01-05 06:36:23.85 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 | [020 01-05 06:36:23.86 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 | [021 01-05 06:36:23.86 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 | [022 01-05 06:36:23.86 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 | [023 01-05 06:36:23.86 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 | [024 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | [025 01-05 06:36:23.87 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 | [026 01-05 06:36:23.87 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 | [027 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org1.example.com as a hostname, adding it as a DNS SAN -peer1.org1.example.com | [028 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org1.example.com | [029 01-05 06:36:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 -peer1.org1.example.com | [02a 01-05 06:36:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org1.example.com | [02b 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org1.example.com | [02c 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org1.example.com | [02d 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org1.example.com | [02e 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org1.example.com | [02f 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer1.org1.example.com | [030 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer1.org1.example.com | [031 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [032 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [033 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org1.example.com | [034 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org1.example.com | [035 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org1.example.com | [036 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer1.org1.example.com | [037 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [038 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [039 01-05 06:36:23.95 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 | [03a 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer1.org1.example.com | [03b 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer1.org1.example.com | [03c 01-05 06:36:23.95 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 | [03d 01-05 06:36:23.95 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 | [001 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [002 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org1.example.com | Version: 1.1.0 -peer0.org1.example.com | Go version: go1.9.2 -peer0.org1.example.com | OS/Arch: linux/amd64 -peer0.org1.example.com | Experimental features: false -peer0.org1.example.com | Chaincode: -peer0.org1.example.com | Base Image Version: 0.4.2 -peer0.org1.example.com | Base Docker Namespace: hyperledger -peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org1.example.com | Docker Namespace: hyperledger -peer0.org1.example.com | -peer0.org1.example.com | [003 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer0.org1.example.com | [004 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | [005 01-05 06:36:22.21 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 | [006 01-05 06:36:22.21 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 | [007 01-05 06:36:22.21 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 | [008 01-05 06:36:22.22 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 | [009 01-05 06:36:22.22 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 | [00a 01-05 06:36:22.22 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 | [00b 01-05 06:36:22.22 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 | [00c 01-05 06:36:22.22 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 | [00d 01-05 06:36:22.22 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 | [00e 01-05 06:36:22.23 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 | [00f 01-05 06:36:22.23 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 | [010 01-05 06:36:22.23 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 | [011 01-05 06:36:22.23 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 | [012 01-05 06:36:22.23 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 | [013 01-05 06:36:22.23 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 | [014 01-05 06:36:22.23 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 | [015 01-05 06:36:22.23 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 | [016 01-05 06:36:22.25 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 | [017 01-05 06:36:22.25 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 | [018 01-05 06:36:22.25 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 | [019 01-05 06:36:22.25 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 | [01a 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 -peer0.org1.example.com | [01b 01-05 06:36:22.25 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 | [01c 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 -peer0.org1.example.com | [01d 01-05 06:36:22.25 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 | [01e 01-05 06:36:22.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [01f 01-05 06:36:22.39 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 | [020 01-05 06:36:22.39 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 | [021 01-05 06:36:22.39 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 | [022 01-05 06:36:22.39 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 | [023 01-05 06:36:22.39 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 | [024 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [025 01-05 06:36:22.39 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 | [026 01-05 06:36:22.39 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 | [027 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN -peer0.org1.example.com | [028 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org1.example.com | [029 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -peer0.org1.example.com | [02a 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer0.org1.example.com | [02b 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org1.example.com | [02c 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org1.example.com | [02d 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org1.example.com | [02e 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org1.example.com | [02f 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer0.org1.example.com | [030 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer0.org1.example.com | [031 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | [032 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [033 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer0.org1.example.com | [034 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer0.org1.example.com | [035 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer0.org1.example.com | [036 01-05 06:36:22.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer0.org1.example.com | [037 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [038 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [039 01-05 06:36:22.45 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 | [03e 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer0.org1.example.com | [03a 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer1.org1.example.com | [03f 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [03b 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer0.org1.example.com | [03c 01-05 06:36:22.45 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 | [040 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [03d 01-05 06:36:22.45 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 | [041 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -peer1.org1.example.com | [042 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [043 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [044 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAMm2nRLiV9ssQthhvYP8KQEwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFrEWeTrn3TfWYYM+62OyFTECgSjLyaT -peer1.org1.example.com | GqQq/wBR1t28C1sN2jzZA0Z8CC6UBxPnAU5/aHoJRM86OJM2kjIK5u+jTTBLMA4G -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org1.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDVXd+d -peer1.org1.example.com | hda/sjnux8Hg361l9wkEXBVmH8iO0usHjqvAOgIgBjqzYUxBWSyaZ1+LwXFVWYtM -peer1.org1.example.com | ZRKeLT+EkdbmTk6JlSM= -peer0.org2.example.com | [001 01-05 06:36:23.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [002 01-05 06:36:23.18 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org2.example.com | Version: 1.1.0 -peer1.org1.example.com | [045 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [03e 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer0.org2.example.com | Go version: go1.9.2 -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | Experimental features: false -peer0.org2.example.com | Chaincode: -peer1.org1.example.com | [046 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [047 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [048 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [049 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [04a 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [03f 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | Base Image Version: 0.4.2 -peer1.org1.example.com | [04b 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [170 227 37 131 30 140 118 163 82 91 149 125 17 185 220 58 211 219 91 155 15 204 74 129 51 178 179 76 71 215 18 173] peer1.org1.example.com:7051 } incTime is 1515134184004113900 -peer0.org2.example.com | Base Docker Namespace: hyperledger -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org1.example.com | [04c 01-05 06:36:24.00 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 [] [170 227 37 131 30 140 118 163 82 91 149 125 17 185 220 58 211 219 91 155 15 204 74 129 51 178 179 76 71 215 18 173] peer1.org1.example.com:7051 } -peer0.org2.example.com | Docker Namespace: hyperledger -peer1.org1.example.com | [04d 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [040 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | -peer1.org1.example.com | [04e 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [003 01-05 06:36:23.18 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 | [04f 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [041 01-05 06:36:22.46 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -peer0.org2.example.com | [004 01-05 06:36:23.18 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 | [050 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [051 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [005 01-05 06:36:23.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer0.org2.example.com | [006 01-05 06:36:23.18 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 | [052 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [053 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [054 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [042 01-05 06:36:22.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [055 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [056 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C7060A20AAE325831E8C76A3...455254494649434154452D2D2D2D2D0A -peer0.org2.example.com | [007 01-05 06:36:23.19 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer0.org2.example.com | [008 01-05 06:36:23.20 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 | [057 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 2CDD94859AF137FC39D62CA421154B47423F0884C009F10D70579B0F23C92062 -peer0.org2.example.com | [009 01-05 06:36:23.20 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 | [043 01-05 06:36:22.48 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [00a 01-05 06:36:23.20 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 | [00b 01-05 06:36:23.23 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 | [00c 01-05 06:36:23.23 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 | [058 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=d652044f-1564-4530-92b2-b47f69f153c4,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer0.org2.example.com | [00d 01-05 06:36:23.23 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 | [044 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [059 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched -peer0.org2.example.com | [00e 01-05 06:36:23.27 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 | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [00f 01-05 06:36:23.27 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 | [010 01-05 06:36:23.27 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 | [011 01-05 06:36:23.27 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 | [05a 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [012 01-05 06:36:23.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [013 01-05 06:36:23.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer0.org2.example.com | [014 01-05 06:36:23.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer0.org2.example.com | [015 01-05 06:36:23.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer0.org2.example.com | [016 01-05 06:36:23.37 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 | [017 01-05 06:36:23.37 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 | [018 01-05 06:36:23.38 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 | [019 01-05 06:36:23.38 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 | [01a 01-05 06:36:23.38 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org1.example.com | [05b 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [01b 01-05 06:36:23.38 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org2.example.com:7051 -peer1.org1.example.com | [05c 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org2.example.com | [01c 01-05 06:36:23.38 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org1.example.com | [05d 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer0.org2.example.com | [01d 01-05 06:36:23.38 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 | [01e 01-05 06:36:23.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [05e 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [01f 01-05 06:36:23.49 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [020 01-05 06:36:23.49 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 | [021 01-05 06:36:23.49 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 | [05f 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [060 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer0.org2.example.com | [022 01-05 06:36:23.49 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 | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw -peer0.org2.example.com | [023 01-05 06:36:23.49 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 | [024 01-05 06:36:23.49 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 | [025 01-05 06:36:23.49 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 | [026 01-05 06:36:23.50 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD -peer0.org2.example.com | [027 01-05 06:36:23.52 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org2.example.com as a hostname, adding it as a DNS SAN -peer1.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 -peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 -peer0.org1.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF -peer0.org2.example.com | [028 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk -peer0.org2.example.com | [029 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | oOWGb8BDg2Tnm3LS -peer0.org2.example.com | [02a 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org1.example.com | 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 | [02b 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [061 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer0.org2.example.com | [02c 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org1.example.com | [045 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [062 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer0.org2.example.com | [02d 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org1.example.com | [046 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [063 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer0.org2.example.com | [02e 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org1.example.com | [047 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [064 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer1.org1.example.com | [065 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | [066 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer0.org1.example.com | [048 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [067 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer0.org2.example.com | [02f 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer0.org1.example.com | [049 01-05 06:36:22.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [030 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer1.org1.example.com | [068 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer0.org1.example.com | [04a 01-05 06:36:22.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [04b 01-05 06:36:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } incTime is 1515134182505788900 -peer0.org1.example.com | [04c 01-05 06:36:22.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 {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } -peer0.org1.example.com | [04d 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [04e 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [031 01-05 06:36:23.53 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [069 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [06a 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [04f 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [06b 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [032 01-05 06:36:23.56 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [06c 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [033 01-05 06:36:23.56 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org1.example.com | [06d 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A -peer0.org2.example.com | [034 01-05 06:36:23.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer0.org2.example.com | [035 01-05 06:36:23.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer0.org1.example.com | [050 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [051 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [06e 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 0660C55EA12A64DC17AE2E57FA2784786C9639BFED0B9724876E10779EC53D32 -peer0.org2.example.com | [036 01-05 06:36:23.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer0.org1.example.com | [052 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [037 01-05 06:36:23.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [053 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [06f 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [070 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [038 01-05 06:36:23.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [054 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [039 01-05 06:36:23.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 | [055 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [071 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org2.example.com | [03a 01-05 06:36:23.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]] -peer0.org1.example.com | [056 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C3060A20D88EF51A9639BB4C...455254494649434154452D2D2D2D2D0A -peer0.org1.example.com | [057 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 6C596B8A89F317168489F48B6D5F6E04A52EF501182F135354D8952D4A70CBE4 -peer1.org1.example.com | [072 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer0.org2.example.com | [03b 01-05 06:36:23.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]] -peer0.org2.example.com | [03c 01-05 06:36:23.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]] -peer1.org1.example.com | [073 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer0.org2.example.com | [03d 01-05 06:36:23.61 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 | [058 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=f8051bed-cbb5-44bd-a0ae-155bc602e23f,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [074 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [03e 01-05 06:36:23.61 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer0.org2.example.com | [03f 01-05 06:36:23.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [059 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched -peer0.org1.example.com | [05a 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [040 01-05 06:36:23.61 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [075 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer1.org1.example.com | [076 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [05b 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [041 01-05 06:36:23.62 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org1.example.com | [05c 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org2.example.com | [042 01-05 06:36:23.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [05d 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -peer1.org1.example.com | [077 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [043 01-05 06:36:23.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [05e 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [044 01-05 06:36:23.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [05f 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPlZcLcMzfzgE68ZzSaaSeYwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [078 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [060 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [079 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [07a 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIsTFoftFSbhQW3yKTX+bQC+Ry/3z9tx -peer0.org2.example.com | r/X846QAFI3FX4DI5Bg1ICvwRzTFDa1LBkuYhiVkFYf5Q6S2oXFTAm6jTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -peer0.org2.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Mu6 -peer1.org1.example.com | [07b 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | dblSJ0Unez2++mFCUWE= -peer1.org1.example.com | [07c 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [045 01-05 06:36:23.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [046 01-05 06:36:23.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [07d 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [07e 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [07f 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [080 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -peer1.org1.example.com | [081 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [082 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [083 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d652044f]Move state message READY -peer0.org2.example.com | [047 01-05 06:36:23.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [084 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d652044f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [048 01-05 06:36:23.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [085 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d652044f]Entered state ready -peer0.org2.example.com | [049 01-05 06:36:23.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [061 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer0.org1.example.com | [062 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer0.org1.example.com | [063 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer0.org1.example.com | [064 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer0.org1.example.com | [065 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | [066 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [067 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [068 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [069 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [06a 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -peer1.org1.example.com | [086 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d652044f-1564-4530-92b2-b47f69f153c4, channelID: -peer0.org2.example.com | [04a 01-05 06:36:23.71 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [06b 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5473D7820B911C49BAAE07F758D9B38654A70BF13E643DB4E570A935F8A6A463 -peer1.org1.example.com | [087 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d652044f]sending state message READY -peer0.org2.example.com | [04b 01-05 06:36:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [230 68 56 36 66 205 230 223 233 42 157 196 63 255 41 11 201 233 67 94 147 184 255 26 195 166 7 247 150 198 212 199] peer0.org2.example.com:7051 } incTime is 1515134183719184400 -peer1.org1.example.com | [088 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d652044f]Received message READY from shim -peer0.org1.example.com | [06c 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [06d 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [089 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d652044f]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [04e 01-05 06:36:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [230 68 56 36 66 205 230 223 233 42 157 196 63 255 41 11 201 233 67 94 147 184 255 26 195 166 7 247 150 198 212 199] peer0.org2.example.com:7051 } -peer0.org1.example.com | [06e 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org1.example.com | [08a 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [04f 01-05 06:36:23.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [06f 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -peer1.org1.example.com | [08b 01-05 06:36:24.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [08c 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [070 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer0.org2.example.com | [04c 01-05 06:36:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [08d 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org1.example.com | [071 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [04d 01-05 06:36:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [08e 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d652044f]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [08f 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [072 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer0.org2.example.com | [050 01-05 06:36:23.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [073 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [051 01-05 06:36:23.74 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [074 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer1.org1.example.com | [090 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d652044f]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [075 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [091 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d652044f]Move state message INIT -peer0.org2.example.com | [052 01-05 06:36:23.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [053 01-05 06:36:23.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [076 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [092 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d652044f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [093 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [054 01-05 06:36:23.76 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [077 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [055 01-05 06:36:23.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [078 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [094 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d652044f]sending state message INIT -peer0.org2.example.com | [056 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [057 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C7060A20E644382442CDE6DF...455254494649434154452D2D2D2D2D0A -peer0.org2.example.com | [058 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 6164EC7DE7D0087EA213CCC69053D9BB7D8E6DDEB986CC607C3F53E9BC2BDC7C -peer0.org1.example.com | [079 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -peer1.org1.example.com | [095 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d652044f]Received message INIT from shim -peer1.org1.example.com | [096 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d652044f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [097 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [098 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d652044f]Received INIT, initializing chaincode -peer0.org1.example.com | [07a 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [07b 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [07c 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [07d 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [059 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -peer0.org1.example.com | [07e 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [099 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [05a 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | [05b 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=87e2d1a3-9f26-424a-bba1-d71077c2d774,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer0.org1.example.com | [07f 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -peer0.org1.example.com | [080 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [081 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [082 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]Move state message READY -peer1.org1.example.com | [09a 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [09b 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d652044f]Init get response status: 200 -peer1.org1.example.com | [09c 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d652044f]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [09d 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d652044f]Move state message COMPLETED -peer1.org1.example.com | [09e 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d652044f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [09f 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d652044f]send state message COMPLETED -peer1.org1.example.com | [0a0 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d652044f]Received message COMPLETED from shim -peer1.org1.example.com | [0a1 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d652044f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0a2 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d652044f-1564-4530-92b2-b47f69f153c4]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0a3 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d652044f-1564-4530-92b2-b47f69f153c4, channelID: -peer0.org2.example.com | [05c 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [05d 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched -peer0.org2.example.com | [05e 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [05f 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -peer0.org2.example.com | [060 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: CAA77F8C73678BA83F0FDDA673D306B2C637148C31DD25A6F50FFAF57571D473 -peer0.org1.example.com | [083 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0a4 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [061 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [084 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f8051bed]Entered state ready -peer1.org2.example.com | [001 01-05 06:36:24.25 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [002 01-05 06:36:24.25 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org2.example.com | [063 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org1.example.com | [0a5 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +Attaching to explorer, fabric-cli, orderer.example.com, peer1.org2.example.com, mysql, peer0.org2.example.com, peer1.org1.example.com, peer0.org1.example.com +explorer | Please open Internet explorer to access :http://explorer:8080/ +explorer | [2018-01-13 06:14:21.478] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:21.495] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.peer' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:350:20 +explorer | at Object.getRowByPkOne (/blockchain-explorer/db/mysqlservice.js:346:12) +explorer | at savePeerlist (/blockchain-explorer/service/blockscanner.js:161:26) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | at Object.syncPeerlist (/blockchain-explorer/service/blockscanner.js:179:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.peer\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) as c from peer where name=\'businesschannel\' and requests=\'grpcs://peer0.org1.example.com:7051\' ' } +explorer | [2018-01-13 06:14:21.498] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:21.659] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:350:20 +explorer | at Object.getRowByPkOne (/blockchain-explorer/db/mysqlservice.js:346:12) +explorer | at saveChaincodes (/blockchain-explorer/service/blockscanner.js:136:26) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) as c from chaincodes where name=\'exp02\' and version=\'1.0\' and path=\'examples/chaincode/go/chaincode_example02\' and channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:22.446] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:22.683] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:23.446] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:23.731] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:24.448] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:24.813] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:25.449] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:25.900] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:26.451] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:26.947] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:27.450] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:28.030] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:28.451] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [001 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +peer1.org2.example.com | [001 01-13 06:14:04.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [001 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [001 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP +mysql | Initializing database +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [002 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] +peer1.org2.example.com | [002 01-13 06:14:04.12 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | [002 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | [002 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +mysql | 2018-01-13T06:14:01.433316Z 0 [Note] Basedir set to /usr/ +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [003 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts peer1.org2.example.com | Version: 1.1.0 +peer0.org2.example.com | Version: 1.1.0 +peer0.org1.example.com | Version: 1.1.0 +mysql | 2018-01-13T06:14:01.433480Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +explorer | -------------------- +orderer.example.com | [004 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem peer1.org2.example.com | Go version: go1.9.2 +peer0.org2.example.com | Go version: go1.9.2 +peer0.org1.example.com | Go version: go1.9.2 +mysql | 2018-01-13T06:14:01.435861Z 0 [Warning] You need to use --log-bin to make --log-slave-updates work. +orderer.example.com | [005 01-13 06:14:05.28 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts peer1.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | OS/Arch: linux/amd64 +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +orderer.example.com | [006 01-13 06:14:05.29 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 peer1.org2.example.com | Experimental features: false +peer0.org2.example.com | Experimental features: false +peer0.org1.example.com | Experimental features: false +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +mysql | mbind: Operation not permitted +orderer.example.com | [007 01-13 06:14:05.29 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +peer0.org2.example.com | Chaincode: +peer0.org1.example.com | Chaincode: peer1.org2.example.com | Chaincode: +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [008 01-13 06:14:05.30 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 +mysql | mbind: Operation not permitted +peer0.org2.example.com | Base Image Version: 0.4.2 +peer0.org1.example.com | Base Image Version: 0.4.2 peer1.org2.example.com | Base Image Version: 0.4.2 +orderer.example.com | [009 01-13 06:14:05.30 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +mysql | 2018-01-13T06:14:06.847943Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: f60c6bfe-f828-11e7-8faa-0242ac120002. +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org1.example.com | Base Docker Namespace: hyperledger +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 peer1.org2.example.com | Base Docker Namespace: hyperledger +orderer.example.com | [00a 01-13 06:14:05.31 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 | [00b 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +orderer.example.com | [00c 01-13 06:14:05.31 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 | [00d 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +mysql | 2018-01-13T06:14:06.850605Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | Docker Namespace: hyperledger +peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric +orderer.example.com | [00e 01-13 06:14:05.31 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 | [00f 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +mysql | 2018-01-13T06:14:06.852299Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened. +peer0.org2.example.com | +orderer.example.com | [010 01-13 06:14:05.32 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 | [011 01-13 06:14:05.32 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] +mysql | 2018-01-13T06:14:06.853256Z 5 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option. +mysql | 2018-01-13T06:14:08.077272Z 5 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode. peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +orderer.example.com | [012 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [003 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +mysql | 2018-01-13T06:14:08.077346Z 5 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. peer1.org2.example.com | Docker Namespace: hyperledger peer1.org2.example.com | -peer1.org2.example.com | [003 01-05 06:36:24.25 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 | [004 01-05 06:36:24.25 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 | [005 01-05 06:36:24.25 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 | [006 01-05 06:36:24.25 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 | [007 01-05 06:36:24.25 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 | [008 01-05 06:36:24.26 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 | [009 01-05 06:36:24.26 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 | [00a 01-05 06:36:24.26 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 | [00b 01-05 06:36:24.27 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 | [00c 01-05 06:36:24.27 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 | [00d 01-05 06:36:24.27 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 | [00e 01-05 06:36:24.29 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 | [00f 01-05 06:36:24.29 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 | [010 01-05 06:36:24.29 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 | [011 01-05 06:36:24.29 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 | [012 01-05 06:36:24.29 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 | [013 01-05 06:36:24.29 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 | [085 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f8051bed-cbb5-44bd-a0ae-155bc602e23f, channelID: -peer1.org2.example.com | [014 01-05 06:36:24.29 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 | [015 01-05 06:36:24.30 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 | [016 01-05 06:36:24.31 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 | [017 01-05 06:36:24.31 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 | [018 01-05 06:36:24.31 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 | [019 01-05 06:36:24.31 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 | [01a 01-05 06:36:24.31 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.org2.example.com | [064 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [065 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [01b 01-05 06:36:24.31 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 | [01c 01-05 06:36:24.31 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.org2.example.com | [01d 01-05 06:36:24.31 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 | [01e 01-05 06:36:24.32 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [01f 01-05 06:36:24.33 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 | [020 01-05 06:36:24.33 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 | [021 01-05 06:36:24.33 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 | [022 01-05 06:36:24.33 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 | [023 01-05 06:36:24.33 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 | [024 01-05 06:36:24.33 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [025 01-05 06:36:24.33 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 | [026 01-05 06:36:24.33 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 -peer0.org1.example.com | [086 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]sending state message READY -peer1.org2.example.com | [027 01-05 06:36:24.34 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org2.example.com as a hostname, adding it as a DNS SAN -peer1.org1.example.com | [0a6 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=25dc30e9-7cfa-4a89-a700-a4cdb11f1bce,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [028 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org2.example.com | [029 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 -peer1.org2.example.com | [02a 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org2.example.com | [02b 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org2.example.com | [02c 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org2.example.com | [02d 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org2.example.com | [02e 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org2.example.com | [02f 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -peer1.org2.example.com | [030 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -peer1.org2.example.com | [031 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [032 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [033 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org2.example.com | [034 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org2.example.com | [035 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org2.example.com | [036 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -peer1.org2.example.com | [037 01-05 06:36:24.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [038 01-05 06:36:24.36 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [039 01-05 06:36:24.36 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 | [03a 01-05 06:36:24.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth]] -peer1.org2.example.com | [03b 01-05 06:36:24.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth]] -peer1.org2.example.com | [03c 01-05 06:36:24.36 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 | [087 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Received message READY from shim -peer0.org2.example.com | [066 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -peer1.org2.example.com | [03d 01-05 06:36:24.36 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 | [062 01-05 06:36:23.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [067 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [03e 01-05 06:36:24.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] authFilters:[map[name:DefaultAuth]]]] -peer1.org2.example.com | [03f 01-05 06:36:24.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [040 01-05 06:36:24.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [041 01-05 06:36:24.37 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer1.org2.example.com:7051] -peer1.org2.example.com | [042 01-05 06:36:24.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [043 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [044 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [088 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8051bed]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [089 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [08a 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [0a7 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd -peer1.org2.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -peer1.org2.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U -peer1.org2.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB -peer1.org2.example.com | IMM+3uC8p/M1qCSaOiQ= -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [045 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [046 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [047 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [048 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [049 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [04a 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [04c 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [04d 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [04b 01-05 06:36:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48] peer1.org2.example.com:7051 } incTime is 1515134184384738900 -peer1.org2.example.com | [04e 01-05 06:36:24.39 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 [] [136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48] peer1.org2.example.com:7051 } -peer1.org2.example.com | [04f 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [050 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [051 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [052 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [053 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [054 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [055 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [056 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [057 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C7060A20880F8BD5A2D3CECB...455254494649434154452D2D2D2D2D0A -peer1.org2.example.com | [058 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 9959CF623DAA109D76714B210C3BD675B489833CF233FBA05D99F1A128FB59E1 -peer1.org1.example.com | [0a8 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [059 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org2.example.com | [05a 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [05b 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=1a0f0562-a074-492a-af21-e805a41b20e6,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [05c 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched -peer0.org2.example.com | [068 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [05d 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [05e 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [05f 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A -peer0.org2.example.com | [069 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [06a 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [06b 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | [060 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: CE60D0E0157028FA580CB1B48DBD85358034A75464F73DD3B632AC9E63EF4325 -peer1.org2.example.com | [061 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [06c 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [08b 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [062 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [063 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org2.example.com | [064 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer0.org1.example.com | [08c 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [066 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | [0a9 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [08d 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | [001 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -peer1.org2.example.com | [067 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [0aa 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org1.example.com | [0ab 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | [002 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -peer1.org2.example.com | [068 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [08e 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8051bed]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [003 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -peer1.org1.example.com | [0ac 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [08f 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [004 01-05 06:36:24.05 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 -peer1.org2.example.com | [069 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [005 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -peer0.org1.example.com | [090 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8051bed]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [0ad 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [006 01-05 06:36:24.06 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 | [007 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [091 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]Move state message INIT -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [008 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [009 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [0ae 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [00a 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -orderer.example.com | [00b 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [092 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [00c 01-05 06:36:24.07 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] -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [065 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [06a 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer1.org2.example.com | [06b 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [00d 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -orderer.example.com | [00e 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -orderer.example.com | [00f 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -orderer.example.com | [010 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [011 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [06d 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [06e 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer1.org2.example.com | [06c 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org2.example.com | [06f 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer1.org2.example.com | [070 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -orderer.example.com | [012 01-05 06:36:24.08 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 | [013 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | Docker Namespace: hyperledger +peer0.org1.example.com | +peer0.org1.example.com | [003 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +mysql | 2018-01-13T06:14:08.077365Z 5 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +orderer.example.com | [014 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP +peer1.org2.example.com | [003 01-13 06:14:04.12 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 | [004 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | [004 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +mysql | 2018-01-13T06:14:08.077389Z 5 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +orderer.example.com | [015 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | [004 01-13 06:14:04.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org2.example.com | [005 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer0.org1.example.com | [005 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +explorer | at next (native) +mysql | 2018-01-13T06:14:08.077412Z 5 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +orderer.example.com | [016 01-13 06:14:05.32 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----- +peer1.org2.example.com | [005 01-13 06:14:04.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/] +peer0.org2.example.com | [006 01-13 06:14:05.05 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 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [006 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer1.org2.example.com | [006 01-13 06:14:04.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 +peer0.org2.example.com | [007 01-13 06:14:05.05 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 +mysql | 2018-01-13T06:14:08.077429Z 5 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [007 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer1.org2.example.com | [007 01-13 06:14:04.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 +peer0.org2.example.com | [008 01-13 06:14:05.06 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/] +explorer | code: 'ER_NO_SUCH_TABLE', orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer1.org2.example.com | [071 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer1.org2.example.com | [073 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [072 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [06d 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer0.org1.example.com | [093 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [074 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +mysql | 2018-01-13T06:14:08.077813Z 5 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +peer0.org2.example.com | [009 01-13 06:14:05.06 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 +explorer | errno: 1146, +peer0.org1.example.com | [008 01-13 06:14:03.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org1.example.com | [009 01-13 06:14:03.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org1.example.com | [00a 01-13 06:14:03.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org2.example.com | [075 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer1.org2.example.com | [076 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +mysql | 2018-01-13T06:14:08.078042Z 5 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org2.example.com | [00a 01-13 06:14:05.06 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 +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org2.example.com | [008 01-13 06:14:04.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/] +peer0.org1.example.com | [00b 01-13 06:14:03.39 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org2.example.com | [06e 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [094 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]sending state message INIT -peer1.org2.example.com | [077 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +mysql | Database initialized +peer0.org2.example.com | [00b 01-13 06:14:05.09 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/] +explorer | sqlState: '42S02', +peer1.org2.example.com | [009 01-13 06:14:04.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 +peer0.org1.example.com | [00c 01-13 06:14:03.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [06f 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer0.org2.example.com | [070 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer1.org2.example.com | [078 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [079 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +mysql | Initializing certificates +peer0.org2.example.com | [00c 01-13 06:14:05.09 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 | [00d 01-13 06:14:05.09 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 | [00e 01-13 06:14:05.10 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 | [00f 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -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 orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org2.example.com | [07a 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -peer0.org2.example.com | [071 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer0.org1.example.com | [095 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Received message INIT from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [07b 01-05 06:36:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [096 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8051bed]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [072 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [073 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -orderer.example.com | [013 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [07c 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [017 01-13 06:14:05.32 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [07d 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [07f 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [097 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [080 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [07e 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -peer1.org2.example.com | [081 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [074 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [075 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer1.org2.example.com | [082 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +mysql | Generating a 2048 bit RSA private key +peer1.org2.example.com | [00a 01-13 06:14:04.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 +peer0.org1.example.com | [00d 01-13 06:14:03.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer0.org2.example.com | [010 01-13 06:14:05.10 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 +explorer | index: 0, orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [098 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f8051bed]Received INIT, initializing chaincode -peer0.org2.example.com | [076 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [083 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a0f0562]Move state message READY +mysql | ...+++ +peer1.org2.example.com | [00b 01-13 06:14:04.25 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 | [00e 01-13 06:14:03.52 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 | [011 01-13 06:14:05.10 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 | [012 01-13 06:14:05.18 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 | [013 01-13 06:14:05.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [0af 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer1.org1.example.com | [0b0 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -peer1.org2.example.com | [084 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a0f0562]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [085 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1a0f0562]Entered state ready orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [099 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [077 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +mysql | ....................+++ +mysql | unable to write 'random state' orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [086 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1a0f0562-a074-492a-af21-e805a41b20e6, channelID: -peer1.org2.example.com | [087 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a0f0562]sending state message READY -peer1.org2.example.com | [088 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a0f0562]Received message READY from shim -peer1.org2.example.com | [08a 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a0f0562]Handling ChaincodeMessage of type: READY(state:established) +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +mysql | writing new private key to 'ca-key.pem' +peer0.org2.example.com | [014 01-13 06:14:05.18 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 | [00c 01-13 06:14:04.25 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 | [00f 01-13 06:14:03.52 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +mysql | ----- +mysql | Generating a 2048 bit RSA private key +mysql | .+++ +mysql | .....................................................................................................+++ orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org2.example.com | [015 01-13 06:14:05.18 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 | [016 01-13 06:14:05.19 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 | [017 01-13 06:14:05.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 +peer0.org2.example.com | [018 01-13 06:14:05.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.org2.example.com | [00d 01-13 06:14:04.25 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 orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [089 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [08b 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [08c 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [08d 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | [014 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [09a 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [078 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [079 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [018 01-13 06:14:05.51 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 | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [08e 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a0f0562]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [09b 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Init get response status: 200 +peer0.org1.example.com | [010 01-13 06:14:03.53 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 | [011 01-13 06:14:03.53 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 | [012 01-13 06:14:03.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer0.org2.example.com | [019 01-13 06:14:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [07a 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -peer1.org1.example.com | [0b1 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer1.org2.example.com | [08f 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [090 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1a0f0562]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [091 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a0f0562]Move state message INIT -peer1.org2.example.com | [092 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a0f0562]Fabric side Handling ChaincodeMessage of type: INIT in state ready orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [00e 01-13 06:14:04.30 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 | [00f 01-13 06:14:04.30 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 | [010 01-13 06:14:04.30 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 | [011 01-13 06:14:04.30 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 | [013 01-13 06:14:03.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer1.org2.example.com | [093 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [094 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a0f0562]sending state message INIT orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -peer0.org1.example.com | [09c 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [09d 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Move state message COMPLETED -peer0.org1.example.com | [09e 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8051bed]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [095 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a0f0562]Received message INIT from shim orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA +mysql | unable to write 'random state' +mysql | writing new private key to 'server-key.pem' +mysql | ----- +mysql | Generating a 2048 bit RSA private key +peer1.org2.example.com | [012 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer1.org2.example.com | [096 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a0f0562]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [07b 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [0b2 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer0.org1.example.com | [09f 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]send state message COMPLETED -peer0.org2.example.com | [07c 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [07d 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer1.org2.example.com | [097 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0a0 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]Received message COMPLETED from shim -peer1.org1.example.com | [0b3 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [07e 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [080 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -peer1.org2.example.com | [098 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1a0f0562]Received INIT, initializing chaincode -peer1.org1.example.com | [0b4 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | [015 01-05 06:36:24.08 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 [75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743] at [/var/hyperledger/orderer/msp/keystore/75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743_sk]... -peer0.org1.example.com | [0a1 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [081 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [099 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | [016 01-05 06:36:24.08 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----- +peer0.org1.example.com | [014 01-13 06:14:03.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +mysql | ...............................................................................................................................+++ +mysql | ..+++ +mysql | unable to write 'random state' +peer0.org2.example.com | [01a 01-13 06:14:05.19 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 +orderer.example.com | [019 01-13 06:14:05.52 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 [75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743] at [/var/hyperledger/orderer/msp/keystore/75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743_sk]... +orderer.example.com | [01a 01-13 06:14:05.52 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 | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [09a 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0a2 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed-cbb5-44bd-a0ae-155bc602e23f]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0a3 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f8051bed-cbb5-44bd-a0ae-155bc602e23f, channelID: -peer0.org1.example.com | [0a4 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [015 01-13 06:14:03.69 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 +explorer | [2018-01-13 06:14:29.075] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +mysql | writing new private key to 'client-key.pem' +peer1.org2.example.com | [013 01-13 06:14:04.35 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 | [014 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [09b 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a0f0562]Init get response status: 200 -peer0.org2.example.com | [082 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [083 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87e2d1a3]Move state message READY -peer0.org2.example.com | [084 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87e2d1a3]Fabric side Handling ChaincodeMessage of type: READY in state established orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [09c 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a0f0562]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [09d 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a0f0562]Move state message COMPLETED -peer1.org2.example.com | [09e 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a0f0562]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [09f 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a0f0562]send state message COMPLETED orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer0.org1.example.com | [0a5 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [0b5 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer0.org2.example.com | [01b 01-13 06:14:05.19 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 | [01c 01-13 06:14:05.28 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 | [01d 01-13 06:14:05.28 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 | [01e 01-13 06:14:05.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +mysql | ----- orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [0a6 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=4b54524d-cab9-401a-9c83-93090ec5e57c,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer0.org1.example.com | [0a7 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched -peer1.org2.example.com | [0a0 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1a0f0562]Received message COMPLETED from shim orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer0.org2.example.com | [085 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [87e2d1a3]Entered state ready -peer0.org1.example.com | [0a8 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [0b6 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -peer1.org2.example.com | [0a1 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a0f0562]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [086 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:87e2d1a3-9f26-424a-bba1-d71077c2d774, channelID: -peer0.org2.example.com | [087 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87e2d1a3]sending state message READY +peer0.org1.example.com | [016 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org1.example.com | [017 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org1.example.com | [018 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org1.example.com | [019 01-13 06:14:03.72 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 | [01f 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -peer1.org2.example.com | [0a2 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1a0f0562-a074-492a-af21-e805a41b20e6]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [0a3 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1a0f0562-a074-492a-af21-e805a41b20e6, channelID: -peer0.org1.example.com | [0a9 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [0b7 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer1.org1.example.com | [0b8 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer1.org2.example.com | [0a4 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0aa 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org2.example.com | [088 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [089 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [015 01-13 06:14:04.35 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 | [016 01-13 06:14:04.37 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 | [017 01-13 06:14:04.37 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 | [01a 01-13 06:14:03.72 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 orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer1.org2.example.com | [0a5 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [0a6 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=50fb41e2-75cc-4ef8-8a74-f133efd6ae81,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [0a7 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched -peer1.org2.example.com | [0a8 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [017 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2027-12-27 06:26:39 +0000 UTC -orderer.example.com | [018 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [019 01-05 06:36:24.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -peer1.org2.example.com | [0a9 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [0ab 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer0.org2.example.com | [08a 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [01a 01-05 06:36:24.10 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -peer1.org1.example.com | [0b9 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [0ba 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0aa 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | [01b 01-05 06:36:24.10 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/] -peer0.org2.example.com | [08b 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [08c 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [87e2d1a3]Inside sendExecuteMessage. Message INIT -orderer.example.com | [01c 01-05 06:36:24.10 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 | [01d 01-05 06:36:24.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists -peer1.org2.example.com | [0ab 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [0ac 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -orderer.example.com | [01e 01-05 06:36:24.12 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 -peer0.org1.example.com | [0ac 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [0ad 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [0ae 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [01f 01-05 06:36:24.12 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 | [020 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [021 01-05 06:36:24.12 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 -peer0.org1.example.com | [0ad 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [0ae 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [022 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org2.example.com | 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 -orderer.example.com | [023 01-05 06:36:24.12 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 | [024 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -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 | [0af 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer1.org2.example.com | [0b0 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -orderer.example.com | [025 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer0.org2.example.com | [08d 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [08e 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [87e2d1a3]sendExecuteMsg trigger event INIT -orderer.example.com | [026 01-05 06:36:24.12 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 | [027 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org2.example.com | [0b1 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer1.org2.example.com | [0b2 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer1.org2.example.com | [0b4 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer1.org2.example.com | [0b3 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -orderer.example.com | [028 01-05 06:36:24.12 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)(0xc420018a40)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [0b5 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | [029 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -peer0.org2.example.com | [07f 01-05 06:36:23.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [08f 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87e2d1a3]Received message READY from shim -peer0.org2.example.com | [090 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87e2d1a3]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [02a 01-05 06:36:24.13 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{0x92, 0xb0, 0xe5, 0xce, 0x4a, 0x40, 0x2e, 0xff, 0xf, 0x90, 0x96, 0x2e, 0xcd, 0x60, 0x60, 0x2e, 0x7, 0x15, 0x63, 0xcd, 0xda, 0x44, 0x28, 0x61, 0x42, 0x8d, 0x7c, 0xd4, 0x4, 0x88, 0xc3, 0x35} txOffsets= -peer1.org2.example.com | [0b7 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [0bb 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [091 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87e2d1a3]Move state message INIT -peer1.org2.example.com | [0b6 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [01b 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2027-12-27 06:26:39 +0000 UTC +mysql | Certificates initialized +mysql | MySQL init process in progress... +mysql | 2018-01-13T06:14:11.372309Z 0 [Note] Basedir set to /usr/ +mysql | 2018-01-13T06:14:11.372596Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +peer1.org2.example.com | [018 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +orderer.example.com | [01c 01-13 06:14:05.53 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 | [01d 01-13 06:14:05.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled +orderer.example.com | [01e 01-13 06:14:05.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +peer0.org2.example.com | [020 01-13 06:14:05.34 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 | [021 01-13 06:14:05.34 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 | [022 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +mysql | 2018-01-13T06:14:11.372670Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [01f 01-13 06:14:05.62 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +peer1.org2.example.com | [019 01-13 06:14:04.37 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 | [01b 01-13 06:14:03.72 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 | [01c 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 +peer0.org2.example.com | [023 01-13 06:14:05.34 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 | [024 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +orderer.example.com | [020 01-13 06:14:05.62 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 +mysql | 2018-01-13T06:14:11.372710Z 0 [Note] /usr/sbin/mysqld (mysqld 8.0.3-rc-log) starting as process 86 ... +mysql | 2018-01-13T06:14:11.379096Z 0 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-bin' to avoid this problem. +mysql | 2018-01-13T06:14:11.382097Z 0 [Note] InnoDB: Using Linux native AIO +mysql | 2018-01-13T06:14:11.382601Z 0 [Note] Plugin 'FEDERATED' is disabled. +peer1.org2.example.com | [01a 01-13 06:14:04.43 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 +orderer.example.com | [021 01-13 06:14:05.63 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 | [022 01-13 06:14:05.65 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 | [023 01-13 06:14:05.65 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/] +peer0.org1.example.com | [01d 01-13 06:14:03.72 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 | [01e 01-13 06:14:03.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [01f 01-13 06:14:03.77 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 | [020 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +mysql | 2018-01-13T06:14:11.384267Z 1 [Note] InnoDB: PUNCH HOLE support available +orderer.example.com | [024 01-13 06:14:05.65 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 | [025 01-13 06:14:05.65 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 | [026 01-13 06:14:05.65 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 +peer0.org2.example.com | [025 01-13 06:14:05.35 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 | [026 01-13 06:14:05.35 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 | [027 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org2.example.com as a hostname, adding it as a DNS SAN +peer0.org2.example.com | [028 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org1.example.com | [021 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +orderer.example.com | [027 01-13 06:14:05.65 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 | [028 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +mysql | 2018-01-13T06:14:11.384544Z 1 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +mysql | 2018-01-13T06:14:11.389866Z 1 [Note] InnoDB: Uses event mutexes +orderer.example.com | [029 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +mysql | 2018-01-13T06:14:11.390211Z 1 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +peer0.org2.example.com | [029 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 +peer0.org2.example.com | [02a 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org2.example.com | [02b 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +orderer.example.com | [02a 01-13 06:14:05.65 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 | [02b 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org1.example.com | [022 01-13 06:14:03.77 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 | [023 01-13 06:14:03.77 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 | [024 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [025 01-13 06:14:03.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +mysql | 2018-01-13T06:14:11.393164Z 1 [Note] InnoDB: Compressed tables use zlib 1.2.11 +orderer.example.com | [02c 01-13 06:14:05.65 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)(0xc42015ebc0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org2.example.com | [02c 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org2.example.com | [01b 01-13 06:14:04.43 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 | [01c 01-13 06:14:04.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 +orderer.example.com | [02d 01-13 06:14:05.66 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 | [02e 01-13 06:14:05.66 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{0x92, 0xb0, 0xe5, 0xce, 0x4a, 0x40, 0x2e, 0xff, 0xf, 0x90, 0x96, 0x2e, 0xcd, 0x60, 0x60, 0x2e, 0x7, 0x15, 0x63, 0xcd, 0xda, 0x44, 0x28, 0x61, 0x42, 0x8d, 0x7c, 0xd4, 0x4, 0x88, 0xc3, 0x35} txOffsets= orderer.example.com | txId=7fc55cfddbadf5a38b89898b4cbe3922b6ab3033c53ac93290759902e560b661 locPointer=offset=38, bytesLength=9111 -peer0.org2.example.com | [092 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87e2d1a3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [093 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [094 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87e2d1a3]sending state message INIT -peer1.org2.example.com | [0b8 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [02d 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org2.example.com | [02e 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org2.example.com | [02f 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer0.org2.example.com | [030 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer1.org2.example.com | [01d 01-13 06:14:04.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org2.example.com:7051 orderer.example.com | ] -peer1.org2.example.com | [0b9 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [02b 01-05 06:36:24.13 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 | [02c 01-05 06:36:24.13 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 | [02d 01-05 06:36:24.13 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.org2.example.com | [0ba 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [095 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87e2d1a3]Received message INIT from shim -peer0.org2.example.com | [096 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87e2d1a3]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [097 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [02e 01-05 06:36:24.13 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 -peer1.org2.example.com | [0bb 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [0bc 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -peer1.org2.example.com | [0bd 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [0be 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [02f 01-05 06:36:24.13 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]} -peer0.org2.example.com | [098 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [87e2d1a3]Received INIT, initializing chaincode -peer0.org2.example.com | [099 01-05 06:36:23.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [09a 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [09b 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87e2d1a3]Init get response status: 200 -peer1.org2.example.com | [0c0 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed -orderer.example.com | [030 01-05 06:36:24.13 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 | [031 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [032 01-05 06:36:24.13 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 | [033 01-05 06:36:24.13 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 -peer1.org2.example.com | [0bf 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [0c1 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [034 01-05 06:36:24.13 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 | [035 01-05 06:36:24.13 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] -peer1.org2.example.com | [0c2 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [09c 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87e2d1a3]Init succeeded. Sending COMPLETED -orderer.example.com | [036 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [0bc 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -peer1.org2.example.com | [0c3 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [0af 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer0.org1.example.com | [0b0 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -orderer.example.com | [037 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [0c5 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50fb41e2]Move state message READY -orderer.example.com | [038 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [0c6 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50fb41e2]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [0c7 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [50fb41e2]Entered state ready -peer1.org2.example.com | [0c4 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [039 01-05 06:36:24.13 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 | [03a 01-05 06:36:24.13 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 | [03b 01-05 06:36:24.13 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 | [03c 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [0c8 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:50fb41e2-75cc-4ef8-8a74-f133efd6ae81, channelID: -orderer.example.com | [03d 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [0c9 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50fb41e2]sending state message READY -peer0.org2.example.com | [09d 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87e2d1a3]Move state message COMPLETED -peer0.org2.example.com | [09e 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87e2d1a3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [0ca 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50fb41e2]Received message READY from shim -orderer.example.com | [03e 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [0cb 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [50fb41e2]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [03f 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [0b1 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer1.org1.example.com | [0bd 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [0cc 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [0b2 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -orderer.example.com | [040 01-05 06:36:24.14 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 | [041 01-05 06:36:24.14 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 | [042 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [0cd 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [043 01-05 06:36:24.14 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 -peer1.org2.example.com | [0ce 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [0b3 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer0.org2.example.com | [09f 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87e2d1a3]send state message COMPLETED -peer1.org1.example.com | [0be 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0cf 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [0d0 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [50fb41e2]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0d1 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [044 01-05 06:36:24.14 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 | [045 01-05 06:36:24.14 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 | [046 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [0d2 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [50fb41e2]sendExecuteMsg trigger event INIT -orderer.example.com | [047 01-05 06:36:24.14 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 -peer0.org1.example.com | [0b4 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0d3 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50fb41e2]Move state message INIT -peer0.org2.example.com | [0a0 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87e2d1a3]Received message COMPLETED from shim -orderer.example.com | [048 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [0b5 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer1.org2.example.com | [0d4 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50fb41e2]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [0a1 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87e2d1a3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [049 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0d5 01-05 06:36:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0bf 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0b6 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [026 01-13 06:14:03.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +mysql | 2018-01-13T06:14:11.393664Z 1 [Note] InnoDB: Number of pools: 1 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [031 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +orderer.example.com | [02f 01-13 06:14:05.67 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] +mysql | 2018-01-13T06:14:11.393923Z 1 [Note] InnoDB: Using CPU crc32 instructions +peer0.org1.example.com | [027 01-13 06:14:03.83 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [030 01-13 06:14:05.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer0.org2.example.com | [032 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org2.example.com | [033 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org2.example.com | [034 01-13 06:14:05.40 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org2.example.com | [035 01-13 06:14:05.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org2.example.com | [036 01-13 06:14:05.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +mysql | 2018-01-13T06:14:11.395103Z 1 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M +peer1.org1.example.com | [001 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [031 01-13 06:14:05.67 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 | [032 01-13 06:14:05.67 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 | [033 01-13 06:14:05.67 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 | [034 01-13 06:14:05.67 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] +peer1.org2.example.com | [01e 01-13 06:14:04.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [01f 01-13 06:14:04.47 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 | [020 01-13 06:14:04.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 | [002 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer1.org1.example.com | Version: 1.1.0 +peer1.org1.example.com | Go version: go1.9.2 +peer0.org2.example.com | [037 01-13 06:14:05.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [035 01-13 06:14:05.67 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 | [036 01-13 06:14:05.67 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 | [037 01-13 06:14:05.67 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 | [038 01-13 06:14:05.67 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]} +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +peer1.org1.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | [028 01-13 06:14:03.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org1.example.com | [029 01-13 06:14:03.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +peer1.org1.example.com | Experimental features: false +orderer.example.com | [039 01-13 06:14:05.67 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] +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [02a 01-13 06:14:03.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org2.example.com | [038 01-13 06:14:05.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org2.example.com | [021 01-13 06:14:04.47 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +mysql | mbind: Operation not permitted +peer1.org1.example.com | Chaincode: +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [03a 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [02b 01-13 06:14:03.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org2.example.com | [039 01-13 06:14:05.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 | [03a 01-13 06:14:05.43 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 | [03b 01-13 06:14:05.43 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 | [03c 01-13 06:14:05.43 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 | Base Image Version: 0.4.2 +peer1.org2.example.com | [022 01-13 06:14:04.47 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +orderer.example.com | [03b 01-13 06:14:05.68 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 | [03c 01-13 06:14:05.68 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 | [03d 01-13 06:14:05.68 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 | [03e 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [02c 01-13 06:14:03.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +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 +mysql | mbind: Operation not permitted +peer0.org2.example.com | [03d 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +orderer.example.com | [03f 01-13 06:14:05.68 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 | [040 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [02d 01-13 06:14:03.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | [02e 01-13 06:14:03.90 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org1.example.com | [02f 01-13 06:14:03.90 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer1.org1.example.com | +mysql | 2018-01-13T06:14:11.417633Z 1 [Note] InnoDB: Completed initialization of buffer pool +explorer | at emitOne (events.js:96:13) +orderer.example.com | [041 01-13 06:14:05.68 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 | [042 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [023 01-13 06:14:04.47 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 | [003 01-13 06:14:04.20 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 | [030 01-13 06:14:03.90 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +mysql | 2018-01-13T06:14:11.419462Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +peer0.org2.example.com | [03e 01-13 06:14:05.44 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]]]] +peer1.org2.example.com | [024 01-13 06:14:04.47 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org1.example.com | [004 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +orderer.example.com | [043 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [031 01-13 06:14:03.91 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +mysql | 2018-01-13T06:14:11.435457Z 1 [Note] InnoDB: Using 'tablespaces.open.1' max LSN: 13791368 +peer0.org2.example.com | [03f 01-13 06:14:05.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [040 01-13 06:14:05.44 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [005 01-13 06:14:04.20 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 | [006 01-13 06:14:04.20 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 | [025 01-13 06:14:04.48 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 | [026 01-13 06:14:04.49 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 | [027 01-13 06:14:04.51 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org2.example.com as a hostname, adding it as a DNS SAN +orderer.example.com | [044 01-13 06:14:05.68 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 | [045 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [032 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org1.example.com | [007 01-13 06:14:04.21 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 +mysql | 2018-01-13T06:14:11.445608Z 1 [Note] InnoDB: Applying a batch of 0 redo log records ... +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [046 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [028 01-13 06:14:04.51 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org2.example.com | [041 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer0.org1.example.com | [033 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer1.org1.example.com | [008 01-13 06:14:04.23 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/] +mysql | 2018-01-13T06:14:11.446131Z 1 [Note] InnoDB: Apply batch completed! +peer1.org2.example.com | [029 01-13 06:14:04.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 +orderer.example.com | [047 01-13 06:14:05.69 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 | [048 01-13 06:14:05.69 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 | [049 01-13 06:14:05.69 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 | [04a 01-13 06:14:05.69 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 | [04b 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [009 01-13 06:14:04.23 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 +mysql | 2018-01-13T06:14:11.448141Z 1 [Note] InnoDB: Opened 2 existing undo tablespaces. +peer1.org2.example.com | [02a 01-13 06:14:04.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org1.example.com | [034 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org1.example.com | [035 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org1.example.com | [036 01-13 06:14:03.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +peer0.org2.example.com | [042 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [00a 01-13 06:14:04.23 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 | [00b 01-13 06:14:04.26 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 | [00c 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +orderer.example.com | [04c 01-13 06:14:05.69 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [037 01-13 06:14:03.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [02b 01-13 06:14:04.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer1.org2.example.com | [02c 01-13 06:14:04.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org1.example.com | [00d 01-13 06:14:04.26 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 | [00e 01-13 06:14:04.30 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 +orderer.example.com | [04d 01-13 06:14:05.69 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----- +explorer | -------------------- +peer0.org1.example.com | [038 01-13 06:14:03.93 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [0d6 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50fb41e2]sending state message INIT -peer1.org1.example.com | [0c0 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0d7 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50fb41e2]Received message INIT from shim orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [0b7 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer0.org2.example.com | [0a2 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87e2d1a3-9f26-424a-bba1-d71077c2d774]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [0d8 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [50fb41e2]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [00f 01-13 06:14:04.31 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 | [02d 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +mysql | 2018-01-13T06:14:11.473700Z 1 [Note] InnoDB: Creating shared tablespace for temporary tables +peer0.org2.example.com | [043 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [039 01-13 06:14:03.95 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 | [010 01-13 06:14:04.31 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 | [02e 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +mysql | 2018-01-13T06:14:11.474165Z 1 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [02f 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer0.org1.example.com | [03a 01-13 06:14:03.96 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 | [044 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPlZcLcMzfzgE68ZzSaaSeYwCgYIKoZIzj0EAwIwczEL orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer1.org2.example.com | [0d9 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0b8 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0c1 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [011 01-13 06:14:04.31 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 | [030 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer1.org2.example.com | [031 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org1.example.com | [012 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [0b9 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [0a3 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:87e2d1a3-9f26-424a-bba1-d71077c2d774, channelID: -peer1.org2.example.com | [0da 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [50fb41e2]Received INIT, initializing chaincode +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [032 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [03b 01-13 06:14:03.96 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]] +mysql | 2018-01-13T06:14:11.690925Z 1 [Note] InnoDB: File './ibtmp1' size is now 12 MB. +mysql | 2018-01-13T06:14:11.698404Z 1 [Note] InnoDB: Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +peer1.org1.example.com | [013 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [0ba 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0db 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0dc 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50fb41e2]Init get response status: 200 -peer1.org2.example.com | [0dd 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50fb41e2]Init succeeded. Sending COMPLETED orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org2.example.com | [0a4 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0bb 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [0c2 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed -peer1.org2.example.com | [0de 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50fb41e2]Move state message COMPLETED +peer1.org2.example.com | [033 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer1.org1.example.com | [014 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer1.org1.example.com | [015 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer1.org1.example.com | [016 01-13 06:14:04.35 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 | [03c 01-13 06:14:03.97 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]] orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org2.example.com | [0a5 01-05 06:36:23.82 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [0a6 01-05 06:36:23.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=9ff73dae-f001-4af0-999c-b0a9b74315c8,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [0df 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [50fb41e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIsTFoftFSbhQW3yKTX+bQC+Ry/3z9tx +mysql | 2018-01-13T06:14:11.698968Z 1 [Note] InnoDB: 8.0.3 started; log sequence number 15050805 +peer1.org1.example.com | [017 01-13 06:14:04.35 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 | [018 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [0bc 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -peer1.org1.example.com | [0c3 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | r/X846QAFI3FX4DI5Bg1ICvwRzTFDa1LBkuYhiVkFYf5Q6S2oXFTAm6jTTBLMA4G +peer1.org2.example.com | [034 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer1.org1.example.com | [019 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +mysql | 2018-01-13T06:14:11.851829Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +peer0.org1.example.com | [03d 01-13 06:14:03.97 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org2.example.com | [0e0 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [50fb41e2]send state message COMPLETED -peer0.org2.example.com | [0a7 01-05 06:36:23.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched -peer0.org1.example.com | [0bd 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [0be 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [035 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer1.org1.example.com | [01a 01-13 06:14:04.43 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.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +mysql | 2018-01-13T06:14:11.865239Z 0 [Note] InnoDB: Buffer pool(s) load completed at 180113 6:14:11 +peer0.org1.example.com | [03e 01-13 06:14:03.97 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]]]] orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org2.example.com | [0e1 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [50fb41e2]Received message COMPLETED from shim -peer0.org2.example.com | [0a8 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [0c4 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0bf 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0e2 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50fb41e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [036 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +peer1.org1.example.com | [01b 01-13 06:14:04.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org1.example.com:7051 +mysql | 2018-01-13T06:14:12.101782Z 1 [Note] Found data dictionary with version 1 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Mu6 +peer0.org1.example.com | [03f 01-13 06:14:03.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [037 01-13 06:14:04.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org2.example.com | [0a9 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [0c5 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25dc30e9]Move state message READY -peer0.org1.example.com | [0c0 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0c6 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25dc30e9]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [01c 01-13 06:14:04.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 +mysql | MySQL init process in progress... +mysql | 2018-01-13T06:14:12.696046Z 0 [Note] InnoDB: DDL log recovery : begin +mysql | 2018-01-13T06:14:12.696313Z 0 [Note] InnoDB: DDL log recovery : end +mysql | 2018-01-13T06:14:12.696563Z 0 [Note] InnoDB: Waiting for purge to start +peer0.org1.example.com | [040 01-13 06:14:03.98 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [041 01-13 06:14:04.05 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +peer1.org1.example.com | [01d 01-13 06:14:04.43 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org1.example.com:7051 orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0e3 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [50fb41e2-75cc-4ef8-8a74-f133efd6ae81]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0c1 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0e4 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:50fb41e2-75cc-4ef8-8a74-f133efd6ae81, channelID: -orderer.example.com | [04a 01-05 06:36:24.14 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----- +peer0.org2.example.com | IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +mysql | 2018-01-13T06:14:12.752046Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +peer1.org2.example.com | [038 01-13 06:14:04.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org1.example.com | [01e 01-13 06:14:04.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +orderer.example.com | [04e 01-13 06:14:05.70 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----- +peer0.org2.example.com | dblSJ0Unez2++mFCUWE= +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +mysql | 2018-01-13T06:14:12.754898Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +peer1.org2.example.com | [039 01-13 06:14:04.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 +peer1.org1.example.com | [01f 01-13 06:14:04.48 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 | [020 01-13 06:14:04.48 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 | [021 01-13 06:14:04.48 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 | [042 01-13 06:14:04.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0e5 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [0aa 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org1.example.com | [0c7 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [25dc30e9]Entered state ready orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer0.org2.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [022 01-13 06:14:04.48 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 | [023 01-13 06:14:04.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 | [024 01-13 06:14:04.48 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org1.example.com | [025 01-13 06:14:04.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 | [026 01-13 06:14:04.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 +peer0.org1.example.com | [043 01-13 06:14:04.14 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [0e6 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [0ab 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [0c8 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:25dc30e9-7cfa-4a89-a700-a4cdb11f1bce, channelID: -peer1.org1.example.com | [0c9 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25dc30e9]sending state message READY -peer1.org1.example.com | [0ca 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25dc30e9]Received message READY from shim orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [0e7 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=ab39081f-6a3e-4e2c-8742-97bd390c3f1a,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org2.example.com | [0ac 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [0ad 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [0ae 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org2.example.com | [0e8 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [0e9 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [0c2 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed -peer1.org1.example.com | [0cb 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25dc30e9]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [03a 01-13 06:14:04.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]] +peer1.org1.example.com | [027 01-13 06:14:04.51 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org1.example.com as a hostname, adding it as a DNS SAN +peer1.org1.example.com | [028 01-13 06:14:04.51 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer1.org1.example.com | [029 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 +mysql | 2018-01-13T06:14:12.755357Z 0 [Warning] CA certificate ca.pem is self signed. orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org2.example.com | [0ea 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [0c3 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [0cc 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [0eb 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [0c4 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [0ec 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [0ed 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [0cd 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [0ee 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [0c5 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]Move state message READY +peer0.org2.example.com | [045 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [02a 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer1.org1.example.com | [02b 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer1.org1.example.com | [02c 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org1.example.com | [02d 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer1.org2.example.com | [03b 01-13 06:14:04.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]] orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [0ef 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [04b 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [0c6 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0ce 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [0cf 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [04c 01-05 06:36:24.15 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 | [04d 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [0c7 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4b54524d]Entered state ready -orderer.example.com | [04e 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | 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 -orderer.example.com | [04f 01-05 06:36:24.15 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 | [050 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [0c8 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4b54524d-cab9-401a-9c83-93090ec5e57c, channelID: -peer0.org2.example.com | [0af 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -orderer.example.com | [051 01-05 06:36:24.15 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 | [052 01-05 06:36:24.15 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 | [053 01-05 06:36:24.15 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 -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [0c9 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]sending state message READY -peer1.org1.example.com | [0d0 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25dc30e9]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0b0 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -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 | [0f0 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -orderer.example.com | [054 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [0f1 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer0.org2.example.com | [0b1 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer0.org1.example.com | [0ca 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Received message READY from shim -peer1.org1.example.com | [0d1 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0f2 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -peer0.org2.example.com | [0b2 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer0.org2.example.com | [0b3 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer1.org1.example.com | [0d2 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25dc30e9]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0f3 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [0f4 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer1.org1.example.com | [0d3 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25dc30e9]Move state message INIT -peer0.org1.example.com | [0cb 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b54524d]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0b4 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0f6 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [0cc 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [0b5 01-05 06:36:23.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer1.org2.example.com | [0f5 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer1.org2.example.com | [0f7 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org2.example.com | [0f8 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [0cd 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [0b6 01-05 06:36:23.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 | [0b7 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer0.org2.example.com | [0b8 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer1.org2.example.com | [0f9 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0d4 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25dc30e9]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [0d5 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0d6 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25dc30e9]sending state message INIT -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org2.example.com | [0fa 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [0b9 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0ce 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [0cf 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [0fb 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | [0d7 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25dc30e9]Received message INIT from shim -peer1.org1.example.com | [0d8 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25dc30e9]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0d9 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [0fc 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [0ba 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [0d0 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4b54524d]Inside sendExecuteMessage. Message INIT -orderer.example.com | [055 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0fd 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer0.org2.example.com | [0bb 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [0da 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [25dc30e9]Received INIT, initializing chaincode -peer1.org2.example.com | [0fe 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [0d1 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [0db 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0ff 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [0d2 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4b54524d]sendExecuteMsg trigger event INIT -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [0dc 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0bc 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org2.example.com | [100 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [0bd 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [0d3 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]Move state message INIT -peer1.org1.example.com | [0dd 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25dc30e9]Init get response status: 200 -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [0be 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [102 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0d4 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [103 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [0bf 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [0d5 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0c0 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer1.org2.example.com | [101 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed -peer1.org1.example.com | [0de 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25dc30e9]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0d6 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]sending state message INIT -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer1.org2.example.com | [104 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [0c2 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed -peer1.org1.example.com | [0df 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25dc30e9]Move state message COMPLETED -peer1.org2.example.com | [105 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0d7 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Received message INIT from shim -peer0.org2.example.com | [0c3 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [106 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab39081f]Move state message READY -peer0.org1.example.com | [0d8 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b54524d]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0e0 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25dc30e9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0c4 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org2.example.com | [107 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab39081f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0d9 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [0e1 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25dc30e9]send state message COMPLETED -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer1.org2.example.com | [108 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ab39081f]Entered state ready -peer0.org2.example.com | [0c5 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ff73dae]Move state message READY -peer0.org1.example.com | [0da 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4b54524d]Received INIT, initializing chaincode -peer1.org2.example.com | [109 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ab39081f-6a3e-4e2c-8742-97bd390c3f1a, channelID: -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer1.org1.example.com | [0e2 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25dc30e9]Received message COMPLETED from shim -peer0.org2.example.com | [0c6 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ff73dae]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0db 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [10a 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab39081f]sending state message READY -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org2.example.com | [0c7 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9ff73dae]Entered state ready -peer1.org2.example.com | [10b 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab39081f]Received message READY from shim -peer0.org2.example.com | [0c1 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [0dc 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Init get response status: 200 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [10c 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab39081f]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0c8 01-05 06:36:23.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9ff73dae-f001-4af0-999c-b0a9b74315c8, channelID: -peer1.org1.example.com | [0e3 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25dc30e9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [10d 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [056 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [10e 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [10f 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [057 01-05 06:36:24.15 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 -peer0.org1.example.com | [0dd 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0c9 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ff73dae]sending state message READY -orderer.example.com | [058 01-05 06:36:24.15 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 -peer1.org2.example.com | [110 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [0de 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Move state message COMPLETED -peer1.org1.example.com | [0e4 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [25dc30e9-7cfa-4a89-a700-a4cdb11f1bce]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [0ca 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ff73dae]Received message READY from shim -orderer.example.com | [059 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [111 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab39081f]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [0df 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b54524d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0cb 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ff73dae]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [112 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [05a 01-05 06:36:24.15 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 -peer0.org1.example.com | [0e0 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]send state message COMPLETED -peer1.org2.example.com | [113 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab39081f]sendExecuteMsg trigger event INIT -orderer.example.com | [05b 01-05 06:36:24.15 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 -peer0.org2.example.com | [0cc 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [114 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab39081f]Move state message INIT -peer1.org1.example.com | [0e5 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:25dc30e9-7cfa-4a89-a700-a4cdb11f1bce, channelID: -peer0.org1.example.com | [0e1 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]Received message COMPLETED from shim -peer0.org2.example.com | [0cd 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [115 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab39081f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [05c 01-05 06:36:24.15 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 -peer0.org1.example.com | [0e2 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [116 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0ce 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [05d 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0e3 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d-cab9-401a-9c83-93090ec5e57c]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [117 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab39081f]sending state message INIT -peer0.org2.example.com | [0cf 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [04f 01-13 06:14:05.70 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 | [050 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos +orderer.example.com | [051 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +mysql | 2018-01-13T06:14:12.794705Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [02e 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer1.org1.example.com | [02f 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +peer1.org1.example.com | [030 01-13 06:14:04.58 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +peer0.org1.example.com | [044 01-13 06:14:04.14 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | [052 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [053 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +mysql | 2018-01-13T06:14:12.794895Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [031 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org2.example.com | [03c 01-13 06:14:04.61 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 | [03d 01-13 06:14:04.61 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +orderer.example.com | [054 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [055 01-13 06:14:05.72 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 | [056 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [032 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +mysql | 2018-01-13T06:14:12.795017Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org2.example.com | [03e 01-13 06:14:04.61 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]]]] +peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [046 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [057 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +mysql | 2018-01-13T06:14:12.795125Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [033 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +explorer | at ontimeout (timers.js:386:11) +peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [03f 01-13 06:14:04.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [047 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +mysql | 2018-01-13T06:14:12.795205Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [034 01-13 06:14:04.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +orderer.example.com | [058 01-13 06:14:05.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer1.org1.example.com | [035 01-13 06:14:04.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org2.example.com | [048 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [049 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:12.795294Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +mysql | 2018-01-13T06:14:12.804199Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [118 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab39081f]Received message INIT from shim -peer1.org1.example.com | [0e6 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0e4 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4b54524d-cab9-401a-9c83-93090ec5e57c, channelID: orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [119 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab39081f]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0d0 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9ff73dae]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [0e5 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [036 01-13 06:14:04.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [04a 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [040 01-13 06:14:04.61 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +mysql | 2018-01-13T06:14:12.804454Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +mysql | 2018-01-13T06:14:12.817013Z 4 [Note] Event Scheduler: scheduler thread started with id 4 +mysql | 2018-01-13T06:14:12.817533Z 0 [Note] /usr/sbin/mysqld: ready for connections. Version: '8.0.3-rc-log' socket: '/var/run/mysqld/mysqld.sock' port: 0 MySQL Community Server (GPL) +peer1.org1.example.com | [037 01-13 06:14:04.60 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [0d1 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [11a 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org2.example.com | [04b 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [230 68 56 36 66 205 230 223 233 42 157 196 63 255 41 11 201 233 67 94 147 184 255 26 195 166 7 247 150 198 212 199] peer0.org2.example.com:7051 } incTime is 1515824045512894205 +peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [038 01-13 06:14:04.61 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +mysql | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it. +peer1.org2.example.com | [041 01-13 06:14:04.63 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer1.org2.example.com:7051] orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [0e6 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [11b 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ab39081f]Received INIT, initializing chaincode -peer1.org1.example.com | [0e7 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [0d2 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9ff73dae]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0e7 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=b0405d31-1d97-4a17-91e3-abcdf99ff1cf,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org2.example.com | [11c 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [04c 01-13 06:14:05.53 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 [] [230 68 56 36 66 205 230 223 233 42 157 196 63 255 41 11 201 233 67 94 147 184 255 26 195 166 7 247 150 198 212 199] peer0.org2.example.com:7051 } +peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw +peer0.org1.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD +peer1.org1.example.com | [039 01-13 06:14:04.61 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [0d3 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ff73dae]Move state message INIT +peer1.org2.example.com | [042 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [04d 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +mysql | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it. +peer1.org1.example.com | [03a 01-13 06:14:04.61 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]] orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [11d 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab39081f]Init get response status: 200 +peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 +peer1.org2.example.com | [043 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +mysql | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it. +explorer | errno: 1146, +peer1.org1.example.com | [03b 01-13 06:14:04.62 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 | [04e 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:16.427679Z 9 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [11e 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab39081f]Init succeeded. Sending COMPLETED orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [11f 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab39081f]Move state message COMPLETED -peer0.org1.example.com | [0e8 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched -peer0.org2.example.com | [0d4 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ff73dae]Fabric side Handling ChaincodeMessage of type: INIT in state ready orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [0e9 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [0d5 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org2.example.com | [120 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab39081f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0e8 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=5387057b-10dd-4a32-9d48-0e1fc7057729,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org1.example.com | [0ea 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [044 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [03c 01-13 06:14:04.62 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 | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +peer0.org1.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer1.org2.example.com | [121 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab39081f]send state message COMPLETED -peer0.org2.example.com | [0d6 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ff73dae]sending state message INIT +peer0.org2.example.com | [04f 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [050 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [03d 01-13 06:14:04.62 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]] +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer1.org1.example.com | [0e9 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched -peer1.org2.example.com | [122 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab39081f]Received message COMPLETED from shim -peer0.org2.example.com | [0d7 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ff73dae]Received message INIT from shim +mysql | 2018-01-13T06:14:16.427728Z 9 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +peer0.org2.example.com | [051 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [03e 01-13 06:14:04.62 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]]]] +peer1.org1.example.com | [03f 01-13 06:14:04.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [040 01-13 06:14:04.62 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [041 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] orderer.example.com | oQmWQsjpiQ== -peer1.org2.example.com | [123 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab39081f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | oOWGb8BDg2Tnm3LS +peer1.org2.example.com | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL +mysql | 2018-01-13T06:14:16.427752Z 9 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | [042 01-13 06:14:04.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [052 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0eb 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [124 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab39081f-6a3e-4e2c-8742-97bd390c3f1a]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [0d8 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ff73dae]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [05e 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0ec 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -peer1.org2.example.com | [125 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ab39081f-6a3e-4e2c-8742-97bd390c3f1a, channelID: +mysql | 2018-01-13T06:14:16.427765Z 9 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [043 01-13 06:14:04.74 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +explorer | [2018-01-13 06:14:29.453] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org2.example.com | [053 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [059 01-13 06:14:05.74 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [0ea 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [0ed 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [0d9 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [126 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [0eb 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [044 01-13 06:14:04.75 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [045 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:16.427781Z 9 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [0ee 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | [0da 01-05 06:36:23.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9ff73dae]Received INIT, initializing chaincode -peer1.org2.example.com | [127 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAMm2nRLiV9ssQthhvYP8KQEwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [054 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [046 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 +mysql | 2018-01-13T06:14:16.427934Z 9 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [0ef 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [0ec 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [055 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C7060A20E644382442CDE6DF...455254494649434154452D2D2D2D2D0A +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [0db 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer1.org2.example.com | [128 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=bf9fb042-2365-4c8c-b17d-ca712954efeb,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [0dc 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ff73dae]Init get response status: 200 -peer1.org1.example.com | [0ed 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +mysql | 2018-01-13T06:14:16.427950Z 9 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [047 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [129 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched -peer0.org2.example.com | [0dd 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ff73dae]Init succeeded. Sending COMPLETED +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [12a 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [048 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [049 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [04a 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org1.example.com | [0ee 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [0de 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ff73dae]Move state message COMPLETED -peer1.org2.example.com | [12b 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org2.example.com | [0df 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ff73dae]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [0ef 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [0e0 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ff73dae]send state message COMPLETED -peer1.org2.example.com | [12c 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [056 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 6164EC7DE7D0087EA213CCC69053D9BB7D8E6DDEB986CC607C3F53E9BC2BDC7C +peer0.org2.example.com | [057 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=ccafc302-e8d6-4d90-bc9b-9c585591ed14,syscc=true,proposal=0x0,canname=cscc:1.1.0 +mysql | mysql: [Warning] Using a password on the command line interface can be insecure. +mysql | orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org1.example.com | [0f0 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [0e1 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ff73dae]Received message COMPLETED from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFrEWeTrn3TfWYYM+62OyFTECgSjLyaT +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [04c 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [059 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched +peer0.org2.example.com | [05a 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | [05b 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org2.example.com | [12d 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -peer0.org1.example.com | [0f0 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org2.example.com | [0e2 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ff73dae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer1.org2.example.com | [12e 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [0e3 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ff73dae-f001-4af0-999c-b0a9b74315c8]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0f1 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [12f 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org1.example.com | GqQq/wBR1t28C1sN2jzZA0Z8CC6UBxPnAU5/aHoJRM86OJM2kjIK5u+jTTBLMA4G +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org1.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDVXd+d +peer1.org1.example.com | hda/sjnux8Hg361l9wkEXBVmH8iO0usHjqvAOgIgBjqzYUxBWSyaZ1+LwXFVWYtM +peer1.org1.example.com | ZRKeLT+EkdbmTk6JlSM= +peer1.org2.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [0e4 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9ff73dae-f001-4af0-999c-b0a9b74315c8, channelID: -peer0.org1.example.com | [0f2 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -peer1.org2.example.com | [130 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | [0e5 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0f3 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -orderer.example.com | [05f 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [0e6 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [0f4 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [060 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [0f5 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [0e7 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=3855c68f-feda-4ef9-b6b3-2b5afba191ce,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | [061 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [0f6 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer0.org2.example.com | [0e8 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [0e9 01-05 06:36:23.87 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [062 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [0f7 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | 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_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [0ea 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [0f8 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [063 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [0f1 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer0.org1.example.com | [0f9 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [0eb 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org1.example.com | [0f2 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -orderer.example.com | [064 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [0fa 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [0ec 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -orderer.example.com | [065 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org1.example.com | [0f3 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -peer0.org1.example.com | [0fb 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [131 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer0.org2.example.com | [0ed 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | [132 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -orderer.example.com | [066 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org2.example.com | [0ee 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | [0fc 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [133 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer1.org1.example.com | [0f4 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer0.org2.example.com | [0ef 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [067 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org2.example.com | [134 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer0.org1.example.com | [0fd 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer1.org1.example.com | [0f5 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -orderer.example.com | [068 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [135 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org1.example.com | [0fe 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -orderer.example.com | [069 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org1.example.com | [0f6 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [136 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -orderer.example.com | [06a 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP +orderer.example.com | [05a 01-13 06:14:05.76 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 | [05b 01-13 06:14:05.76 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 | [05c 01-13 06:14:05.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [04b 01-13 06:14:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } incTime is 1515824044162791594 +peer0.org2.example.com | [05c 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [045 01-13 06:14:04.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [05d 01-13 06:14:05.76 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 +peer0.org1.example.com | [04d 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } +mysql | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/fabricexplorer.sql +peer1.org1.example.com | [046 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [05d 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | [05e 01-13 06:14:05.76 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 | [05f 01-13 06:14:05.76 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 | [060 01-13 06:14:05.76 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 | [061 01-13 06:14:05.76 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 | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +mysql | mysql: [Warning] Using a password on the command line interface can be insecure. +peer1.org1.example.com | [047 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [048 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [049 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [04a 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [04b 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [170 227 37 131 30 140 118 163 82 91 149 125 17 185 220 58 211 219 91 155 15 204 74 129 51 178 179 76 71 215 18 173] peer1.org1.example.com:7051 } incTime is 1515824044785293787 +peer0.org1.example.com | [04e 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer0.org2.example.com | [05e 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [05f 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +mysql | ERROR: Can't initialize batch_readline - may be the input source is a directory or a block device. +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [04d 01-13 06:14:04.81 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 [] [170 227 37 131 30 140 118 163 82 91 149 125 17 185 220 58 211 219 91 155 15 204 74 129 51 178 179 76 71 215 18 173] peer1.org1.example.com:7051 } +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [04f 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB +peer0.org2.example.com | [060 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +mysql | 2018-01-13T06:14:18.126716Z 0 [Note] Basedir set to /usr/ +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org1.example.com | [04e 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | IMM+3uC8p/M1qCSaOiQ= +mysql | 2018-01-13T06:14:18.126970Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [050 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mysql | 2018-01-13T06:14:18.127293Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled +explorer | -------------------- +peer1.org1.example.com | [04f 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [051 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | -----END CERTIFICATE----- +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +mysql | 2018-01-13T06:14:18.127343Z 0 [Note] /usr/sbin/mysqld (mysqld 8.0.3-rc-log) starting as process 1 ... +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [052 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [0ff 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [06b 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org1.example.com | [0f7 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [100 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [06c 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | [06d 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP -peer1.org2.example.com | [137 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [102 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0f8 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [050 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +mysql | 2018-01-13T06:14:18.130660Z 0 [Warning] No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=mysql-bin' to avoid this problem. +mysql | 2018-01-13T06:14:18.133133Z 0 [Note] InnoDB: Using Linux native AIO +mysql | 2018-01-13T06:14:18.135405Z 0 [Note] Plugin 'FEDERATED' is disabled. +mysql | 2018-01-13T06:14:18.138596Z 1 [Note] InnoDB: PUNCH HOLE support available +peer1.org1.example.com | [04c 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [053 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +orderer.example.com | vA2BLfriqQ== +orderer.example.com | -----END CERTIFICATE----- peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [06e 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP +peer1.org1.example.com | [051 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [052 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [045 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [062 01-13 06:14:05.76 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----- +mysql | 2018-01-13T06:14:18.138845Z 1 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +mysql | 2018-01-13T06:14:18.138964Z 1 [Note] InnoDB: Uses event mutexes +peer1.org1.example.com | [053 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [054 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [046 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [06f 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -peer1.org2.example.com | [138 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [103 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [070 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers -peer1.org1.example.com | [0f9 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [071 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [139 01-05 06:36:24.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [054 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [055 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [056 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C7060A20AAE325831E8C76A3...455254494649434154452D2D2D2D2D0A +peer1.org1.example.com | [057 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 2CDD94859AF137FC39D62CA421154B47423F0884C009F10D70579B0F23C92062 +peer1.org1.example.com | [058 01-13 06:14:04.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer1.org2.example.com | [047 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [101 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed -peer1.org1.example.com | [0fa 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [072 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [13a 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [104 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [073 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -peer1.org1.example.com | [0fb 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [13b 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [059 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer1.org1.example.com | [05a 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started +mysql | 2018-01-13T06:14:18.139053Z 1 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org1.example.com | [055 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [05b 01-13 06:14:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=48dcf0b7-a8b3-490a-8ca2-d756a93d1873,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer1.org1.example.com | [05d 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched +peer1.org1.example.com | [05e 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [05f 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [056 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C3060A20D88EF51A9639BB4C...455254494649434154452D2D2D2D2D0A +peer1.org2.example.com | [048 01-13 06:14:04.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:18.139078Z 1 [Note] InnoDB: Compressed tables use zlib 1.2.11 peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | [074 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org1.example.com | [0fc 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [105 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [13c 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | [075 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [0f0 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer1.org1.example.com | [0fd 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [106 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]Move state message READY -peer1.org2.example.com | [13d 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [076 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [0f1 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer0.org1.example.com | [107 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [077 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [13e 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer1.org1.example.com | [0fe 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer0.org2.example.com | [0f2 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -orderer.example.com | [078 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [0ff 01-05 06:36:24.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -peer0.org1.example.com | [108 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b0405d31]Entered state ready -orderer.example.com | [079 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [13f 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [0f3 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -orderer.example.com | [07a 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [109 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b0405d31-1d97-4a17-91e3-abcdf99ff1cf, channelID: -peer1.org1.example.com | [100 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [07b 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [140 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [0f5 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer0.org1.example.com | [10a 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]sending state message READY -peer1.org1.example.com | [101 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [07c 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [141 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [10b 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Received message READY from shim -peer0.org2.example.com | [0f4 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer1.org1.example.com | [102 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [10c 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0405d31]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [07d 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [142 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0f7 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [10d 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [103 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [07e 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [143 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [10e 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [104 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed -peer0.org2.example.com | [0f6 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [07f 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [144 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -peer0.org1.example.com | [10f 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [0f8 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer1.org1.example.com | [105 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [080 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [110 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [145 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [0f9 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [106 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [111 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0405d31]Inside sendExecuteMessage. Message INIT -orderer.example.com | [081 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [146 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0fa 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [107 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5387057b]Move state message READY -orderer.example.com | [082 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [112 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [083 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [108 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5387057b]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0fb 01-05 06:36:23.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [147 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf9fb042]Move state message READY -peer0.org1.example.com | [113 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0405d31]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [109 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5387057b]Entered state ready -peer0.org2.example.com | [0fc 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [084 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [114 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]Move state message INIT -peer1.org2.example.com | [148 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bf9fb042]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [115 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [0fd 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer1.org1.example.com | [10a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5387057b-10dd-4a32-9d48-0e1fc7057729, channelID: -peer1.org2.example.com | [149 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bf9fb042]Entered state ready -orderer.example.com | [085 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums -peer0.org1.example.com | [116 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [10b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5387057b]sending state message READY -peer0.org2.example.com | [0fe 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [14a 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:bf9fb042-2365-4c8c-b17d-ca712954efeb, channelID: -peer1.org1.example.com | [10c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5387057b]Received message READY from shim -orderer.example.com | [086 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -peer0.org1.example.com | [117 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]sending state message INIT -peer0.org2.example.com | [0ff 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [14b 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf9fb042]sending state message READY -peer1.org1.example.com | [10d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5387057b]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [118 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Received message INIT from shim -peer1.org2.example.com | [14c 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf9fb042]Received message READY from shim -peer0.org2.example.com | [100 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [087 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP -peer1.org1.example.com | [10e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [14d 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf9fb042]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [119 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0405d31]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [101 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [088 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -peer1.org1.example.com | [10f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [102 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [11a 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [089 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -peer1.org1.example.com | [110 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [103 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed -peer1.org2.example.com | [14e 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [08a 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -peer1.org1.example.com | [111 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org2.example.com | [104 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [11b 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b0405d31]Received INIT, initializing chaincode -orderer.example.com | [08b 01-05 06:36:24.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -peer0.org2.example.com | [105 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [106 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3855c68f]Move state message READY -orderer.example.com | [08c 01-05 06:36:24.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP -peer0.org1.example.com | [11c 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [14f 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [107 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3855c68f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [112 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5387057b]Inside sendExecuteMessage. Message INIT -orderer.example.com | [08d 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -peer0.org2.example.com | [108 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3855c68f]Entered state ready -peer1.org2.example.com | [150 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [113 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [11d 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Init get response status: 200 -peer0.org2.example.com | [109 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3855c68f-feda-4ef9-b6b3-2b5afba191ce, channelID: -peer1.org2.example.com | [151 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [08e 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -peer0.org1.example.com | [11e 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [10a 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3855c68f]sending state message READY -peer1.org1.example.com | [114 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5387057b]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [152 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bf9fb042]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [11f 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Move state message COMPLETED -peer0.org2.example.com | [10b 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3855c68f]Received message READY from shim -orderer.example.com | [08f 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -peer1.org1.example.com | [115 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5387057b]Move state message INIT -peer0.org2.example.com | [10c 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3855c68f]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [153 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [120 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0405d31]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [10d 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [090 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -peer1.org1.example.com | [116 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5387057b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [10e 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [154 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bf9fb042]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [121 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]send state message COMPLETED -peer0.org2.example.com | [10f 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [091 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -peer1.org2.example.com | [155 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf9fb042]Move state message INIT -peer1.org1.example.com | [117 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [122 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]Received message COMPLETED from shim -peer0.org2.example.com | [110 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [092 01-05 06:36:24.21 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 -peer1.org1.example.com | [118 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5387057b]sending state message INIT -peer0.org1.example.com | [123 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [111 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3855c68f]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [156 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bf9fb042]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [093 01-05 06:36:24.21 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 -peer0.org1.example.com | [124 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31-1d97-4a17-91e3-abcdf99ff1cf]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [112 01-05 06:36:23.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [119 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5387057b]Received message INIT from shim -peer1.org2.example.com | [157 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [113 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3855c68f]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [11a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5387057b]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [114 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3855c68f]Move state message INIT -orderer.example.com | [094 01-05 06:36:24.21 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 -peer0.org1.example.com | [125 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0405d31-1d97-4a17-91e3-abcdf99ff1cf, channelID: -peer1.org2.example.com | [158 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf9fb042]sending state message INIT -peer0.org2.example.com | [115 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3855c68f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [11b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [126 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [095 01-05 06:36:24.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [159 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf9fb042]Received message INIT from shim -peer0.org2.example.com | [116 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [127 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [117 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3855c68f]sending state message INIT -orderer.example.com | [096 01-05 06:36:24.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [118 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3855c68f]Received message INIT from shim -peer1.org2.example.com | [15a 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf9fb042]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [128 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=e40eb4cc-81ce-411a-9878-5e64bac61197,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [11c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5387057b]Received INIT, initializing chaincode -peer0.org2.example.com | [119 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3855c68f]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [097 01-05 06:36:24.21 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 -peer0.org1.example.com | [129 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched -peer1.org2.example.com | [15b 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [11a 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [098 01-05 06:36:24.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [12a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [11d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org1.example.com | [12b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [15c 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bf9fb042]Received INIT, initializing chaincode -orderer.example.com | [099 01-05 06:36:24.21 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [11b 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3855c68f]Received INIT, initializing chaincode -peer0.org1.example.com | [12c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org1.example.com | [11e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5387057b]Init get response status: 200 -peer1.org2.example.com | [15d 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf9fb042]Init get response status: 200 -peer0.org1.example.com | [12d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer0.org2.example.com | [11c 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [11f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5387057b]Init succeeded. Sending COMPLETED -orderer.example.com | [09a 01-05 06:36:24.21 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.org2.example.com | [15e 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf9fb042]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [12e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [11d 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3855c68f]Init get response status: 200 -peer1.org1.example.com | [120 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5387057b]Move state message COMPLETED -orderer.example.com | [09b 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [12f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | [11e 01-05 06:36:23.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3855c68f]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [15f 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf9fb042]Move state message COMPLETED -peer1.org1.example.com | [121 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5387057b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [130 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [11f 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3855c68f]Move state message COMPLETED -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer1.org2.example.com | [160 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf9fb042]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [122 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5387057b]send state message COMPLETED -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [120 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3855c68f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [09c 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org2.example.com | [161 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf9fb042]send state message COMPLETED -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [123 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5387057b]Received message COMPLETED from shim -peer0.org2.example.com | [121 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3855c68f]send state message COMPLETED -peer1.org2.example.com | [162 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf9fb042]Received message COMPLETED from shim -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [09d 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [122 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3855c68f]Received message COMPLETED from shim -peer1.org2.example.com | [163 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bf9fb042]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [124 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5387057b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [09e 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -peer1.org2.example.com | [164 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bf9fb042-2365-4c8c-b17d-ca712954efeb]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [123 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3855c68f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [125 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5387057b-10dd-4a32-9d48-0e1fc7057729]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [165 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bf9fb042-2365-4c8c-b17d-ca712954efeb, channelID: -peer0.org1.example.com | [131 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer0.org2.example.com | [124 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3855c68f-feda-4ef9-b6b3-2b5afba191ce]HandleMessage- COMPLETED. Notify -orderer.example.com | [09f 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org1.example.com | [132 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer1.org2.example.com | [166 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [133 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -orderer.example.com | [0a0 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [125 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3855c68f-feda-4ef9-b6b3-2b5afba191ce, channelID: -peer1.org2.example.com | [167 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [134 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer1.org1.example.com | [126 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5387057b-10dd-4a32-9d48-0e1fc7057729, channelID: -orderer.example.com | [0a1 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -peer0.org2.example.com | [126 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [136 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer1.org2.example.com | [168 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=ce21f3ef-777b-4289-aaa3-a6ce96afff87,syscc=true,proposal=0x0,canname=qscc:1.1.0 -orderer.example.com | [0a2 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer0.org2.example.com | [127 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [137 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [127 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [0a3 01-05 06:36:24.22 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 -peer0.org1.example.com | [138 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer0.org2.example.com | [128 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=7d848c67-240a-4d1e-aa65-389da7780797,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [169 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -peer1.org1.example.com | [128 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [135 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -orderer.example.com | [0a4 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [139 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [129 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched -peer1.org2.example.com | [16a 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [129 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=ed8f0786-c4de-49b2-9baf-481b263a27ff,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [13a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [12a 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [0a5 01-05 06:36:24.22 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 -peer1.org2.example.com | [16b 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [13b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [12b 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [12a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched -peer1.org2.example.com | [16c 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | [0a6 01-05 06:36:24.22 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] -peer0.org1.example.com | [13c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [12c 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org1.example.com | [12b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [16d 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer0.org1.example.com | [13d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [0a7 01-05 06:36:24.22 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 -peer0.org2.example.com | [12d 01-05 06:36:23.91 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [12c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [13e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer1.org2.example.com | [16e 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -orderer.example.com | [0a8 01-05 06:36:24.22 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]} -peer0.org2.example.com | [12e 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org1.example.com | [13f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [12d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | [0a9 01-05 06:36:24.22 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] -peer1.org2.example.com | [16f 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [140 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [12f 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org1.example.com | [12e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [170 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [141 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [0aa 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) -peer0.org2.example.com | [130 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [142 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [12f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -orderer.example.com | [0ab 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer0.org1.example.com | [143 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [130 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -orderer.example.com | [0ac 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -peer0.org1.example.com | [144 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -peer1.org1.example.com | [131 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [060 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [061 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [062 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org1.example.com | [057 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 6C596B8A89F317168489F48B6D5F6E04A52EF501182F135354D8952D4A70CBE4 +peer0.org2.example.com | [061 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +peer1.org2.example.com | [049 01-13 06:14:04.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +mysql | 2018-01-13T06:14:18.139522Z 1 [Note] InnoDB: Number of pools: 1 +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer1.org1.example.com | [063 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [058 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=fa215ae3-4bb3-449e-b5fc-eee010081a4e,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer1.org2.example.com | [04a 01-13 06:14:04.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +explorer | at next (native) +mysql | 2018-01-13T06:14:18.139863Z 1 [Note] InnoDB: Using CPU crc32 instructions +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [063 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | [064 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | [04c 01-13 06:14:04.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +mysql | 2018-01-13T06:14:18.141796Z 1 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M +mysql | libnuma: Warning: /sys not mounted or invalid. Assuming one node: No such file or directory +orderer.example.com | [064 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +peer0.org1.example.com | [059 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +orderer.example.com | [065 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [04b 01-13 06:14:04.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48] peer1.org2.example.com:7051 } incTime is 1515824044661898016 +mysql | mbind: Operation not permitted +mysql | mbind: Operation not permitted +peer0.org2.example.com | [062 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +peer0.org2.example.com | [063 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +peer0.org1.example.com | [05a 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +orderer.example.com | [066 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | [04d 01-13 06:14:04.67 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 [] [136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48] peer1.org2.example.com:7051 } +mysql | 2018-01-13T06:14:18.156385Z 1 [Note] InnoDB: Completed initialization of buffer pool +mysql | 2018-01-13T06:14:18.158466Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | [067 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [05b 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [04e 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [068 01-13 06:14:05.78 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 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org2.example.com | [04f 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [051 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [050 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +mysql | 2018-01-13T06:14:18.170872Z 1 [Note] InnoDB: Using 'tablespaces.open.1' max LSN: 13791368 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | [06a 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +explorer | index: 0, +peer1.org2.example.com | [052 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [064 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +peer0.org1.example.com | [05c 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +mysql | 2018-01-13T06:14:18.171214Z 1 [Note] InnoDB: Log scan progressed past the checkpoint LSN 15050805 +peer1.org1.example.com | [065 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +orderer.example.com | [06b 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +mysql | 2018-01-13T06:14:18.171264Z 1 [Note] InnoDB: Database was not shutdown normally! +peer1.org2.example.com | [053 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [065 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started +explorer | [2018-01-13 06:14:30.124] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer1.org1.example.com | [066 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +orderer.example.com | [06c 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +mysql | 2018-01-13T06:14:18.171279Z 1 [Note] InnoDB: Starting crash recovery. +orderer.example.com | [06d 01-13 06:14:05.79 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 +peer1.org1.example.com | [067 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +peer1.org1.example.com | [069 01-13 06:14:04.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +peer1.org1.example.com | [05c 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [06a 01-13 06:14:05.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer1.org2.example.com | [054 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [055 01-13 06:14:04.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [056 01-13 06:14:04.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [06e 01-13 06:14:05.79 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 | [06f 01-13 06:14:05.79 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 | [070 01-13 06:14:05.80 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 +mysql | 2018-01-13T06:14:18.171796Z 1 [Note] InnoDB: Using 'tablespaces.open.1' max LSN: 13791368 +peer1.org1.example.com | [068 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +peer1.org1.example.com | [06b 01-13 06:14:05.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [06c 01-13 06:14:05.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [066 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [071 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP +peer0.org1.example.com | [05d 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [06e 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:18.384422Z 1 [Note] InnoDB: Doing recovery: scanned up to log sequence number 20293632 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [058 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [05e 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | [072 01-13 06:14:05.80 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 +peer1.org2.example.com | [057 01-13 06:14:04.69 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C7060A20880F8BD5A2D3CECB...455254494649434154452D2D2D2D2D0A +mysql | 2018-01-13T06:14:18.546063Z 1 [Note] InnoDB: Doing recovery: scanned up to log sequence number 25536512 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [073 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +peer0.org1.example.com | [05f 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | [067 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +peer1.org1.example.com | [06f 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +mysql | 2018-01-13T06:14:18.563670Z 1 [Note] InnoDB: Doing recovery: scanned up to log sequence number 26023850 +peer1.org2.example.com | [058 01-13 06:14:04.69 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 9959CF623DAA109D76714B210C3BD675B489833CF233FBA05D99F1A128FB59E1 +orderer.example.com | [074 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org2.example.com | [068 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [060 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | [06d 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +mysql | 2018-01-13T06:14:18.578964Z 1 [Note] InnoDB: Applying a batch of 615 redo log records ... +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [075 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers +peer1.org2.example.com | [059 01-13 06:14:04.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started +peer0.org2.example.com | [069 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [071 01-13 06:14:05.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +mysql | 2018-01-13T06:14:18.589095Z 1 [Note] InnoDB: 10% +orderer.example.com | [076 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [05a 01-13 06:14:04.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [070 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A +mysql | 2018-01-13T06:14:18.601830Z 1 [Note] InnoDB: 20% +orderer.example.com | [077 01-13 06:14:05.81 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 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [05b 01-13 06:14:04.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org2.example.com | [06a 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer1.org1.example.com | [073 01-13 06:14:05.15 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: EE10CEE339CA4E237E33CB51B4BCCE576113E011174ECA48630AB1E9A7D1BB68 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +mysql | 2018-01-13T06:14:18.619951Z 1 [Note] InnoDB: 30% +orderer.example.com | [078 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | [05c 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [072 01-13 06:14:05.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [06c 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +mysql | 2018-01-13T06:14:18.677818Z 1 [Note] InnoDB: 40% +orderer.example.com | [079 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [074 01-13 06:14:05.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [06d 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +mysql | 2018-01-13T06:14:18.688785Z 1 [Note] InnoDB: 50% +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [05d 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [076 01-13 06:14:05.21 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +mysql | 2018-01-13T06:14:18.689121Z 1 [Note] InnoDB: 60% +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [07a 01-13 06:14:05.81 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 +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [06e 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [05e 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A +mysql | 2018-01-13T06:14:18.842173Z 1 [Note] InnoDB: 70% +peer1.org1.example.com | [078 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172E9060A20AAE325831E8C76A352...DA6872F6D04FD423A415A65C04C73219 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | [07b 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [06b 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +mysql | 2018-01-13T06:14:18.956481Z 1 [Note] InnoDB: 80% +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [079 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 83778ACD2C6B0E9FB7D3EFADF1B7003115BD59EB6CD4325F3062140EF9AA5035 +peer1.org2.example.com | [05f 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 26374AAE5A8BCB10D36AFB559FE6C26514F0C8029786DB0CCD2C13B97AAAFCCC +orderer.example.com | [07c 01-13 06:14:05.81 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 +mysql | 2018-01-13T06:14:18.957579Z 1 [Note] InnoDB: 90% +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [077 01-13 06:14:05.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [06f 01-13 06:14:05.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [060 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:18.957799Z 1 [Note] InnoDB: 100% +orderer.example.com | [07d 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [075 01-13 06:14:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [061 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +mysql | 2018-01-13T06:14:19.458865Z 1 [Note] InnoDB: Apply batch completed! +orderer.example.com | [07e 01-13 06:14:05.81 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 +peer1.org1.example.com | [07a 01-13 06:14:05.22 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.3:7051 +peer0.org1.example.com | [061 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +peer1.org2.example.com | [062 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org2.example.com | [071 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +mysql | 2018-01-13T06:14:19.459307Z 1 [Note] InnoDB: Last MySQL binlog file position 0 3032502, file name mysql-bin.000001 +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [07f 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [062 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +peer1.org1.example.com | [07b 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [063 01-13 06:14:04.71 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 +mysql | 2018-01-13T06:14:19.666414Z 1 [Note] InnoDB: Opened 2 existing undo tablespaces. +peer0.org2.example.com | [072 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [080 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [07c 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [063 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +mysql | 2018-01-13T06:14:19.677859Z 1 [Note] InnoDB: Transaction 1844 was in the XA prepared state. +orderer.example.com | [081 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [070 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [07d 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +mysql | 2018-01-13T06:14:19.679423Z 1 [Note] InnoDB: 1 transaction(s) which must be rolled back or cleaned up in total 0 row operations to undo +peer1.org2.example.com | [064 01-13 06:14:04.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=c95a90a6-d4df-44e2-b6bd-a83839c46a90,syscc=true,proposal=0x0,canname=cscc:1.1.0 +orderer.example.com | [082 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [074 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [07f 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +explorer | -------------------- +mysql | 2018-01-13T06:14:19.679452Z 1 [Note] InnoDB: Trx id counter is 2304 +peer0.org1.example.com | [064 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +orderer.example.com | [083 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [075 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A +peer1.org2.example.com | [065 01-13 06:14:04.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched +mysql | 2018-01-13T06:14:19.699365Z 1 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +peer1.org1.example.com | [080 01-13 06:14:05.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\330\216\365\032\2269\273L\237YOjfQ\207/\024I\211\007\316\031\022Ud\305\274 \035p\\y" identity:"\n\007Org1MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw\nsRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0\nRxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF\n+oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk\noOWGb8BDg2Tnm3LS\n-----END CERTIFICATE-----\n" tls_cert_hash:"d\372yf\027q\247\374\217\230\362\nKG\032\263?\206\370\221\236\303d<\324\214\031\354\261$\221\242" from 172.18.0.3:7051 +orderer.example.com | [084 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [065 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org2.example.com | [076 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: A902CCEF8A891BBED93DB591EC1407F0769AD70595EB236E5BEAE400378E7484 +mysql | 2018-01-13T06:14:19.699425Z 1 [Note] InnoDB: Creating shared tablespace for temporary tables +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [066 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +orderer.example.com | [085 01-13 06:14:05.81 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 +peer0.org1.example.com | [066 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +mysql | 2018-01-13T06:14:19.699559Z 1 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +peer1.org1.example.com | [07e 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [073 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +peer1.org2.example.com | [067 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +mysql | 2018-01-13T06:14:19.764811Z 1 [Note] InnoDB: File './ibtmp1' size is now 12 MB. +orderer.example.com | [086 01-13 06:14:05.81 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.org1.example.com | [081 01-13 06:14:05.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +peer0.org1.example.com | [067 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +peer0.org2.example.com | [077 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +mysql | 2018-01-13T06:14:19.768146Z 1 [Note] InnoDB: Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org1.example.com | [082 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [068 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | [087 01-13 06:14:05.82 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 +mysql | 2018-01-13T06:14:19.769636Z 1 [Note] InnoDB: 8.0.3 started; log sequence number 26023850 +peer0.org2.example.com | [078 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [068 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [083 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [069 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +mysql | 2018-01-13T06:14:19.882181Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +orderer.example.com | [088 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [079 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [069 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [084 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [06a 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +mysql | 2018-01-13T06:14:19.886926Z 0 [Note] InnoDB: Buffer pool(s) load completed at 180113 6:14:19 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [089 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums +peer0.org2.example.com | [07a 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [085 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [06b 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [06a 01-13 06:14:04.76 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [08a 01-13 06:14:05.82 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 +mysql | 2018-01-13T06:14:19.953995Z 1 [Note] Found data dictionary with version 1 +peer0.org2.example.com | [07b 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [06c 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A +peer1.org1.example.com | [086 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [06b 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | [08b 01-13 06:14:05.82 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 +mysql | 2018-01-13T06:14:20.027844Z 0 [Note] Recovering after a crash using mysql-bin +peer0.org2.example.com | [07c 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed +peer0.org1.example.com | [06d 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 833019F6EF1AA53B37313D45CD81E1A4B2F0CCF9B83E3F5183FD4143D2B2F1A6 +peer1.org2.example.com | [06c 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | [087 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed +mysql | 2018-01-13T06:14:20.069282Z 0 [Note] Starting crash recovery... +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [08c 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +peer0.org2.example.com | [07d 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [06e 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer1.org1.example.com | [088 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +mysql | 2018-01-13T06:14:20.071895Z 0 [Note] InnoDB: Starting recovery for XA transactions... +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 +orderer.example.com | [08d 01-13 06:14:05.83 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 +peer0.org2.example.com | [07e 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [06f 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [089 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +mysql | 2018-01-13T06:14:20.072057Z 0 [Note] InnoDB: Transaction 1844 in prepared state after recovery peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0ad 01-05 06:36:24.22 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 -peer0.org1.example.com | [145 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [08e 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +peer0.org2.example.com | [07f 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccafc302]Move state message READY +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +mysql | 2018-01-13T06:14:20.072098Z 0 [Note] InnoDB: Transaction contains changes to 1 rows +peer1.org1.example.com | [08a 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48dcf0b7]Move state message READY +peer0.org1.example.com | [070 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +peer0.org2.example.com | [080 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [0ae 01-05 06:36:24.22 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] -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [146 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [0af 01-05 06:36:24.22 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 | [08f 01-13 06:14:05.83 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 +mysql | 2018-01-13T06:14:20.072181Z 0 [Note] InnoDB: 1 transactions in prepared state after recovery +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [08b 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48dcf0b7]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [081 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ccafc302]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [071 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [090 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [0b0 01-05 06:36:24.22 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]} -peer0.org1.example.com | [147 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]Move state message READY -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +mysql | 2018-01-13T06:14:20.072254Z 0 [Note] Found 1 prepared transaction(s) in InnoDB +peer1.org1.example.com | [08c 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [48dcf0b7]Entered state ready +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [082 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [0b1 01-05 06:36:24.22 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] -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [148 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | [091 01-13 06:14:05.83 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 +mysql | 2018-01-13T06:14:20.076818Z 0 [Note] Crash recovery finished. +peer0.org1.example.com | [072 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [08d 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:48dcf0b7-a8b3-490a-8ca2-d756a93d1873, channelID: +mysql | 2018-01-13T06:14:20.079000Z 0 [Note] InnoDB: DDL log recovery : begin +peer0.org2.example.com | [083 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ccafc302]Entered state ready +orderer.example.com | [092 01-13 06:14:05.83 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 +peer0.org1.example.com | [073 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0b2 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 92b0e5ce4a402eff0f90962ecd60602e071563cdda442861428d7cd40488c335 and orderer type solo -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [149 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e40eb4cc]Entered state ready -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [08e 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48dcf0b7]sending state message READY +mysql | 2018-01-13T06:14:20.079269Z 0 [Note] InnoDB: DDL log recovery : end +orderer.example.com | [093 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +peer0.org2.example.com | [084 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org1.example.com | [074 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [0b3 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [14a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e40eb4cc-81ce-411a-9878-5e64bac61197, channelID: +peer1.org1.example.com | [090 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48dcf0b7]Received message READY from shim +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | [094 01-13 06:14:05.83 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 +mysql | 2018-01-13T06:14:20.079527Z 0 [Note] InnoDB: Waiting for purge to start peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | CORE_CHAINCODE_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_LOGGING_LEVEL=info +peer0.org2.example.com | [086 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 +peer1.org1.example.com | [091 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48dcf0b7]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [075 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +orderer.example.com | [095 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +peer1.org2.example.com | [06d 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +mysql | 2018-01-13T06:14:20.136385Z 0 [Warning] You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation. +peer0.org2.example.com | [085 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ccafc302-e8d6-4d90-bc9b-9c585591ed14, channelID: +peer1.org1.example.com | [08f 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | [076 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +mysql | 2018-01-13T06:14:20.158397Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +peer1.org1.example.com | [092 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | [096 01-13 06:14:05.83 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 +peer1.org2.example.com | [06e 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +peer0.org1.example.com | [077 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [097 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [093 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [087 01-13 06:14:05.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccafc302]sending state message READY +peer1.org2.example.com | [06f 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +mysql | 2018-01-13T06:14:20.159403Z 0 [Warning] CA certificate ca.pem is self signed. +explorer | errno: 1146, +peer0.org1.example.com | [078 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [098 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [094 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [088 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccafc302]Received message READY from shim +mysql | 2018-01-13T06:14:20.161704Z 0 [Note] Server hostname (bind-address): '*'; port: 3306 +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [071 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +orderer.example.com | [099 01-13 06:14:05.83 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 +peer0.org1.example.com | [079 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [089 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ccafc302]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [095 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +mysql | 2018-01-13T06:14:20.161968Z 0 [Note] IPv6 is available. +explorer | sqlState: '42S02', +peer1.org2.example.com | [072 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [07a 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [09a 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [096 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [08a 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +explorer | index: 0, +mysql | 2018-01-13T06:14:20.162023Z 0 [Note] - '::' resolves to '::'; +peer0.org1.example.com | [07b 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed +orderer.example.com | [09b 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [097 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [48dcf0b7]Inside sendExecuteMessage. Message INIT +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [073 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +peer0.org2.example.com | [08b 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +mysql | 2018-01-13T06:14:20.162113Z 0 [Note] Server socket created on IP: '::'. +peer1.org1.example.com | [098 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | [2018-01-13 06:14:30.454] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | [09c 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [074 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [08c 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [099 01-13 06:14:05.27 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [07c 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +mysql | 2018-01-13T06:14:20.187126Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode. +orderer.example.com | [09d 01-13 06:14:05.84 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 +peer1.org2.example.com | [075 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [08d 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +mysql | 2018-01-13T06:14:20.187488Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [07d 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [076 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [09e 01-13 06:14:05.84 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +mysql | 2018-01-13T06:14:20.187736Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode. +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [08e 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ccafc302]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [07e 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +mysql | 2018-01-13T06:14:20.187987Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer1.org2.example.com | [077 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [09f 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [08f 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer0.org1.example.com | [080 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [078 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [0a0 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +mysql | 2018-01-13T06:14:20.188181Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode. +peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [090 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ccafc302]sendExecuteMsg trigger event INIT +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | [0a1 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [07f 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]Move state message READY +mysql | 2018-01-13T06:14:20.204844Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode. +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw +peer1.org2.example.com | [079 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [091 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccafc302]Move state message INIT +orderer.example.com | [0a2 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD +peer1.org2.example.com | [07a 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +mysql | 2018-01-13T06:14:20.214051Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode. +peer0.org1.example.com | [082 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [092 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ccafc302]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 +orderer.example.com | [0a3 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer1.org2.example.com | [07b 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [081 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +mysql | 2018-01-13T06:14:20.249935Z 4 [Note] Event Scheduler: scheduler thread started with id 4 +peer1.org1.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +peer0.org2.example.com | [093 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk +peer1.org2.example.com | [07c 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [084 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +mysql | 2018-01-13T06:14:20.253709Z 0 [Note] /usr/sbin/mysqld: ready for connections. Version: '8.0.3-rc-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server (GPL) +peer0.org2.example.com | [094 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccafc302]sending state message INIT +orderer.example.com | [0a4 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | oOWGb8BDg2Tnm3LS +peer1.org2.example.com | [07d 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | -------------------- +orderer.example.com | [0a5 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +peer0.org1.example.com | [083 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fa215ae3]Entered state ready +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [095 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccafc302]Received message INIT from shim +peer1.org2.example.com | [07e 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [09a 01-13 06:14:05.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [48dcf0b7]sendExecuteMsg trigger event INIT +orderer.example.com | [0a6 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer0.org1.example.com | [086 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fa215ae3-4bb3-449e-b5fc-eee010081a4e, channelID: +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [096 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ccafc302]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [09b 01-13 06:14:05.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48dcf0b7]Move state message INIT +peer1.org2.example.com | [07f 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [085 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +orderer.example.com | [0a7 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer1.org1.example.com | [09c 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48dcf0b7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [097 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [080 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed +orderer.example.com | [0a8 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [087 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]sending state message READY +peer1.org1.example.com | [09d 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [098 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ccafc302]Received INIT, initializing chaincode +peer1.org1.example.com | [09e 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48dcf0b7]sending state message INIT +peer1.org2.example.com | [081 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [0a9 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer0.org1.example.com | [088 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Received message READY from shim +peer1.org1.example.com | [09f 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48dcf0b7]Received message INIT from shim +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [099 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | [0aa 01-13 06:14:05.84 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] +peer0.org1.example.com | [089 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa215ae3]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0a0 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48dcf0b7]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at next (native) +peer0.org2.example.com | [09a 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [082 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [0ab 01-13 06:14:05.84 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 +peer1.org1.example.com | [0a1 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org1.example.com | [08a 01-13 06:14:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [09b 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccafc302]Init get response status: 200 +orderer.example.com | [0ac 01-13 06:14:05.84 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]} +peer1.org1.example.com | [0a2 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [48dcf0b7]Received INIT, initializing chaincode +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org2.example.com | [083 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c95a90a6]Move state message READY +peer0.org1.example.com | [08b 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [0a3 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | [0ad 01-13 06:14:05.84 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] +peer0.org2.example.com | [09c 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccafc302]Init succeeded. Sending COMPLETED +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [084 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c95a90a6]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0a4 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [08c 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [0ae 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) +peer0.org2.example.com | [09d 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccafc302]Move state message COMPLETED +peer1.org2.example.com | [085 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c95a90a6]Entered state ready +peer0.org1.example.com | [08d 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [0af 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources +peer1.org1.example.com | [0a5 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [09e 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ccafc302]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [08e 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa215ae3]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [086 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c95a90a6-d4df-44e2-b6bd-a83839c46a90, channelID: +explorer | errno: 1146, +orderer.example.com | [0b0 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid +peer1.org1.example.com | [0a6 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [09f 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ccafc302]send state message COMPLETED +peer0.org1.example.com | [08f 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [0b1 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer1.org2.example.com | [087 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c95a90a6]sending state message READY +explorer | sqlState: '42S02', +peer0.org2.example.com | [0a0 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ccafc302]Received message COMPLETED from shim +peer0.org1.example.com | [090 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa215ae3]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0a7 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [088 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c95a90a6]Received message READY from shim +orderer.example.com | [0b2 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [0a1 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ccafc302]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | index: 0, +peer1.org1.example.com | [0a9 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [091 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]Move state message INIT +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | [0b3 01-13 06:14:05.85 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 +peer0.org2.example.com | [0a2 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ccafc302-e8d6-4d90-bc9b-9c585591ed14]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [0aa 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [089 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c95a90a6]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [092 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | [2018-01-13 06:14:31.174] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | [0b4 01-13 06:14:05.85 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]} +peer0.org2.example.com | [0a3 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ccafc302-e8d6-4d90-bc9b-9c585591ed14, channelID: +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [08a 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [093 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0ab 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func2.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [0b5 01-13 06:14:05.85 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] +peer1.org2.example.com | [08b 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0a4 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [0a8 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48dcf0b7]Init get response status: 200 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [0b6 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 92b0e5ce4a402eff0f90962ecd60602e071563cdda442861428d7cd40488c335 and orderer type solo +peer0.org1.example.com | [094 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]sending state message INIT +peer0.org2.example.com | [0a5 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [08c 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [0ac 01-13 06:14:05.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48dcf0b7]Init succeeded. Sending COMPLETED +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [08d 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +orderer.example.com | [0b7 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +peer0.org1.example.com | [095 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Received message INIT from shim +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [0a6 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=93228d72-e788-40e5-b86b-4ecee28a7427,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer1.org1.example.com | [0ad 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48dcf0b7]Move state message COMPLETED orderer.example.com | Version: 1.1.0 -peer0.org1.example.com | [14b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]sending state message READY -peer1.org2.example.com | [171 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org2.example.com | [131 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer1.org2.example.com | [172 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [14c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Received message READY from shim -peer0.org2.example.com | [132 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [08e 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c95a90a6]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0a7 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched +peer0.org1.example.com | [096 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa215ae3]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0ae 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48dcf0b7]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | Go version: go1.9.2 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [173 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer0.org1.example.com | [14e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40eb4cc]Handling ChaincodeMessage of type: READY(state:established) +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [08f 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [097 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at Socket.emit (events.js:188:7) orderer.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | [133 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer1.org2.example.com | [174 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org1.example.com | [132 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer0.org1.example.com | [14d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [134 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +peer0.org2.example.com | [0a8 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [0af 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48dcf0b7]send state message COMPLETED +peer0.org1.example.com | [098 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fa215ae3]Received INIT, initializing chaincode +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [090 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c95a90a6]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0a9 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] orderer.example.com | Experimental features: false -peer0.org1.example.com | [14f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [133 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer1.org2.example.com | [176 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -orderer.example.com | [0b4 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -peer0.org2.example.com | [135 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer1.org1.example.com | [134 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -peer1.org2.example.com | [177 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [150 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [0b5 01-05 06:36:26.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org2.example.com | [137 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [178 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer0.org1.example.com | [151 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [0b6 01-05 06:36:26.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:44080 -peer1.org1.example.com | [135 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer1.org2.example.com | [179 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [136 01-05 06:36:23.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer0.org1.example.com | [152 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e40eb4cc]Inside sendExecuteMessage. Message INIT -orderer.example.com | [0b7 01-05 06:36:26.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:44080 -peer1.org1.example.com | [136 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer0.org1.example.com | [153 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [138 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [175 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -orderer.example.com | [0b8 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [154 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e40eb4cc]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [137 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [139 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -orderer.example.com | [0b9 01-05 06:36:26.50 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:44082 -peer1.org2.example.com | [17a 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [155 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]Move state message INIT -peer1.org1.example.com | [138 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer0.org2.example.com | [13a 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0ba 01-05 06:36:26.50 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:44082 -peer0.org1.example.com | [156 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [17b 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [13b 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [0bb 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel -peer1.org1.example.com | [139 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [157 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [17c 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [13c 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [158 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]sending state message INIT -orderer.example.com | [0bc 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid -peer1.org1.example.com | [13a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer0.org2.example.com | [13d 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [159 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Received message INIT from shim -peer1.org2.example.com | [17d 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [0bd 01-05 06:36:26.50 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 | [13e 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer1.org1.example.com | [13b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [15a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40eb4cc]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0be 01-05 06:36:26.50 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 | [13f 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [17e 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer0.org1.example.com | [15b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [13c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [140 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [17f 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -orderer.example.com | [0bf 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [15c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e40eb4cc]Received INIT, initializing chaincode -peer0.org2.example.com | [141 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [13d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [15d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Init get response status: 200 -orderer.example.com | [0c0 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [181 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [142 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -peer0.org1.example.com | [15e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [13e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [0c1 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [182 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [143 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [15f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Move state message COMPLETED -orderer.example.com | [0c2 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [13f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer1.org2.example.com | [183 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [160 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40eb4cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [145 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [140 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -orderer.example.com | [0c3 01-05 06:36:26.50 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 | [180 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [161 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]send state message COMPLETED -peer0.org2.example.com | [144 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [0c4 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [141 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [162 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]Received message COMPLETED from shim -peer1.org2.example.com | [184 01-05 06:36:24.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -orderer.example.com | [0c5 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [146 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [163 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [185 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [142 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [0c6 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [147 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7d848c67]Move state message READY -peer0.org1.example.com | [164 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc-81ce-411a-9878-5e64bac61197]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [186 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [0c7 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [148 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7d848c67]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [187 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce21f3ef]Move state message READY -peer0.org1.example.com | [165 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e40eb4cc-81ce-411a-9878-5e64bac61197, channelID: -peer1.org1.example.com | [143 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [0c8 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [149 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7d848c67]Entered state ready -peer1.org2.example.com | [188 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce21f3ef]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [0c9 01-05 06:36:26.50 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 | [166 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [144 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [0ca 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [14a 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7d848c67-240a-4d1e-aa65-389da7780797, channelID: -peer1.org2.example.com | [189 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ce21f3ef]Entered state ready -peer0.org1.example.com | [167 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org1.example.com | [145 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -orderer.example.com | [0cb 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [14b 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7d848c67]sending state message READY -peer0.org1.example.com | [168 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=170abde0-28db-47ea-9e59-f7792c88a556,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org1.example.com | [146 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [18a 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ce21f3ef-777b-4289-aaa3-a6ce96afff87, channelID: -orderer.example.com | [0cc 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [147 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [169 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -peer1.org2.example.com | [18b 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce21f3ef]sending state message READY -orderer.example.com | [0cd 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [14d 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [148 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ed8f0786]Move state message READY -peer0.org1.example.com | [16a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [18c 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce21f3ef]Received message READY from shim -orderer.example.com | [0ce 01-05 06:36:26.50 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.org1.example.com | [149 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ed8f0786]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [14e 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [18d 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce21f3ef]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [16b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | [0cf 01-05 06:36:26.50 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 | [18e 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [16c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | [0d0 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [14c 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7d848c67]Received message READY from shim -peer1.org1.example.com | [14a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ed8f0786]Entered state ready -peer1.org2.example.com | [18f 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [14f 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7d848c67]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [16d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [190 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [14b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ed8f0786-c4de-49b2-9baf-481b263a27ff, channelID: -peer1.org2.example.com | [191 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org2.example.com | [150 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [16e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [14c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ed8f0786]sending state message READY -peer1.org2.example.com | [192 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ce21f3ef]Inside sendExecuteMessage. Message INIT -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [151 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [16f 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org2.example.com | [193 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [14d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed8f0786]Received message READY from shim -peer0.org2.example.com | [152 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7d848c67]Inside sendExecuteMessage. Message INIT -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org2.example.com | [194 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ce21f3ef]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [170 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [153 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org2.example.com | [195 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce21f3ef]Move state message INIT -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer1.org2.example.com | [196 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce21f3ef]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [154 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7d848c67]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [14e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ed8f0786]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org2.example.com | [197 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [155 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7d848c67]Move state message INIT -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org2.example.com | [198 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce21f3ef]sending state message INIT -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org2.example.com | [156 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7d848c67]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [14f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [199 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce21f3ef]Received message INIT from shim -peer1.org1.example.com | [150 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [157 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [19a 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce21f3ef]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0d1 01-05 06:36:26.50 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----- -peer1.org1.example.com | [151 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [19b 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [158 01-05 06:36:23.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7d848c67]sending state message INIT -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [152 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [19c 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ce21f3ef]Received INIT, initializing chaincode -peer0.org2.example.com | [159 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7d848c67]Received message INIT from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [153 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ed8f0786]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [19d 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [15a 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7d848c67]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [154 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [19e 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce21f3ef]Init get response status: 200 -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer1.org2.example.com | [19f 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce21f3ef]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [155 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ed8f0786]sendExecuteMsg trigger event INIT -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [15b 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [1a0 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce21f3ef]Move state message COMPLETED -peer1.org1.example.com | [156 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ed8f0786]Move state message INIT -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [15c 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7d848c67]Received INIT, initializing chaincode -peer1.org2.example.com | [1a1 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce21f3ef]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [157 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ed8f0786]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [15d 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7d848c67]Init get response status: 200 -peer1.org2.example.com | [1a2 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce21f3ef]send state message COMPLETED -peer1.org1.example.com | [158 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [1a3 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce21f3ef]Received message COMPLETED from shim -peer0.org1.example.com | [171 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org2.example.com | [15e 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7d848c67]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [159 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ed8f0786]sending state message INIT -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org2.example.com | [1a4 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce21f3ef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [172 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org1.example.com | [15a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed8f0786]Received message INIT from shim -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org2.example.com | [1a5 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ce21f3ef-777b-4289-aaa3-a6ce96afff87]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [15f 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7d848c67]Move state message COMPLETED -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org2.example.com | [1a6 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ce21f3ef-777b-4289-aaa3-a6ce96afff87, channelID: -peer0.org2.example.com | [160 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7d848c67]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [173 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer1.org1.example.com | [15b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ed8f0786]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1a7 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [174 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org1.example.com | [15c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1a8 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -orderer.example.com | [0d2 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [161 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7d848c67]send state message COMPLETED -peer0.org1.example.com | [175 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -orderer.example.com | [0d3 01-05 06:36:26.50 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.org2.example.com | [1a9 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org1.example.com | [176 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [15d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ed8f0786]Received INIT, initializing chaincode -orderer.example.com | [0d4 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [162 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7d848c67]Received message COMPLETED from shim -peer1.org2.example.com | [1aa 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org1.example.com | [15e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed8f0786]Init get response status: 200 -orderer.example.com | [0d5 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [177 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer1.org1.example.com | [15f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed8f0786]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1ab 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -orderer.example.com | [0d6 01-05 06:36:26.50 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 | [163 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7d848c67]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [160 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed8f0786]Move state message COMPLETED -peer1.org2.example.com | [1ac 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer0.org1.example.com | [178 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | [0d7 01-05 06:36:26.50 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 | [161 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ed8f0786]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [179 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer0.org2.example.com | [164 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7d848c67-240a-4d1e-aa65-389da7780797]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1ad 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -orderer.example.com | [0d8 01-05 06:36:26.50 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 | [162 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed8f0786]send state message COMPLETED -peer0.org1.example.com | [17a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [1ae 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -orderer.example.com | [0d9 01-05 06:36:26.50 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 | [165 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7d848c67-240a-4d1e-aa65-389da7780797, channelID: -peer0.org1.example.com | [17b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [163 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ed8f0786]Received message COMPLETED from shim -orderer.example.com | [0da 01-05 06:36:26.50 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 | [166 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [164 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ed8f0786]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1af 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer0.org1.example.com | [17c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [165 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ed8f0786-c4de-49b2-9baf-481b263a27ff]HandleMessage- COMPLETED. Notify -orderer.example.com | [0db 01-05 06:36:26.50 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 | [167 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [17d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [1b0 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org1.example.com | [166 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ed8f0786-c4de-49b2-9baf-481b263a27ff, channelID: -peer1.org1.example.com | [167 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [17e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -orderer.example.com | [0dc 01-05 06:36:26.50 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 | [168 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=e12a6312-65ac-43de-b9d6-c1c6c29fa7e1,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [1b1 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org1.example.com | [168 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [169 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -peer0.org1.example.com | [17f 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -orderer.example.com | [0dd 01-05 06:36:26.50 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 -peer1.org1.example.com | [169 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=28cb8f99-1238-4301-958d-887caf324c70,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org2.example.com | [16a 01-05 06:36:23.95 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [1b2 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org1.example.com | [180 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [16a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -orderer.example.com | [0de 01-05 06:36:26.50 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 | [16b 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [1b3 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org1.example.com | [16b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [181 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [16c 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [182 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [16c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [16d 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [1b4 01-05 06:36:24.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer0.org1.example.com | [183 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [16d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [1b5 01-05 06:36:24.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.org2.example.com | [16e 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org1.example.com | [184 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -peer1.org1.example.com | [16e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org2.example.com | [16f 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | [1b6 01-05 06:36:24.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' -peer1.org1.example.com | [16f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [185 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [170 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [1b7 01-05 06:36:24.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' -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [186 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [170 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer1.org2.example.com | [1b8 01-05 06:36:24.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 | [187 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]Move state message READY +peer0.org1.example.com | [099 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [0aa 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [0b0 01-13 06:14:05.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48dcf0b7]Received message COMPLETED from shim +peer1.org2.example.com | [091 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c95a90a6]Move state message INIT +peer0.org1.example.com | [09a 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +explorer | -------------------- +peer0.org2.example.com | [0ab 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +orderer.example.com | [0b8 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests +peer0.org1.example.com | [09b 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Init get response status: 200 +peer1.org1.example.com | [0b1 01-13 06:14:05.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48dcf0b7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [0ac 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | [092 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c95a90a6]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [09c 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0b2 01-13 06:14:05.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48dcf0b7-a8b3-490a-8ca2-d756a93d1873]HandleMessage- COMPLETED. Notify +orderer.example.com | [0b9 01-13 06:14:10.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [0ad 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org1.example.com | [09d 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Move state message COMPLETED +peer1.org2.example.com | [093 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org1.example.com | [0b3 01-13 06:14:05.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48dcf0b7-a8b3-490a-8ca2-d756a93d1873, channelID: +orderer.example.com | [0ba 01-13 06:14:10.11 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50070 +peer0.org2.example.com | [0ae 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [09e 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa215ae3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [094 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c95a90a6]sending state message INIT +orderer.example.com | [0bb 01-13 06:14:10.11 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50070 +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 +peer1.org1.example.com | [0b5 01-13 06:14:05.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [09f 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]send state message COMPLETED +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [095 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c95a90a6]Received message INIT from shim +orderer.example.com | [0bc 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [1b9 01-05 06:36:24.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 | [188 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [1ba 01-05 06:36:24.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' -peer1.org1.example.com | [171 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [0a0 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]Received message COMPLETED from shim +peer1.org1.example.com | [0b6 01-13 06:14:05.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | [0bd 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50072 +peer1.org2.example.com | [096 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c95a90a6]Handling ChaincodeMessage of type: INIT(state:ready) peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [189 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [170abde0]Entered state ready -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer1.org2.example.com | [1bb 01-05 06:36:24.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 | [0a1 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0be 01-13 06:14:10.12 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.8:50072 peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org1.example.com | [18a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:170abde0-28db-47ea-9e59-f7792c88a556, channelID: -peer1.org2.example.com | [1bc 01-05 06:36:24.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' -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [097 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [0b7 01-13 06:14:05.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=d50014c3-24be-4a2f-b531-476ca1742d4f,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer0.org1.example.com | [0a2 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3-4bb3-449e-b5fc-eee010081a4e]HandleMessage- COMPLETED. Notify +orderer.example.com | [0bf 01-13 06:14:10.12 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 peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [18b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]sending state message READY -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [1bd 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:55166 -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org1.example.com | [18c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Received message READY from shim +peer0.org1.example.com | [0a3 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fa215ae3-4bb3-449e-b5fc-eee010081a4e, channelID: +peer1.org1.example.com | [0b8 01-13 06:14:05.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [0c0 01-13 06:14:10.12 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.org1.example.com | [0a4 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [18d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [170abde0]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1be 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a66a20 -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer1.org2.example.com | [098 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c95a90a6]Received INIT, initializing chaincode +peer0.org1.example.com | [0a5 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [0b9 01-13 06:14:05.36 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +orderer.example.com | [0c1 01-13 06:14:10.12 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 | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org2.example.com | [1bf 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [18e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [099 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [0a6 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=3988aa4e-89e9-4220-902c-b5627c306230,syscc=true,proposal=0x0,canname=lscc:1.1.0 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | [0b4 01-13 06:14:05.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func2.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [0c2 01-13 06:14:10.12 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 | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [171 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org1.example.com | [18f 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [1c0 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [172 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [1c1 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org1.example.com | [190 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [0df 01-05 06:36:26.51 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.org2.example.com | [173 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer0.org1.example.com | [191 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org1.example.com | [172 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer1.org2.example.com | [1c2 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [174 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org1.example.com | [173 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer0.org1.example.com | [192 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [170abde0]Inside sendExecuteMessage. Message INIT -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [1c3 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [174 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer0.org2.example.com | [175 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -peer0.org1.example.com | [193 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [1c4 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a12730, header 0xc421a66ab0 -peer1.org1.example.com | [175 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org1.example.com | [176 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -peer1.org1.example.com | [177 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [178 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer1.org1.example.com | [179 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [194 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [170abde0]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [176 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org1.example.com | [17a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer1.org2.example.com | [1c5 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [195 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]Move state message INIT -peer0.org2.example.com | [177 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer1.org1.example.com | [17b 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [178 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [1c6 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 71d4aea40c5538129cbcdbef2e14a097f311319d097ccebf21e1f6858e9a77cd -peer0.org1.example.com | [196 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [17c 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [179 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer1.org2.example.com | [1c7 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 71d4aea40c5538129cbcdbef2e14a097f311319d097ccebf21e1f6858e9a77cd channel id: -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [197 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [17a 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [1c8 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 71d4aea40c5538129cbcdbef2e14a097f311319d097ccebf21e1f6858e9a77cd channel id: version: 1.1.0 -peer1.org1.example.com | [17d 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer1.org2.example.com | [1c9 01-05 06:36:27.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=71d4aea40c5538129cbcdbef2e14a097f311319d097ccebf21e1f6858e9a77cd,syscc=true,proposal=0xc421a12730,canname=cscc:1.1.0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org2.example.com | [1ca 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org2.example.com | [17b 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [17e 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [198 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]sending state message INIT -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer1.org2.example.com | [1cb 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [17c 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer1.org1.example.com | [17f 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer0.org1.example.com | [199 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Received message INIT from shim -peer0.org2.example.com | [17d 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [1cc 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org1.example.com | [19a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [170abde0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [180 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [17e 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer1.org2.example.com | [1cd 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71d4aea4]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [19b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [17f 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [1ce 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [181 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [180 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [19c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [170abde0]Received INIT, initializing chaincode -peer1.org2.example.com | [1cf 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [0e0 01-05 06:36:26.51 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 -peer1.org1.example.com | [182 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [181 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [19d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [1d0 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71d4aea4]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [19e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Init get response status: 200 -peer0.org2.example.com | [182 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [0e1 01-05 06:36:26.51 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 | [183 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [183 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [19f 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1d1 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71d4aea4]Move state message TRANSACTION -orderer.example.com | [0e2 01-05 06:36:26.51 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 | [184 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [1d2 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71d4aea4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [1a0 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Move state message COMPLETED -peer0.org2.example.com | [184 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -peer1.org1.example.com | [185 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -orderer.example.com | [0e3 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [1d3 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [185 01-05 06:36:23.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [1a1 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [170abde0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [0e4 01-05 06:36:26.51 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 | [186 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [1d4 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71d4aea4]sending state message TRANSACTION -orderer.example.com | [0e5 01-05 06:36:26.51 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.org1.example.com | [1a2 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]send state message COMPLETED -peer0.org2.example.com | [186 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [187 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1d5 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71d4aea4]Received message TRANSACTION from shim -orderer.example.com | [0e6 01-05 06:36:26.51 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 | [187 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e12a6312]Move state message READY -peer1.org1.example.com | [188 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [28cb8f99]Move state message READY -peer1.org2.example.com | [1d6 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71d4aea4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [1a3 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]Received message COMPLETED from shim -orderer.example.com | [0e7 01-05 06:36:26.51 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 | [188 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e12a6312]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [189 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [28cb8f99]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [1a4 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1d7 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [71d4aea4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [189 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e12a6312]Entered state ready -peer0.org1.example.com | [1a5 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0-28db-47ea-9e59-f7792c88a556]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [18a 01-05 06:36:24.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [28cb8f99]Entered state ready -peer1.org2.example.com | [1d8 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | [0e8 01-05 06:36:26.51 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 | [18a 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e12a6312-65ac-43de-b9d6-c1c6c29fa7e1, channelID: -peer0.org1.example.com | [1a6 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:170abde0-28db-47ea-9e59-f7792c88a556, channelID: -orderer.example.com | [0e9 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org1.example.com | [18b 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:28cb8f99-1238-4301-958d-887caf324c70, channelID: -peer1.org2.example.com | [1d9 01-05 06:36:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [18c 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [18c 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [28cb8f99]sending state message READY -peer0.org1.example.com | [1a7 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [0ea 01-05 06:36:26.51 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 | [18d 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [1da 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [1a8 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [18d 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28cb8f99]Received message READY from shim -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [1a9 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org2.example.com | [18e 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [18e 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28cb8f99]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1db 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer0.org2.example.com | [18f 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org1.example.com | [1aa 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org2.example.com | [1dc 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org2.example.com | [190 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e12a6312]Inside sendExecuteMessage. Message INIT -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [18f 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [191 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [1ab 01-05 06:36:22.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer1.org2.example.com | [1dd 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org2.example.com | [192 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e12a6312]sendExecuteMsg trigger event INIT -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [190 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [18b 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e12a6312]sending state message READY -peer0.org1.example.com | [1ac 01-05 06:36:22.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer1.org2.example.com | [1de 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org2.example.com | [194 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e12a6312]Received message READY from shim -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [1df 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org1.example.com | [191 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [1ad 01-05 06:36:22.62 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 | [1e0 01-05 06:36:27.75 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 | [193 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e12a6312]Move state message INIT -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [1ae 01-05 06:36:22.62 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 | [1e1 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org2.example.com | [195 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e12a6312]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [192 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org1.example.com | [1af 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1e2 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org2.example.com | [196 01-05 06:36:23.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e12a6312]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [193 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [28cb8f99]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [1b0 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1e3 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [197 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [1b1 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1e4 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421b15700)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org2.example.com | [198 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e12a6312]sending state message INIT -peer1.org1.example.com | [194 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [1e5 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org2.example.com | [199 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e12a6312]Received message INIT from shim -peer0.org1.example.com | [1b2 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1e6 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org2.example.com | [19a 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e12a6312]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [1b3 01-05 06:36:22.62 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 | [1e7 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer1.org1.example.com | [195 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [28cb8f99]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [19b 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [1b4 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org1.example.com | [196 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [28cb8f99]Move state message INIT -peer0.org2.example.com | [19c 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e12a6312]Received INIT, initializing chaincode -peer1.org2.example.com | [1e8 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer0.org2.example.com | [19d 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [1b5 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer1.org2.example.com | [1e9 01-05 06:36:27.75 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 | [197 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [28cb8f99]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [19e 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e12a6312]Init get response status: 200 -peer0.org1.example.com | [1b6 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1ea 01-05 06:36:27.75 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] -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org2.example.com | [19f 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e12a6312]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1b7 01-05 06:36:22.62 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 | [1eb 01-05 06:36:27.75 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 | [198 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1a0 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e12a6312]Move state message COMPLETED -peer0.org1.example.com | [1b8 01-05 06:36:22.67 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 | [1ec 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | oQmWQsjpiQ== -peer1.org1.example.com | [199 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [28cb8f99]sending state message INIT -peer0.org1.example.com | [1b9 01-05 06:36:22.67 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 | [1ed 01-05 06:36:27.75 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 | [1a1 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e12a6312]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [1ba 01-05 06:36:22.68 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 | [1ee 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [1a2 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e12a6312]send state message COMPLETED -peer0.org1.example.com | [1bb 01-05 06:36:22.68 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 | [19a 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28cb8f99]Received message INIT from shim -peer0.org2.example.com | [1a3 01-05 06:36:23.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e12a6312]Received message COMPLETED from shim -peer0.org1.example.com | [1bc 01-05 06:36:22.68 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 | [1ef 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -orderer.example.com | [0eb 01-05 06:36:26.51 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.org2.example.com | [1a4 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e12a6312]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1bd 01-05 06:36:27.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37106 -peer1.org1.example.com | [19b 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28cb8f99]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1a5 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e12a6312-65ac-43de-b9d6-c1c6c29fa7e1]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1f0 01-05 06:36:27.75 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 | [1be 01-05 06:36:27.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420258960 -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [1a6 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e12a6312-65ac-43de-b9d6-c1c6c29fa7e1, channelID: -peer1.org1.example.com | [19c 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1f1 01-05 06:36:27.75 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 | [1bf 01-05 06:36:27.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [1a7 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [19d 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [28cb8f99]Received INIT, initializing chaincode -peer0.org1.example.com | [1c0 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [1a8 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [1c1 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org2.example.com | [1f2 01-05 06:36:27.75 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 | [19e 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [1a9 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org1.example.com | [1c2 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [1aa 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org2.example.com | [1f3 01-05 06:36:27.75 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 | [19f 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28cb8f99]Init get response status: 200 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [1c3 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [1ab 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer1.org2.example.com | [1f4 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [1c4 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420149680, header 0xc420258ae0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [1a0 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28cb8f99]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1f5 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [1ac 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org1.example.com | [1c5 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [1a1 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28cb8f99]Move state message COMPLETED -peer1.org2.example.com | [1f6 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [1c6 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org2.example.com | [1ad 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1f7 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [1c7 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0 channel id: -peer1.org1.example.com | [1a2 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28cb8f99]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [1ae 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1f8 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [1c8 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0 channel id: version: 1.1.0 -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [1af 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org1.example.com | [1a3 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28cb8f99]send state message COMPLETED -peer1.org2.example.com | [1f9 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [1c9 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0,syscc=true,proposal=0xc420149680,canname=cscc:1.1.0 -peer1.org1.example.com | [1a4 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [28cb8f99]Received message COMPLETED from shim -peer1.org2.example.com | [1fa 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [1ca 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org2.example.com | [1b0 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1fb 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [1a5 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [28cb8f99]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1cb 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [1fc 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [1b1 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1cc 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org2.example.com | [1fd 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [1a6 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [28cb8f99-1238-4301-958d-887caf324c70]HandleMessage- COMPLETED. Notify -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org2.example.com | [1b2 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1fe 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [1a7 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:28cb8f99-1238-4301-958d-887caf324c70, channelID: -peer0.org1.example.com | [1cd 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0cbeb331]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [1ff 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org2.example.com | [1b3 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1ce 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [1a8 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [1cf 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [200 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [0ec 01-05 06:36:26.51 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 -peer0.org2.example.com | [1b4 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org2.example.com | [201 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [1d0 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0cbeb331]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [0ed 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [202 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1b5 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1d1 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0cbeb331]Move state message TRANSACTION -orderer.example.com | [0ee 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [203 01-05 06:36:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [1a9 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [1b6 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -orderer.example.com | [0ef 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [1d2 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0cbeb331]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [204 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [1b7 01-05 06:36:23.99 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -orderer.example.com | [0f0 01-05 06:36:26.51 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.org1.example.com | [1aa 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org2.example.com | [1b8 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1d3 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [0f1 01-05 06:36:26.51 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 | [205 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [1ab 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -orderer.example.com | [0f2 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org2.example.com | [1b9 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer1.org2.example.com | [206 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [0f3 01-05 06:36:26.51 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 | [1d4 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0cbeb331]sending state message TRANSACTION -peer0.org2.example.com | [1ba 01-05 06:36:24.00 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 | [207 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [0f4 01-05 06:36:26.51 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 | [1ac 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer0.org1.example.com | [1d5 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]Received message TRANSACTION from shim -peer0.org2.example.com | [1bb 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -orderer.example.com | [0f5 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [208 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [1d6 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0cbeb331]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [1bc 01-05 06:36:24.00 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer1.org1.example.com | [1ad 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -orderer.example.com | [0f6 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer1.org2.example.com | [209 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1bd 01-05 06:36:27.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:47434 -peer0.org1.example.com | [1d7 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0cbeb331]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [0f7 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org1.example.com | [1ae 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -orderer.example.com | [0f8 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org2.example.com | [1be 01-05 06:36:27.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421971c80 -peer1.org2.example.com | [20a 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [0f9 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org1.example.com | [1af 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -orderer.example.com | [0fa 01-05 06:36:26.51 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 | [1d8 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org2.example.com | [1bf 01-05 06:36:27.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [20b 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [1b0 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -orderer.example.com | [0fb 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org1.example.com | [1d9 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [1c0 01-05 06:36:27.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [1b1 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -orderer.example.com | [0fc 01-05 06:36:26.51 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 | [20c 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [1da 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | [0fd 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer0.org2.example.com | [1c1 01-05 06:36:27.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org2.example.com | [20d 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [1b2 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1db 01-05 06:36:27.10 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 | [1c2 01-05 06:36:27.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [0fe 01-05 06:36:26.51 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 | [20e 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [1b3 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1dc 01-05 06:36:27.10 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 | [1c3 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [0ff 01-05 06:36:26.51 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.org1.example.com | [1b4 01-05 06:36:24.04 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 | [20f 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1dd 01-05 06:36:27.10 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 | [1b5 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -orderer.example.com | [100 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org2.example.com | [1c4 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420329ef0, header 0xc421971d10 -peer1.org2.example.com | [210 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [1de 01-05 06:36:27.10 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 | [1b6 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1c5 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -orderer.example.com | [101 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -peer1.org2.example.com | [211 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [1df 01-05 06:36:27.10 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 | [1c6 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 1829a39213c73f27ded5cca7361d8538d2a5cd7a63926e61e599b61fdd61ac2e -orderer.example.com | [102 01-05 06:36:26.51 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 -peer0.org1.example.com | [1e0 01-05 06:36:27.10 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 | [212 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [1b7 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -orderer.example.com | [103 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [1e1 01-05 06:36:27.10 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 | [1c7 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1829a39213c73f27ded5cca7361d8538d2a5cd7a63926e61e599b61fdd61ac2e channel id: -peer1.org1.example.com | [1b8 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -orderer.example.com | [104 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 | [213 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [1b9 01-05 06:36:24.04 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 | [1c8 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1829a39213c73f27ded5cca7361d8538d2a5cd7a63926e61e599b61fdd61ac2e channel id: version: 1.1.0 -peer0.org1.example.com | [1e2 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | [105 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 | [214 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [1c9 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=1829a39213c73f27ded5cca7361d8538d2a5cd7a63926e61e599b61fdd61ac2e,syscc=true,proposal=0xc420329ef0,canname=cscc:1.1.0 -peer0.org1.example.com | [1e3 01-05 06:36:27.10 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 | [1ba 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1e4 01-05 06:36:27.10 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)(0xc42024a940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org2.example.com | [1ca 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org1.example.com | [1bb 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -orderer.example.com | [106 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [1e5 01-05 06:36:27.10 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 | [215 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [107 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [1bc 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1cb 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [1e6 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org1.example.com | [1bd 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1e7 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -orderer.example.com | [108 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -peer0.org2.example.com | [1cc 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org2.example.com | [216 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [1be 01-05 06:36:27.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37824 -orderer.example.com | [109 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [1cd 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1829a392]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [217 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [1e8 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -orderer.example.com | [10a 01-05 06:36:26.51 UTC] [github.com/hyperledger/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.org1.example.com | [1bf 01-05 06:36:27.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c31ec0 -peer1.org2.example.com | [218 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [1ce 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [10b 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [1c0 01-05 06:36:27.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [1e9 01-05 06:36:27.10 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 | [219 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [1cf 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [10c 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [1c1 01-05 06:36:27.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [1ea 01-05 06:36:27.10 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] -orderer.example.com | [10d 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 | [1d0 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1829a392]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [21a 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [1c2 01-05 06:36:27.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [1eb 01-05 06:36:27.10 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 | [1d1 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1829a392]Move state message TRANSACTION -orderer.example.com | [10e 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 | [21b 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [1c3 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [1ec 01-05 06:36:27.10 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 | [21c 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [10f 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 | [1d2 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1829a392]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [1c4 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [21d 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [1ed 01-05 06:36:27.10 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 | [1d3 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1c5 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c1fcc0, header 0xc421c31f50 -peer1.org2.example.com | [21e 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [1ee 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | [110 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 | [1d4 01-05 06:36:27.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1829a392]sending state message TRANSACTION -peer1.org1.example.com | [1c6 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org2.example.com | [21f 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [1ef 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -orderer.example.com | [111 01-05 06:36:26.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [220 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [1c7 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: dba963681ecedd116d2a59f5c2b94f23837034d3f97c609e7c07aa4cb9ae56fe -peer0.org2.example.com | [1d5 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1829a392]Received message TRANSACTION from shim -peer0.org1.example.com | [1f0 01-05 06:36:27.10 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 | [221 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [112 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 | [1d6 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1829a392]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [1f1 01-05 06:36:27.10 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 | [1c8 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: dba963681ecedd116d2a59f5c2b94f23837034d3f97c609e7c07aa4cb9ae56fe channel id: -peer1.org2.example.com | [222 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [1d7 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1829a392]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [113 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [1f2 01-05 06:36:27.10 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 | [1c9 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: dba963681ecedd116d2a59f5c2b94f23837034d3f97c609e7c07aa4cb9ae56fe channel id: version: 1.1.0 -peer0.org2.example.com | [1d8 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | [114 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [223 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [1ca 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=dba963681ecedd116d2a59f5c2b94f23837034d3f97c609e7c07aa4cb9ae56fe,syscc=true,proposal=0xc421c1fcc0,canname=cscc:1.1.0 -peer0.org1.example.com | [1f3 01-05 06:36:27.10 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 | [115 01-05 06:36:26.52 UTC] [github.com/hyperledger/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.org1.example.com | [1f4 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [224 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [1d9 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [1cb 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -orderer.example.com | [116 01-05 06:36:26.52 UTC] [github.com/hyperledger/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.org1.example.com | [1f5 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [1cc 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [225 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [1da 01-05 06:36:27.53 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 | [1f6 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [1cd 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | [117 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 | [226 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [1f7 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [1db 01-05 06:36:27.53 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 | [1ce 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dba96368]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [1f8 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [118 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 | [1dc 01-05 06:36:27.53 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 | [1cf 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [227 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [1f9 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [1d0 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [1dd 01-05 06:36:27.53 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 -orderer.example.com | [119 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -peer1.org2.example.com | [228 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [1d1 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dba96368]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [1fa 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [1de 01-05 06:36:27.53 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 | [229 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [11a 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [1d2 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dba96368]Move state message TRANSACTION -peer0.org1.example.com | [1fb 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [1df 01-05 06:36:27.53 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 | [1d3 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dba96368]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [1fc 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [11b 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -peer1.org2.example.com | [22a 01-05 06:36:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [1d4 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [1fd 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [11c 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -peer1.org1.example.com | [1d5 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dba96368]sending state message TRANSACTION -peer1.org2.example.com | [22b 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [1e0 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org1.example.com | [1fe 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [1d6 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dba96368]Received message TRANSACTION from shim -orderer.example.com | [11d 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [22c 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [1ff 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [1d7 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dba96368]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [1e1 01-05 06:36:27.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | [11e 01-05 06:36:26.52 UTC] [github.com/hyperledger/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.org1.example.com | [200 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [22d 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [1d8 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dba96368]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [201 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [1e2 01-05 06:36:27.53 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 | [22e 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [1d9 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | [11f 01-05 06:36:26.52 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 -peer0.org1.example.com | [202 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1e3 01-05 06:36:27.53 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 | [203 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [120 01-05 06:36:26.52 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 | [1da 01-05 06:36:27.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [22f 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [204 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [1e4 01-05 06:36:27.53 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)(0xc421b2f680)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [1db 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | [121 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [205 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [1e5 01-05 06:36:27.54 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 | [230 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [1dc 01-05 06:36:27.32 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 | [1dd 01-05 06:36:27.32 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 | [1de 01-05 06:36:27.32 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 | [1df 01-05 06:36:27.32 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 | [206 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [122 01-05 06:36:26.52 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 | [1e6 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org2.example.com | [231 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [1e0 01-05 06:36:27.32 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 | [207 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [1e1 01-05 06:36:27.32 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 | [1e7 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -orderer.example.com | [123 01-05 06:36:26.52 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.org2.example.com | [232 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [1e2 01-05 06:36:27.32 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 | [208 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [1e8 01-05 06:36:27.54 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 | [233 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [124 01-05 06:36:26.52 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 | [1e3 01-05 06:36:27.32 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 | [209 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [234 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [1e4 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -orderer.example.com | [125 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [1e9 01-05 06:36:27.54 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 | [1e5 01-05 06:36:27.32 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)(0xc421d37f40)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org2.example.com | [235 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [20a 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [1ea 01-05 06:36:27.54 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] -orderer.example.com | [126 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [236 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [20b 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [1eb 01-05 06:36:27.54 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 | [1e6 01-05 06:36:27.32 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 | [127 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [237 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [20c 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [1ec 01-05 06:36:27.54 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 | [1e7 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -orderer.example.com | [128 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [1e8 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org1.example.com | [20d 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [238 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [129 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [1ed 01-05 06:36:27.54 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 | [20e 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [1e9 01-05 06:36:27.32 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 | [239 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [20f 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1ee 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | [12a 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [23a 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [1ea 01-05 06:36:27.32 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 | [1ef 01-05 06:36:27.54 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 | [23b 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [210 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [1eb 01-05 06:36:27.32 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 | [23c 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -orderer.example.com | [12b 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [1f0 01-05 06:36:27.54 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 | [23d 01-05 06:36:27.77 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 | [211 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [1ec 01-05 06:36:27.32 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 | [23e 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [12c 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [23f 01-05 06:36:27.77 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 | [212 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [1f1 01-05 06:36:27.54 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 | [1ed 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [12d 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [240 01-05 06:36:27.77 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 | [213 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [241 01-05 06:36:27.77 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 | [1ee 01-05 06:36:27.32 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 | [1f2 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [12e 01-05 06:36:26.52 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 | [214 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [242 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -peer1.org1.example.com | [1ef 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | [12f 01-05 06:36:26.52 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 | [215 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [1f3 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer0.org1.example.com | [216 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [1f0 01-05 06:36:27.32 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 | [1f4 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | ] -orderer.example.com | [130 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [1f1 01-05 06:36:27.32 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 | [1f5 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [243 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -orderer.example.com | [131 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [217 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [1f2 01-05 06:36:27.32 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 | [1f6 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [244 01-05 06:36:27.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [132 01-05 06:36:26.52 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.org1.example.com | [1f3 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [1f7 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [245 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [218 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [1f4 01-05 06:36:27.32 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" > -peer0.org2.example.com | [1f8 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [133 01-05 06:36:26.52 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 | [246 01-05 06:36:27.78 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 | [219 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [1f5 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [1f9 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [21a 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [134 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [247 01-05 06:36:27.78 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 | [1f6 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [21b 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [1fa 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [248 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer1.org1.example.com | [1f7 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [135 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [249 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer0.org1.example.com | [21c 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [1fb 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [1f8 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [136 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [24a 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [21d 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [1f9 01-05 06:36:27.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [24b 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [1fc 01-05 06:36:27.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [1fa 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [21e 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [137 01-05 06:36:26.52 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 -peer1.org2.example.com | [24c 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [1fb 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [1fd 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [138 01-05 06:36:26.52 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 | [139 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer0.org1.example.com | [21f 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [1fc 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [1fe 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [24d 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | [13a 01-05 06:36:26.52 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 | [1fd 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [220 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [13b 01-05 06:36:26.52 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 | [1fe 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [24e 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer0.org2.example.com | [1ff 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [13c 01-05 06:36:26.52 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 | [1ff 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [24f 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org1.example.com | [221 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [200 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [13d 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [200 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [222 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [250 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [201 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [13e 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [201 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [202 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [13f 01-05 06:36:26.52 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.org2.example.com | [251 01-05 06:36:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org1.example.com | [223 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [203 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [140 01-05 06:36:26.52 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 -peer0.org2.example.com | [202 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [252 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [204 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [224 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [141 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org2.example.com | [253 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [02d45e2d-eda3-4110-9d21-3b7a4ccd94c4] -orderer.example.com | [142 01-05 06:36:26.52 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 | [205 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [225 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [254 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org2.example.com | [203 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [206 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [143 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [226 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [255 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [02d45e2d-eda3-4110-9d21-3b7a4ccd94c4] -peer1.org1.example.com | [207 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [144 01-05 06:36:26.52 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 == -peer0.org2.example.com | [204 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [145 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [227 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [208 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [146 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [256 01-05 06:36:27.79 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 | [205 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [228 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [209 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [257 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [229 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [206 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [258 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [20a 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [22a 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [207 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [259 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [20b 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [208 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [22b 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [25a 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [20c 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [209 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [22c 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [20d 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [25b 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [20a 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [20e 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [22d 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [20b 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [25c 01-05 06:36:27.79 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 | [20f 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org2.example.com | [25d 01-05 06:36:27.79 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 | [20c 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [22e 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer1.org1.example.com | [210 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [25e 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [20d 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [25f 01-05 06:36:27.79 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 | [22f 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [147 01-05 06:36:26.52 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 0xc42000e860 gate 1515134186525748400 evaluation starts -peer1.org1.example.com | [211 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [260 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [148 01-05 06:36:26.52 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 0xc42000e860 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [20e 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [212 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [230 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [149 01-05 06:36:26.52 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 0xc42000e860 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [20f 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [261 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [14a 01-05 06:36:26.52 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 0xc42000e860 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer1.org1.example.com | [213 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [231 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [14b 01-05 06:36:26.52 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 0xc42000e860 principal evaluation fails -peer1.org2.example.com | [262 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [210 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [14c 01-05 06:36:26.52 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 0xc42000e860 gate 1515134186525748400 evaluation fails -peer0.org1.example.com | [232 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [214 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [263 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [211 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [233 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [14d 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [264 01-05 06:36:27.79 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 | [215 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [234 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [212 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [14e 01-05 06:36:26.52 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 -peer1.org2.example.com | [265 01-05 06:36:27.79 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 | [216 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [235 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [14f 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer0.org2.example.com | [213 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [266 01-05 06:36:27.79 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 | [217 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [236 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [214 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [150 01-05 06:36:26.52 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 0xc42000e870 gate 1515134186526791300 evaluation starts -peer1.org2.example.com | [267 01-05 06:36:27.79 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 | [218 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [237 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [268 01-05 06:36:27.79 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 | [219 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [215 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [151 01-05 06:36:26.52 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 0xc42000e870 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [238 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [21a 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [269 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [239 01-05 06:36:27.12 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 | [216 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [152 01-05 06:36:26.52 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 0xc42000e870 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [23a 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [26a 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [21b 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [153 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer0.org2.example.com | [217 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [23b 01-05 06:36:27.12 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 | [26b 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [154 01-05 06:36:26.52 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 0xc42000e870 principal matched by identity 0 -peer0.org2.example.com | [218 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [23c 01-05 06:36:27.12 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 | [21c 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [155 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 e5 7c 9a 34 06 03 f4 28 34 13 15 7c fe 8d a8 |v.|.4...(4..|...| -peer1.org2.example.com | [26c 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [23d 01-05 06:36:27.12 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 | [219 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [21d 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [26d 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | 00000010 69 5f 1c eb 04 dd 2e f0 2a 17 3d af 17 df 03 cd |i_......*.=.....| -peer0.org1.example.com | [23e 01-05 06:36:27.12 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 | [21e 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [26e 01-05 06:36:27.79 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 | [21a 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [156 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4f 0e ff 7c b0 78 bf 00 88 4a 54 2b |0D. O..|.x...JT+| -peer0.org1.example.com | [23f 01-05 06:36:27.12 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 | [21f 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [21b 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [240 01-05 06:36:27.12 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 | [26f 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | 00000010 bd 60 0f dd e1 07 58 f1 dc ef b3 ab b0 6f 2d cc |.`....X......o-.| -peer0.org2.example.com | [21c 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [220 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [241 01-05 06:36:27.12 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 | [270 01-05 06:36:27.79 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 | [21d 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | 00000020 72 04 41 00 02 20 39 9c 51 b3 da 52 15 23 5e 12 |r.A.. 9.Q..R.#^.| -peer0.org1.example.com | [242 01-05 06:36:27.12 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{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -peer0.org2.example.com | [21e 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [271 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer1.org1.example.com | [221 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 00000030 46 fa 11 1f 58 04 6c 50 4b 21 b7 28 d6 fa 43 fe |F...X.lPK!.(..C.| -peer0.org1.example.com | ] -peer0.org2.example.com | [21f 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [222 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [272 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 00000040 ed 67 f7 cd 3e 94 |.g..>.| -peer0.org1.example.com | [243 01-05 06:36:27.12 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 | [220 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [273 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [223 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [244 01-05 06:36:27.12 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 -orderer.example.com | [157 01-05 06:36:26.52 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 0xc42000e870 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [221 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [274 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [245 01-05 06:36:27.12 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 | [224 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [222 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [158 01-05 06:36:26.52 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 0xc42000e870 gate 1515134186526791300 evaluation succeeds -peer0.org1.example.com | [246 01-05 06:36:27.12 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 | [223 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [225 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [247 01-05 06:36:27.13 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 | [275 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [159 01-05 06:36:26.52 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 | [224 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [248 01-05 06:36:27.13 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 | [276 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [226 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [15a 01-05 06:36:26.52 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.org1.example.com | [249 01-05 06:36:27.13 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 | [225 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [227 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [24a 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [15b 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [24b 01-05 06:36:27.13 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 | [24c 01-05 06:36:27.13 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 | [277 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [226 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [24d 01-05 06:36:27.13 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 | [278 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [228 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [15c 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [24e 01-05 06:36:27.13 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 | [227 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [229 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [15d 01-05 06:36:26.52 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 -peer1.org2.example.com | [279 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [24f 01-05 06:36:27.13 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 | [228 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [22a 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [15e 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [250 01-05 06:36:27.13 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 | [27a 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [22b 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [229 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [15f 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [27b 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [251 01-05 06:36:27.13 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 | [22c 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [160 01-05 06:36:26.52 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 | [27c 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [22a 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [252 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [22d 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [161 01-05 06:36:26.52 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 | [22b 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [27d 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [22e 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [162 01-05 06:36:26.52 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 | [253 01-05 06:36:27.13 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 = [a6b7af12-2471-42a3-b607-185375671b19] -peer0.org2.example.com | [22c 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [22f 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [163 01-05 06:36:26.52 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 | [254 01-05 06:36:27.13 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 | [27e 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [164 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [230 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [22d 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [165 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [27f 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [231 01-05 06:36:27.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [255 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [a6b7af12-2471-42a3-b607-185375671b19] -peer0.org2.example.com | [22e 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [280 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [232 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [166 01-05 06:36:26.52 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 | [22f 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [256 01-05 06:36:27.13 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 | [233 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [281 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [167 01-05 06:36:26.52 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 | [230 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [234 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [257 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [168 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [282 01-05 06:36:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [231 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [235 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [169 01-05 06:36:26.53 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 | [258 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [283 01-05 06:36:27.80 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 | [232 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [16a 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [236 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [259 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [284 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [16b 01-05 06:36:26.53 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 | [237 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [233 01-05 06:36:27.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [25a 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [16c 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [285 01-05 06:36:27.80 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 | [238 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [234 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [25b 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [16d 01-05 06:36:26.53 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 | [286 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [235 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [25c 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [16e 01-05 06:36:26.53 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 | [239 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [236 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [25d 01-05 06:36:27.13 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 | [287 01-05 06:36:27.80 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 | [23a 01-05 06:36:27.34 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 | [237 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [16f 01-05 06:36:26.53 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 | [25e 01-05 06:36:27.13 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 | [23b 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [288 01-05 06:36:27.80 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 | [23c 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | [170 01-05 06:36:26.53 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.org2.example.com | [238 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [25f 01-05 06:36:27.13 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 | [23d 01-05 06:36:27.34 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 | [239 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [171 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [289 01-05 06:36:27.80 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 | [23e 01-05 06:36:27.34 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 | [23a 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [23f 01-05 06:36:27.34 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 | [260 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [172 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [23b 01-05 06:36:27.56 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 | [28a 01-05 06:36:27.80 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 | [240 01-05 06:36:27.34 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 | [23c 01-05 06:36:27.56 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 | [241 01-05 06:36:27.34 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 | [261 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [173 01-05 06:36:26.53 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.org2.example.com | [28b 01-05 06:36:27.80 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 | [23d 01-05 06:36:27.56 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 | [242 01-05 06:36:27.34 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 | [28c 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [174 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [262 01-05 06:36:27.13 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 | [23e 01-05 06:36:27.56 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 | [243 01-05 06:36:27.34 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{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -peer1.org2.example.com | [28d 01-05 06:36:27.80 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 | [263 01-05 06:36:27.13 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 | [23f 01-05 06:36:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [175 01-05 06:36:26.53 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 | txId= locPointer=offset=38, bytesLength=12077 -peer0.org2.example.com | [240 01-05 06:36:27.56 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 | [28e 01-05 06:36:27.80 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 | ] -peer0.org1.example.com | [264 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [176 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608EAB9BCD20522...8CCB821B2F7E4433E29502816EC6D2DE -peer0.org2.example.com | [241 01-05 06:36:27.56 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 | [244 01-05 06:36:27.34 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 | [265 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [177 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 185C4F3088F2A2DA9C6DF09CB69B276F4331E97D21380A2536F1EF9ED5145E67 -peer0.org2.example.com | [242 01-05 06:36:27.56 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{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -peer1.org1.example.com | [245 01-05 06:36:27.34 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 | txId= locPointer=offset=38, bytesLength=12077 -peer1.org1.example.com | [246 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | [178 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [28f 01-05 06:36:27.80 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 | [266 01-05 06:36:27.13 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 | ] -peer1.org1.example.com | [247 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -orderer.example.com | [179 01-05 06:36:26.53 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 | [267 01-05 06:36:27.13 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 | [243 01-05 06:36:27.56 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 | [248 01-05 06:36:27.34 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 | [290 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [17a 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [268 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [249 01-05 06:36:27.34 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 | [244 01-05 06:36:27.56 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 -orderer.example.com | [17b 01-05 06:36:26.53 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.org2.example.com | [291 01-05 06:36:27.80 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 | [24a 01-05 06:36:27.34 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 | [245 01-05 06:36:27.56 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 | [269 01-05 06:36:27.13 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 | [24b 01-05 06:36:27.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [17c 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608EAB9BCD20522...CA232970C2DD6A6349EF97BFEA82B6C7 -peer0.org2.example.com | [246 01-05 06:36:27.56 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 | [24c 01-05 06:36:27.34 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 | [292 01-05 06:36:27.80 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 | [26a 01-05 06:36:27.13 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 | [247 01-05 06:36:27.56 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 | [24d 01-05 06:36:27.34 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 | [293 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [17d 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 71D9EB4D73D3A418C346F68CCC27048289D30DB7C2FF0D81338685DC769B9B64 -peer0.org2.example.com | [248 01-05 06:36:27.56 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 | [24e 01-05 06:36:27.35 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 | [294 01-05 06:36:27.80 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 | [249 01-05 06:36:27.56 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 | [26b 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [17e 01-05 06:36:26.53 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 | [24f 01-05 06:36:27.35 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 | [24a 01-05 06:36:27.56 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 | [295 01-05 06:36:27.80 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 | [26c 01-05 06:36:27.14 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 | [250 01-05 06:36:27.35 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 | [24b 01-05 06:36:27.56 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 | [296 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [17f 01-05 06:36:26.53 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 | [251 01-05 06:36:27.35 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 | [26d 01-05 06:36:27.14 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 | [297 01-05 06:36:27.80 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 | [24c 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -orderer.example.com | [180 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer0.org1.example.com | [26e 01-05 06:36:27.14 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 | [252 01-05 06:36:27.35 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] -orderer.example.com | [181 01-05 06:36:26.53 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 | [298 01-05 06:36:27.80 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 | [24d 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [253 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [26f 01-05 06:36:27.14 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 | [254 01-05 06:36:27.35 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 = [e03269ed-4121-435f-8502-bdac6fc2f243] -orderer.example.com | [182 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -peer0.org2.example.com | [24e 01-05 06:36:27.57 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 | [299 01-05 06:36:27.80 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 | [270 01-05 06:36:27.14 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 | [255 01-05 06:36:27.35 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 -orderer.example.com | [183 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [24f 01-05 06:36:27.57 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 | [29a 01-05 06:36:27.80 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 | [271 01-05 06:36:27.14 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 | [256 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [e03269ed-4121-435f-8502-bdac6fc2f243] -orderer.example.com | [184 01-05 06:36:26.53 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.org2.example.com | [29b 01-05 06:36:27.80 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 | [250 01-05 06:36:27.57 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 | [272 01-05 06:36:27.14 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 | [257 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [29c 01-05 06:36:27.80 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 | [251 01-05 06:36:27.57 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 | [258 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [273 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [252 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [259 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [29d 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [274 01-05 06:36:27.14 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 | [253 01-05 06:36:27.57 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 = [4eacf3b8-31cd-4541-a8c1-419c5bc32ff6] -peer1.org2.example.com | [29e 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer1.org1.example.com | [25a 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [275 01-05 06:36:27.14 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 | [254 01-05 06:36:27.57 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 | [29f 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [25b 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [276 01-05 06:36:27.14 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 | [255 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [4eacf3b8-31cd-4541-a8c1-419c5bc32ff6] -peer1.org2.example.com | [2a0 01-05 06:36:27.80 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 | [25c 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [277 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer1.org2.example.com | [2a1 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org2.example.com | [256 01-05 06:36:27.57 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 | [278 01-05 06:36:27.14 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 | [25d 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -peer1.org2.example.com | [2a2 01-05 06:36:27.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [279 01-05 06:36:27.14 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 | [257 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [25e 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -peer1.org2.example.com | [2a3 01-05 06:36:27.81 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 | [27a 01-05 06:36:27.14 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 | [25f 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer1.org2.example.com | [2a4 01-05 06:36:27.81 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 | [258 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [260 01-05 06:36:27.35 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 | [27b 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer0.org2.example.com | [259 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [2a5 01-05 06:36:27.81 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 | [27c 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer1.org1.example.com | [261 01-05 06:36:27.35 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 | [25a 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [2a6 01-05 06:36:27.81 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 | [27d 01-05 06:36:27.14 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 | [262 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [2a7 01-05 06:36:27.81 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 | [2a8 01-05 06:36:27.81 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 | [2a9 01-05 06:36:27.81 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 | [25b 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [263 01-05 06:36:27.35 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 | [27e 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [185 01-05 06:36:26.53 UTC] [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 0xc42000e990 gate 1515134186534899400 evaluation starts -peer1.org2.example.com | [2aa 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [264 01-05 06:36:27.35 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 | [25c 01-05 06:36:27.57 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 | [27f 01-05 06:36:27.14 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 | [2ab 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -orderer.example.com | [186 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [25d 01-05 06:36:27.57 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 | [280 01-05 06:36:27.14 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 | [265 01-05 06:36:27.35 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 | [2ac 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [187 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [2ad 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [128fc54c-1b09-417b-a49f-442dca0411b2] -peer0.org2.example.com | [25e 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [188 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer1.org2.example.com | [2ae 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=128fc54c-1b09-417b-a49f-442dca0411b2,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [266 01-05 06:36:27.35 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 | [281 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [189 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [2af 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org2.example.com | [25f 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [18a 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 principal matched by identity 0 -peer1.org1.example.com | [267 01-05 06:36:27.35 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 | [282 01-05 06:36:27.14 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 | [2b0 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [18b 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 71 d9 eb 4d 73 d3 a4 18 c3 46 f6 8c cc 27 04 82 |q..Ms....F...'..| -peer0.org1.example.com | [283 01-05 06:36:27.14 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 | [260 01-05 06:36:27.57 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 | [268 01-05 06:36:27.35 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 | [2b1 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | 00000010 89 d3 0d b7 c2 ff 0d 81 33 86 85 dc 76 9b 9b 64 |........3...v..d| -peer0.org1.example.com | [284 01-05 06:36:27.14 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 | [269 01-05 06:36:27.35 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 | [2b2 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [128fc54c]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [261 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [18c 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ba 65 34 c4 f0 48 ce b5 ea 33 d3 |0E.!..e4..H...3.| -peer1.org2.example.com | [2b3 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 00000010 f5 36 5a 48 0d c2 94 cd 82 78 42 c3 97 e8 8d ed |.6ZH.....xB.....| -peer1.org1.example.com | [26a 01-05 06:36:27.35 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 | [285 01-05 06:36:27.14 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 | [2b4 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [128fc54c]sendExecuteMsg trigger event INIT -orderer.example.com | 00000020 49 49 47 26 12 02 20 61 88 89 02 ee 4e b3 6b 8c |IIG&.. a....N.k.| -peer0.org2.example.com | [262 01-05 06:36:27.57 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 | [26b 01-05 06:36:27.35 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 | [2b5 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [128fc54c]Move state message INIT -peer0.org1.example.com | [286 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 00000030 bf d4 e5 67 eb 82 8f 43 43 e8 fe f1 9a 3f 81 18 |...g...CC....?..| -peer1.org2.example.com | [2b6 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [128fc54c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [263 01-05 06:36:27.57 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 | [26c 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 00000040 ea 3e 7c 9c e8 8f 73 |.>|...s| -peer0.org1.example.com | [287 01-05 06:36:27.14 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 | [2b7 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [264 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [18d 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [2b8 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [128fc54c]sending state message INIT -peer1.org1.example.com | [26d 01-05 06:36:27.35 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 | [288 01-05 06:36:27.14 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 -orderer.example.com | [18e 01-05 06:36:26.53 UTC] [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 0xc42000e990 gate 1515134186534899400 evaluation succeeds -peer1.org2.example.com | [2b9 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [128fc54c]Received message INIT from shim -peer0.org2.example.com | [265 01-05 06:36:27.57 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 | [289 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [18f 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [2ba 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [128fc54c]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [26e 01-05 06:36:27.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [190 01-05 06:36:26.53 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 | [266 01-05 06:36:27.57 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 | [28a 01-05 06:36:27.14 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 | [2bb 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [191 01-05 06:36:26.53 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.org1.example.com | [26f 01-05 06:36:27.35 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 | [267 01-05 06:36:27.57 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 | [28b 01-05 06:36:27.14 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 | [2bc 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [128fc54c]Received INIT, initializing chaincode -orderer.example.com | [192 01-05 06:36:26.53 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 | [268 01-05 06:36:27.57 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 | [2bd 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [270 01-05 06:36:27.35 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 | [28c 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [193 01-05 06:36:26.53 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 | [2be 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [128fc54c]Init get response status: 200 -peer0.org2.example.com | [269 01-05 06:36:27.57 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 | [28d 01-05 06:36:27.14 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 -orderer.example.com | [194 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -peer1.org1.example.com | [271 01-05 06:36:27.35 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 | [2bf 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [128fc54c]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [28e 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [195 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [26a 01-05 06:36:27.57 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 | [2c0 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [128fc54c]Move state message COMPLETED -peer1.org1.example.com | [272 01-05 06:36:27.35 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 | [28f 01-05 06:36:27.14 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 | [2c1 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [128fc54c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [196 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [26b 01-05 06:36:27.57 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 | [2c2 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [128fc54c]send state message COMPLETED -peer1.org1.example.com | [273 01-05 06:36:27.35 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 | [290 01-05 06:36:27.14 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 -orderer.example.com | [197 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [26c 01-05 06:36:27.57 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 | [2c3 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [128fc54c]Received message COMPLETED from shim -peer1.org1.example.com | [274 01-05 06:36:27.35 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 | [291 01-05 06:36:27.14 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 | [26d 01-05 06:36:27.57 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 -orderer.example.com | [198 01-05 06:36:26.53 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 | [275 01-05 06:36:27.36 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 | [2c4 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [128fc54c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [26e 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [199 01-05 06:36:26.53 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 | [292 01-05 06:36:27.14 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 | [2c5 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [128fc54c-1b09-417b-a49f-442dca0411b2]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [276 01-05 06:36:27.36 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 | [26f 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [19a 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [293 01-05 06:36:27.14 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 | [277 01-05 06:36:27.36 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 | [270 01-05 06:36:27.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [19b 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [294 01-05 06:36:27.14 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 | [271 01-05 06:36:27.57 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 | [278 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [19c 01-05 06:36:26.53 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 -peer0.org1.example.com | [295 01-05 06:36:27.14 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 | [2c6 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:128fc54c-1b09-417b-a49f-442dca0411b2, channelID:businesschannel -peer1.org1.example.com | [279 01-05 06:36:27.36 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 | [272 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [19d 01-05 06:36:26.53 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 -peer1.org2.example.com | [2c7 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [296 01-05 06:36:27.14 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 | [27a 01-05 06:36:27.36 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 | [273 01-05 06:36:27.58 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 | [2c8 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -orderer.example.com | [19e 01-05 06:36:26.53 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 | [297 01-05 06:36:27.14 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 | [27b 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [19f 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [274 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [1a0 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [2c9 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [128fc54c-1b09-417b-a49f-442dca0411b2] -peer0.org2.example.com | [275 01-05 06:36:27.58 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 | [298 01-05 06:36:27.14 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 | [27c 01-05 06:36:27.36 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 -orderer.example.com | [1a1 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2ca 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [276 01-05 06:36:27.58 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 | [299 01-05 06:36:27.14 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 | [27d 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [1a2 01-05 06:36:26.53 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 | [277 01-05 06:36:27.58 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 | [29a 01-05 06:36:27.14 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 | [2cb 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [268bb73f-e006-4f3e-bf5b-c9470d3b86c7] -peer1.org1.example.com | [27e 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [1a3 01-05 06:36:26.53 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 -peer1.org2.example.com | [2cc 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=268bb73f-e006-4f3e-bf5b-c9470d3b86c7,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer0.org2.example.com | [278 01-05 06:36:27.58 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 | [29b 01-05 06:36:27.14 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 | [27f 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [1a4 01-05 06:36:26.53 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 | [279 01-05 06:36:27.58 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 | [2cd 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [29c 01-05 06:36:27.14 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 | [280 01-05 06:36:27.36 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 | [27a 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [1a5 01-05 06:36:26.53 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.org2.example.com | [2ce 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [29d 01-05 06:36:27.14 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 | [27b 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [1a6 01-05 06:36:26.54 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.org2.example.com | [2cf 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org1.example.com | [281 01-05 06:36:27.36 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 | [29e 01-05 06:36:27.14 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 | [27c 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [1a7 01-05 06:36:26.54 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 | [282 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [2d0 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [268bb73f]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1a8 01-05 06:36:26.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [29f 01-05 06:36:27.14 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 | [27d 01-05 06:36:27.58 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 | [283 01-05 06:36:27.36 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 | [2d1 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [09a 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0a7 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched +peer0.org2.example.com | [0af 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +orderer.example.com | [0c3 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [0bb 01-13 06:14:05.36 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func2.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [09b 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c95a90a6]Init get response status: 200 +peer0.org1.example.com | [0a8 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org2.example.com | [0b0 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +orderer.example.com | [0c4 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [09c 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c95a90a6]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0ba 01-13 06:14:05.36 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [0a9 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [0b1 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +orderer.example.com | [0c5 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [09d 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c95a90a6]Move state message COMPLETED +peer1.org1.example.com | [0bc 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org1.example.com | [0aa 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +orderer.example.com | [0c6 01-13 06:14:10.12 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 | [0b2 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +peer1.org1.example.com | [0bd 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org2.example.com | [09e 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c95a90a6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at ontimeout (timers.js:386:11) +peer0.org1.example.com | [0ab 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | [0c7 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [0b3 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +peer1.org2.example.com | [09f 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c95a90a6]send state message COMPLETED +peer1.org1.example.com | [0be 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [0ac 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | [0c8 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [0b4 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [0a0 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c95a90a6]Received message COMPLETED from shim +peer0.org1.example.com | [0ad 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +orderer.example.com | [0c9 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [0b5 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +peer1.org2.example.com | [0a1 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c95a90a6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0ae 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | [0bf 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [0ca 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [0b6 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [0a2 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c95a90a6-d4df-44e2-b6bd-a83839c46a90]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 +peer1.org1.example.com | [0c0 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | [0cb 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [0b7 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer1.org2.example.com | [0a3 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c95a90a6-d4df-44e2-b6bd-a83839c46a90, channelID: +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 +peer0.org2.example.com | [0b8 01-13 06:14:05.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [0a4 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +orderer.example.com | [0cc 01-13 06:14:10.12 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 +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [0b9 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [070 01-13 06:14:04.77 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | [0cd 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [0ba 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [0a5 01-13 06:14:04.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +orderer.example.com | [0ce 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [0bb 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +explorer | errno: 1146, +peer1.org2.example.com | [0a6 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=55a68775-8c11-419b-af92-f66902a260ea,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [0bc 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [0a7 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | [0cf 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [0bd 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +peer1.org2.example.com | [0a8 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +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} +explorer | sqlState: '42S02', +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [0be 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [0d0 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [0a9 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [0af 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [0bf 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0aa 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +orderer.example.com | [0d1 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [0b0 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +peer0.org2.example.com | [0c0 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | index: 0, +peer1.org2.example.com | [0ab 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [0b1 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +orderer.example.com | [0d2 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [0c2 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [0ac 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [0b2 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +orderer.example.com | [0d3 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org2.example.com | [0c3 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +explorer | [2018-01-13 06:14:31.454] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [0ad 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [0c4 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0b3 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +orderer.example.com | [0d4 01-13 06:14:10.12 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----- +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [0ae 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [0c5 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93228d72]Move state message READY +peer1.org1.example.com | [0c2 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func2.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 db a0 0f 98 04 52 a5 8d 19 5f 70 c8 44 69 8c e8 |.....R..._p.Di..| +peer0.org1.example.com | [0b5 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [27e 01-05 06:36:27.58 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 | [2a0 01-05 06:36:27.14 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 | [2d2 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [268bb73f]sendExecuteMsg trigger event INIT -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [284 01-05 06:36:27.36 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 | [27f 01-05 06:36:27.58 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 | [2a1 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org2.example.com | [2d3 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [268bb73f]Move state message INIT -peer1.org1.example.com | [285 01-05 06:36:27.36 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 | [2a2 01-05 06:36:27.15 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 | [280 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [2d4 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [268bb73f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2a3 01-05 06:36:27.16 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 | [286 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [281 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [2d5 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [287 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [2a4 01-05 06:36:27.16 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 | [282 01-05 06:36:27.58 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 | [2d6 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [268bb73f]sending state message INIT -peer1.org1.example.com | [288 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [2a5 01-05 06:36:27.16 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 | [283 01-05 06:36:27.58 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 | [289 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org2.example.com | [2d7 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [268bb73f]Received message INIT from shim -peer0.org1.example.com | [2a6 01-05 06:36:27.16 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 | [28a 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer1.org2.example.com | [2d8 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [268bb73f]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [284 01-05 06:36:27.58 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 | [2a7 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org2.example.com | [2d9 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [28b 01-05 06:36:27.36 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 | [285 01-05 06:36:27.58 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 | [2a8 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org1.example.com | [28c 01-05 06:36:27.36 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 | [2da 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [268bb73f]Received INIT, initializing chaincode -peer0.org1.example.com | [2a9 01-05 06:36:27.16 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 | [286 01-05 06:36:27.58 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 | [2db 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [268bb73f]Init get response status: 200 -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org1.example.com | [28d 01-05 06:36:27.36 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 | [2aa 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [2dc 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [268bb73f]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [287 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org1.example.com | [2ab 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [28e 01-05 06:36:27.36 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 | [2dd 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [268bb73f]Move state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [2ac 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [288 01-05 06:36:27.58 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 | [2de 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [268bb73f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [28f 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [1a9 01-05 06:36:26.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [2ad 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a28330ab-0d33-437a-8aa2-fef30c9a890e] -peer0.org1.example.com | [2ae 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=a28330ab-0d33-437a-8aa2-fef30c9a890e,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [2df 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [268bb73f]send state message COMPLETED -peer1.org1.example.com | [290 01-05 06:36:27.36 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 | [289 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [2af 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org1.example.com | [291 01-05 06:36:27.36 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 | [2e0 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [268bb73f]Received message COMPLETED from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [2b0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [28a 01-05 06:36:27.58 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 | [292 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [2b1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org2.example.com | [2e1 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [268bb73f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [28b 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [2b2 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a28330ab]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [293 01-05 06:36:27.36 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 | [2b3 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [2e2 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [268bb73f-e006-4f3e-bf5b-c9470d3b86c7]HandleMessage- COMPLETED. Notify -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [28c 01-05 06:36:27.58 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 | [2b4 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a28330ab]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [294 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [2e3 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:268bb73f-e006-4f3e-bf5b-c9470d3b86c7, channelID:businesschannel -peer0.org2.example.com | [28d 01-05 06:36:27.58 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 | [2b5 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a28330ab]Move state message INIT -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org1.example.com | [295 01-05 06:36:27.36 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 | [2e4 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2b6 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a28330ab]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2b7 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [28e 01-05 06:36:27.58 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 | [296 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [2b8 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a28330ab]sending state message INIT -peer1.org2.example.com | [2e5 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [28f 01-05 06:36:27.58 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 | [2b9 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Received message INIT from shim -peer1.org1.example.com | [297 01-05 06:36:27.36 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 | [2e6 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [268bb73f-e006-4f3e-bf5b-c9470d3b86c7] -peer0.org1.example.com | [2ba 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a28330ab]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org1.example.com | [298 01-05 06:36:27.36 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 | [290 01-05 06:36:27.58 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 | [2bb 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2e7 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2bc 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a28330ab]Received INIT, initializing chaincode -peer1.org1.example.com | [299 01-05 06:36:27.36 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 | [291 01-05 06:36:27.58 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 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [2bd 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [2e8 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [35c99e80-7840-47b7-97d8-69fca70bec70] -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org2.example.com | [292 01-05 06:36:27.58 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 | [29a 01-05 06:36:27.36 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 | [2be 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Init get response status: 200 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [293 01-05 06:36:27.58 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 | [2e9 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=35c99e80-7840-47b7-97d8-69fca70bec70,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org1.example.com | [2bf 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [29b 01-05 06:36:27.36 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 | [2c0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Move state message COMPLETED -orderer.example.com | [1aa 01-05 06:36:26.54 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 | [2ea 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [294 01-05 06:36:27.58 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 | [2c1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a28330ab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [29c 01-05 06:36:27.36 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 | [2eb 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2c2 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]send state message COMPLETED -orderer.example.com | [1ab 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [2c3 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a28330ab]Received message COMPLETED from shim -peer1.org2.example.com | [2ec 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [29d 01-05 06:36:27.36 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 | [295 01-05 06:36:27.58 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 | [2c4 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a28330ab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2ed 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [35c99e80]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1ac 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [296 01-05 06:36:27.58 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 | [2c5 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a28330ab-0d33-437a-8aa2-fef30c9a890e]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [29e 01-05 06:36:27.36 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 | [2ee 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [297 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [1ad 01-05 06:36:26.55 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 | [29f 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [2c6 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a28330ab-0d33-437a-8aa2-fef30c9a890e, channelID:businesschannel -peer0.org2.example.com | [298 01-05 06:36:27.58 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 | [2ef 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [35c99e80]sendExecuteMsg trigger event INIT -orderer.example.com | [1ae 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [299 01-05 06:36:27.58 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 | [2a0 01-05 06:36:27.36 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 | [2c7 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [29a 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [1af 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [2f0 01-05 06:36:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35c99e80]Move state message INIT -peer0.org1.example.com | [2c8 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [2a1 01-05 06:36:27.36 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 | [29b 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [1b0 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [2c9 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a28330ab-0d33-437a-8aa2-fef30c9a890e] -peer1.org1.example.com | [2a2 01-05 06:36:27.36 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org2.example.com | [29c 01-05 06:36:27.58 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 | [2ca 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [1b1 01-05 06:36:26.55 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 | [2a3 01-05 06:36:27.36 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 | [29d 01-05 06:36:27.58 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 | [2f1 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35c99e80]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2f2 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2cb 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [dc11855a-3b5b-466a-bcd2-1ca282cbcf6d] -peer1.org1.example.com | [2a4 01-05 06:36:27.37 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | [1b2 01-05 06:36:26.55 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 -peer0.org2.example.com | [29e 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [2cc 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=dc11855a-3b5b-466a-bcd2-1ca282cbcf6d,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [2f3 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35c99e80]sending state message INIT -peer1.org1.example.com | [2a5 01-05 06:36:27.37 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 | [29f 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [1b3 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [2cd 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [2f4 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35c99e80]Received message INIT from shim -peer1.org1.example.com | [2a6 01-05 06:36:27.37 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [1b4 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [2a0 01-05 06:36:27.58 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 | [2ce 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1b5 01-05 06:36:26.55 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.org1.example.com | [2a7 01-05 06:36:27.38 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 | [2f5 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35c99e80]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2a1 01-05 06:36:27.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [2cf 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [1b6 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [2a2 01-05 06:36:27.58 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 | [2f6 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2d0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dc11855a]Inside sendExecuteMessage. Message INIT -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [2a8 01-05 06:36:27.38 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 | [2f7 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [35c99e80]Received INIT, initializing chaincode -peer0.org1.example.com | [2d1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [2a3 01-05 06:36:27.59 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 | [2a9 01-05 06:36:27.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [2f8 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [2aa 01-05 06:36:27.38 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 | [2d2 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dc11855a]sendExecuteMsg trigger event INIT -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [2f9 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35c99e80]Init get response status: 200 -peer0.org2.example.com | [2a4 01-05 06:36:27.59 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 | [2ab 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org2.example.com | [2fa 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35c99e80]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2d3 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc11855a]Move state message INIT -peer1.org1.example.com | [2ac 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [2a5 01-05 06:36:27.59 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 | [2fb 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35c99e80]Move state message COMPLETED -peer0.org1.example.com | [2d4 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dc11855a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2ad 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [2fc 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35c99e80]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [2a6 01-05 06:36:27.59 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 | [2ae 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [da6e8e35-d2d3-4b9f-8bad-3b00e8c501a2] -peer0.org1.example.com | [2d5 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2fd 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35c99e80]send state message COMPLETED -peer0.org2.example.com | [2a7 01-05 06:36:27.59 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [2af 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=da6e8e35-d2d3-4b9f-8bad-3b00e8c501a2,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer0.org2.example.com | [2a8 01-05 06:36:27.59 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 | [2d6 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc11855a]sending state message INIT -peer1.org2.example.com | [2fe 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35c99e80]Received message COMPLETED from shim -peer1.org1.example.com | [2b0 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org2.example.com | [2a9 01-05 06:36:27.59 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 | [2b1 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2d7 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Received message INIT from shim -peer1.org2.example.com | [2ff 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35c99e80]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2aa 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [2b2 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [2ab 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [2b3 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [da6e8e35]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [2d8 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dc11855a]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [300 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35c99e80-7840-47b7-97d8-69fca70bec70]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2ac 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2b4 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2d9 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org2.example.com | [2ad 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [3f50ea7b-f21e-4ea3-89a1-8966b8bd9a37] -peer1.org1.example.com | [2b5 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [da6e8e35]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [301 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35c99e80-7840-47b7-97d8-69fca70bec70, channelID:businesschannel -peer0.org1.example.com | [2da 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dc11855a]Received INIT, initializing chaincode -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org2.example.com | [2ae 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=3f50ea7b-f21e-4ea3-89a1-8966b8bd9a37,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [2b6 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da6e8e35]Move state message INIT -peer0.org1.example.com | [2db 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Init get response status: 200 -peer1.org2.example.com | [302 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org2.example.com | [2af 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org1.example.com | [2b7 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da6e8e35]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2dc 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Init succeeded. Sending COMPLETED -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org2.example.com | [2b0 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [303 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [2b8 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2b1 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org1.example.com | [2dd 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Move state message COMPLETED -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org2.example.com | [304 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [35c99e80-7840-47b7-97d8-69fca70bec70] -peer1.org1.example.com | [2b9 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da6e8e35]sending state message INIT -peer0.org2.example.com | [2b2 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3f50ea7b]Inside sendExecuteMessage. Message INIT -orderer.example.com | vA2BLfriqQ== -peer0.org1.example.com | [2de 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dc11855a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [305 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2ba 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da6e8e35]Received message INIT from shim -peer0.org2.example.com | [2b3 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2df 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]send state message COMPLETED -peer1.org2.example.com | [306 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [6d6142f7-a148-4322-9ba9-120087658567] -peer1.org1.example.com | [2bb 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da6e8e35]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2b4 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3f50ea7b]sendExecuteMsg trigger event INIT -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [2bc 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2b5 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f50ea7b]Move state message INIT -peer1.org2.example.com | [307 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=6d6142f7-a148-4322-9ba9-120087658567,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [2bd 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [da6e8e35]Received INIT, initializing chaincode -peer0.org1.example.com | [2e0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc11855a]Received message COMPLETED from shim -peer0.org2.example.com | [2b6 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f50ea7b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1b7 01-05 06:36:26.55 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 | [308 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [2be 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [2b7 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [2e1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dc11855a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2bf 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da6e8e35]Init get response status: 200 -peer0.org2.example.com | [2b8 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f50ea7b]sending state message INIT -peer1.org2.example.com | [309 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2c0 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da6e8e35]Init succeeded. Sending COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [2b9 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f50ea7b]Received message INIT from shim -peer1.org1.example.com | [2c1 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da6e8e35]Move state message COMPLETED -peer0.org1.example.com | [2e2 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dc11855a-3b5b-466a-bcd2-1ca282cbcf6d]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2ba 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f50ea7b]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [30a 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [2c2 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da6e8e35]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2bb 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2e3 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:dc11855a-3b5b-466a-bcd2-1ca282cbcf6d, channelID:businesschannel -peer1.org1.example.com | [2c3 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da6e8e35]send state message COMPLETED -peer1.org2.example.com | [30b 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6d6142f7]Inside sendExecuteMessage. Message INIT -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org1.example.com | [2e4 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2bc 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3f50ea7b]Received INIT, initializing chaincode -peer1.org1.example.com | [2c4 01-05 06:36:27.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da6e8e35]Received message COMPLETED from shim -peer0.org2.example.com | [2bd 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [30c 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [2c5 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da6e8e35]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2e5 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [2be 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f50ea7b]Init get response status: 200 -peer1.org2.example.com | [30d 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6d6142f7]sendExecuteMsg trigger event INIT -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [2bf 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f50ea7b]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2e6 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [dc11855a-3b5b-466a-bcd2-1ca282cbcf6d] -peer1.org1.example.com | [2c6 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [da6e8e35-d2d3-4b9f-8bad-3b00e8c501a2]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [30e 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d6142f7]Move state message INIT -peer0.org2.example.com | [2c0 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f50ea7b]Move state message COMPLETED -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer1.org1.example.com | [2c7 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:da6e8e35-d2d3-4b9f-8bad-3b00e8c501a2, channelID:businesschannel -peer0.org1.example.com | [2e7 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2c8 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2c1 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f50ea7b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org1.example.com | [2e8 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2d929a8f-a9f0-40d1-935a-c70285de2cce] -peer1.org2.example.com | [30f 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d6142f7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [2c2 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f50ea7b]send state message COMPLETED -peer1.org1.example.com | [2c9 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org2.example.com | [2c3 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f50ea7b]Received message COMPLETED from shim -peer1.org2.example.com | [310 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2e9 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=2d929a8f-a9f0-40d1-935a-c70285de2cce,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org2.example.com | [2c4 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f50ea7b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2ca 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [da6e8e35-d2d3-4b9f-8bad-3b00e8c501a2] -peer1.org2.example.com | [311 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d6142f7]sending state message INIT -peer0.org1.example.com | [2ea 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [2c5 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f50ea7b-f21e-4ea3-89a1-8966b8bd9a37]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2cb 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer1.org2.example.com | [312 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d6142f7]Received message INIT from shim -peer0.org1.example.com | [2eb 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2c6 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3f50ea7b-f21e-4ea3-89a1-8966b8bd9a37, channelID:businesschannel -peer1.org2.example.com | [313 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6d6142f7]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer1.org1.example.com | [2cc 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [fef909c3-2aeb-4812-b3cd-8bd9f2f9d0db] -peer0.org1.example.com | [2ec 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [314 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2c7 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2cd 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=fef909c3-2aeb-4812-b3cd-8bd9f2f9d0db,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer0.org1.example.com | [2ed 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2d929a8f]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2c8 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [315 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6d6142f7]Received INIT, initializing chaincode -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [2ce 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [2ee 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [316 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d6142f7]Init get response status: 200 -peer0.org2.example.com | [2c9 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [3f50ea7b-f21e-4ea3-89a1-8966b8bd9a37] -orderer.example.com | [1b8 01-05 06:36:26.55 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.org1.example.com | [2cf 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2ef 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2d929a8f]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [2ca 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [317 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d6142f7]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [2d0 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [1b9 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [2f0 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d929a8f]Move state message INIT -peer0.org2.example.com | [2cb 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [6f4df138-76f8-4948-8def-770c9a4b46ff] -orderer.example.com | [1ba 01-05 06:36:26.55 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 | [318 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d6142f7]Move state message COMPLETED -peer1.org1.example.com | [2d1 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fef909c3]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2cc 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=6f4df138-76f8-4948-8def-770c9a4b46ff,syscc=true,proposal=0x0,canname=lscc:1.1.0 -orderer.example.com | [1bb 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [2f1 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d929a8f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [319 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6d6142f7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2d2 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [2cd 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | [1bc 01-05 06:36:26.55 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 | [31a 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d6142f7]send state message COMPLETED -peer1.org1.example.com | [2d3 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fef909c3]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2f2 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2ce 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2d4 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fef909c3]Move state message INIT -peer1.org2.example.com | [31b 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d6142f7]Received message COMPLETED from shim -orderer.example.com | [1bd 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [2f3 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d929a8f]sending state message INIT -peer1.org1.example.com | [2d5 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fef909c3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [2cf 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [1be 01-05 06:36:26.55 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 | [31c 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d6142f7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2f4 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Received message INIT from shim -peer0.org2.example.com | [2d0 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f4df138]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [2d6 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [1bf 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [2f5 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d929a8f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [31d 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d6142f7-a148-4322-9ba9-120087658567]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2d1 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [2d7 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fef909c3]sending state message INIT -peer1.org2.example.com | [31e 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6d6142f7-a148-4322-9ba9-120087658567, channelID:businesschannel -orderer.example.com | [1c0 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [2f6 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [31f 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2d8 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fef909c3]Received message INIT from shim -peer0.org2.example.com | [2d2 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f4df138]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2f7 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2d929a8f]Received INIT, initializing chaincode -orderer.example.com | [1c1 01-05 06:36:26.55 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 | [320 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org1.example.com | [2d9 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fef909c3]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2d3 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f4df138]Move state message INIT -peer0.org1.example.com | [2f8 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | [1c2 01-05 06:36:26.55 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 | [321 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [6d6142f7-a148-4322-9ba9-120087658567] -peer1.org1.example.com | [2da 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2f9 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Init get response status: 200 -peer0.org2.example.com | [2d4 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6f4df138]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [2db 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fef909c3]Received INIT, initializing chaincode -peer0.org1.example.com | [2fa 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2d5 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [322 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [2dc 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fef909c3]Init get response status: 200 -peer0.org2.example.com | [2d6 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f4df138]sending state message INIT -peer0.org1.example.com | [2fb 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Move state message COMPLETED -peer1.org2.example.com | [323 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [71c14f63-a9d5-48d1-b2f3-ce4e63915194] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [2d7 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f4df138]Received message INIT from shim -peer0.org1.example.com | [2fc 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d929a8f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2dd 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fef909c3]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2d8 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f4df138]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [2fd 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]send state message COMPLETED -peer1.org2.example.com | [324 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=71c14f63-a9d5-48d1-b2f3-ce4e63915194,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org2.example.com | [2d9 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2de 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fef909c3]Move state message COMPLETED -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [2fe 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d929a8f]Received message COMPLETED from shim -peer0.org2.example.com | [2da 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6f4df138]Received INIT, initializing chaincode -peer1.org2.example.com | [325 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer1.org1.example.com | [2df 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fef909c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [2ff 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d929a8f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [326 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2db 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f4df138]Init get response status: 200 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [327 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org2.example.com | [2dc 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f4df138]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [300 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d929a8f-a9f0-40d1-935a-c70285de2cce]HandleMessage- COMPLETED. Notify -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [328 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [71c14f63]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [2e0 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fef909c3]send state message COMPLETED -peer0.org2.example.com | [2dd 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f4df138]Move state message COMPLETED -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [329 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [2e1 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fef909c3]Received message COMPLETED from shim -peer0.org1.example.com | [301 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2d929a8f-a9f0-40d1-935a-c70285de2cce, channelID:businesschannel -peer1.org2.example.com | [32a 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [71c14f63]sendExecuteMsg trigger event INIT -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org1.example.com | [2e2 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fef909c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2de 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f4df138]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [302 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [32b 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71c14f63]Move state message INIT -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org2.example.com | [2df 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f4df138]send state message COMPLETED -peer1.org1.example.com | [2e3 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fef909c3-2aeb-4812-b3cd-8bd9f2f9d0db]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [303 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [32c 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71c14f63]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer1.org1.example.com | [2e4 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fef909c3-2aeb-4812-b3cd-8bd9f2f9d0db, channelID:businesschannel -peer0.org2.example.com | [2e0 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f4df138]Received message COMPLETED from shim -orderer.example.com | oQmWQsjpiQ== -peer0.org1.example.com | [304 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [2d929a8f-a9f0-40d1-935a-c70285de2cce] -peer1.org2.example.com | [32d 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2e5 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [2e1 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6f4df138]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [305 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [1c3 01-05 06:36:26.55 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 | [32e 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71c14f63]sending state message INIT -peer1.org1.example.com | [2e6 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [2e2 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6f4df138-76f8-4948-8def-770c9a4b46ff]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [306 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bbb85879-0f94-46e3-95db-0574933cb0c3] -peer1.org2.example.com | [32f 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71c14f63]Received message INIT from shim -peer1.org1.example.com | [2e7 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [fef909c3-2aeb-4812-b3cd-8bd9f2f9d0db] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [2e3 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6f4df138-76f8-4948-8def-770c9a4b46ff, channelID:businesschannel -peer1.org2.example.com | [330 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71c14f63]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [307 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=bbb85879-0f94-46e3-95db-0574933cb0c3,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [2e8 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [331 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2e4 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [332 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [71c14f63]Received INIT, initializing chaincode -peer1.org1.example.com | [2e9 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [6923c866-a1cd-47c7-aa4e-49216e11e361] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [308 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [2e5 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [333 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [2ea 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=6923c866-a1cd-47c7-aa4e-49216e11e361,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org2.example.com | [2e6 01-05 06:36:27.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [6f4df138-76f8-4948-8def-770c9a4b46ff] -peer0.org1.example.com | [309 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org2.example.com | [334 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71c14f63]Init get response status: 200 -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [30a 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [2eb 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [2e7 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org2.example.com | [335 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71c14f63]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [30b 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bbb85879]Inside sendExecuteMessage. Message INIT -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org1.example.com | [2ec 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2e8 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8a2020cb-8d10-41f4-a073-2ec2a136fc69] -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org1.example.com | [30c 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [2ed 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [336 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71c14f63]Move state message COMPLETED -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [30d 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bbb85879]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [2e9 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8a2020cb-8d10-41f4-a073-2ec2a136fc69,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org1.example.com | [2ee 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6923c866]Inside sendExecuteMessage. Message INIT -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [2ea 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [30e 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbb85879]Move state message INIT -orderer.example.com | [1c4 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [337 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71c14f63]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2ef 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [2eb 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [338 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71c14f63]send state message COMPLETED -orderer.example.com | [1c5 01-05 06:36:26.55 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 | [30f 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbb85879]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [339 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71c14f63]Received message COMPLETED from shim -peer0.org2.example.com | [2ec 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [2f0 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6923c866]sendExecuteMsg trigger event INIT -orderer.example.com | [1c6 01-05 06:36:26.55 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 | [310 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [33a 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71c14f63]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1c7 01-05 06:36:26.55 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.org2.example.com | [2ed 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a2020cb]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [33b 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71c14f63-a9d5-48d1-b2f3-ce4e63915194]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2f1 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6923c866]Move state message INIT -orderer.example.com | [1c8 01-05 06:36:26.55 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 | [311 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbb85879]sending state message INIT -peer1.org2.example.com | [33c 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:71c14f63-a9d5-48d1-b2f3-ce4e63915194, channelID:businesschannel -peer0.org2.example.com | [2ee 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [1c9 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [33d 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [312 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Received message INIT from shim -orderer.example.com | [1ca 01-05 06:36:26.55 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 | [2f2 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6923c866]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [33e 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -orderer.example.com | [1cb 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org2.example.com | [2ef 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a2020cb]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [33f 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [71c14f63-a9d5-48d1-b2f3-ce4e63915194] -orderer.example.com | [1cc 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org1.example.com | [2f3 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [340 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -orderer.example.com | [1cd 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org1.example.com | [2f4 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6923c866]sending state message INIT -peer1.org2.example.com | [341 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [2f0 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2020cb]Move state message INIT -peer0.org1.example.com | [313 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbb85879]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [1ce 01-05 06:36:26.55 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 | [1cf 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer1.org2.example.com | [342 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [2f1 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a2020cb]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2f5 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6923c866]Received message INIT from shim -peer0.org1.example.com | [314 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [343 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -orderer.example.com | [1d0 01-05 06:36:26.55 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 | [2f2 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [344 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2f6 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6923c866]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [315 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bbb85879]Received INIT, initializing chaincode -peer1.org2.example.com | [345 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -orderer.example.com | [1d1 01-05 06:36:26.55 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 | [2f3 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2020cb]sending state message INIT -peer1.org2.example.com | [346 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org1.example.com | [316 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Init get response status: 200 -orderer.example.com | [1d2 01-05 06:36:26.55 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 -peer1.org2.example.com | [347 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71d4aea4]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [2f7 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [317 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2f4 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2020cb]Received message INIT from shim -peer1.org2.example.com | [348 01-05 06:36:27.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71d4aea4]Move state message COMPLETED -peer1.org1.example.com | [2f8 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6923c866]Received INIT, initializing chaincode -peer1.org2.example.com | [349 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71d4aea4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [318 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Move state message COMPLETED -orderer.example.com | [1d3 01-05 06:36:26.55 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 | [2f5 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a2020cb]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [34a 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71d4aea4]send state message COMPLETED -peer1.org1.example.com | [2f9 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | [1d4 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -peer0.org1.example.com | [319 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbb85879]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [34b 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71d4aea4]Received message COMPLETED from shim -peer0.org2.example.com | [2f6 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2fa 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6923c866]Init get response status: 200 -peer1.org2.example.com | [34c 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71d4aea4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1d5 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer0.org1.example.com | [31a 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]send state message COMPLETED -peer0.org2.example.com | [2f7 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8a2020cb]Received INIT, initializing chaincode -peer1.org1.example.com | [2fb 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6923c866]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [34d 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [71d4aea40c5538129cbcdbef2e14a097f311319d097ccebf21e1f6858e9a77cd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [31b 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbb85879]Received message COMPLETED from shim -peer1.org2.example.com | [34e 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:71d4aea40c5538129cbcdbef2e14a097f311319d097ccebf21e1f6858e9a77cd, channelID: -peer1.org1.example.com | [2fc 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6923c866]Move state message COMPLETED -peer0.org2.example.com | [2f8 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [34f 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [1d6 01-05 06:36:26.55 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 | [1d7 01-05 06:36:26.55 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 | [1d8 01-05 06:36:26.55 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 | [1d9 01-05 06:36:26.55 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 | [1da 01-05 06:36:26.55 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 | [2fd 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6923c866]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [31c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbb85879]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [350 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [2f9 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2020cb]Init get response status: 200 -orderer.example.com | [1db 01-05 06:36:26.55 UTC] [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 | [2fe 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6923c866]send state message COMPLETED -peer0.org1.example.com | [31d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbb85879-0f94-46e3-95db-0574933cb0c3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [351 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [2ff 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6923c866]Received message COMPLETED from shim -orderer.example.com | [1dc 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [31e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bbb85879-0f94-46e3-95db-0574933cb0c3, channelID:businesschannel -peer1.org2.example.com | [352 01-05 06:36:27.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:55166) -peer0.org2.example.com | [2fa 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2020cb]Init succeeded. Sending COMPLETED -orderer.example.com | [1dd 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [353 01-05 06:36:33.83 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 | [300 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6923c866]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1de 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [31f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2fb 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2020cb]Move state message COMPLETED -peer1.org2.example.com | [354 01-05 06:36:33.84 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -orderer.example.com | [1df 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [301 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6923c866-a1cd-47c7-aa4e-49216e11e361]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2fc 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a2020cb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [320 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [355 01-05 06:36:33.84 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 | [302 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6923c866-a1cd-47c7-aa4e-49216e11e361, channelID:businesschannel -orderer.example.com | [1e0 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [2fd 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a2020cb]send state message COMPLETED -peer1.org2.example.com | [356 01-05 06:36:33.84 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org1.example.com | [321 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [bbb85879-0f94-46e3-95db-0574933cb0c3] -peer1.org1.example.com | [303 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1e1 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [357 01-05 06:36:33.84 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 | [2fe 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a2020cb]Received message COMPLETED from shim -peer0.org1.example.com | [322 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [304 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -orderer.example.com | [1e2 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [358 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org2.example.com | [2ff 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a2020cb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [323 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c88c5c08-0038-45b1-836e-1065f3ee3a6d] -orderer.example.com | [1e3 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [359 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org1.example.com | [324 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=c88c5c08-0038-45b1-836e-1065f3ee3a6d,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org2.example.com | [300 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a2020cb-8d10-41f4-a073-2ec2a136fc69]HandleMessage- COMPLETED. Notify -orderer.example.com | [1e4 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [305 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [6923c866-a1cd-47c7-aa4e-49216e11e361] -peer1.org2.example.com | [35b 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [325 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer0.org2.example.com | [301 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a2020cb-8d10-41f4-a073-2ec2a136fc69, channelID:businesschannel -peer1.org1.example.com | [306 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [1e5 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [302 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [307 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cd738b81-22cf-4744-b2d0-b3bf367f50c9] -peer0.org1.example.com | [326 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [35c 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [1e6 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [308 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=cd738b81-22cf-4744-b2d0-b3bf367f50c9,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [303 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [327 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org2.example.com | [35d 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202d5b20 env 0xc421810150 txn 0 -peer1.org1.example.com | [309 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [1e7 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [35e 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421810150 -peer0.org2.example.com | [304 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8a2020cb-8d10-41f4-a073-2ec2a136fc69] -peer0.org1.example.com | [328 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c88c5c08]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [30a 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [329 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [35f 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer0.org2.example.com | [305 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [1e8 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [30b 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [32a 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c88c5c08]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [306 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [211e0a82-11e2-4c3f-8469-b1099f7c23ea] -peer1.org2.example.com | [360 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [1e9 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [30c 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cd738b81]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [32b 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c88c5c08]Move state message INIT -peer0.org2.example.com | [307 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=211e0a82-11e2-4c3f-8469-b1099f7c23ea,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | [1ea 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [361 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [30d 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [32c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c88c5c08]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [308 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [1eb 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [362 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org1.example.com | [30e 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cd738b81]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [309 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [32d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [1ec 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [30f 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd738b81]Move state message INIT -peer0.org2.example.com | [30a 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [363 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [32e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c88c5c08]sending state message INIT -orderer.example.com | [1ed 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [30b 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [211e0a82]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [364 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [310 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd738b81]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1ee 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [32f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Received message INIT from shim -peer1.org1.example.com | [311 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [1ef 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [330 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c88c5c08]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [365 01-05 06:36:33.86 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\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer0.org2.example.com | [30c 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [312 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd738b81]sending state message INIT -orderer.example.com | [1f0 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [366 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [331 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1f1 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [30d 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [211e0a82]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [313 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd738b81]Received message INIT from shim -orderer.example.com | [1f2 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [367 01-05 06:36:33.86 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 | [30e 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [211e0a82]Move state message INIT -peer0.org1.example.com | [332 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c88c5c08]Received INIT, initializing chaincode -peer1.org1.example.com | [314 01-05 06:36:27.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd738b81]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [368 01-05 06:36:33.86 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 | [333 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | [1f3 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [30f 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [211e0a82]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [369 01-05 06:36:33.86 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 | [334 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Init get response status: 200 -orderer.example.com | [1f4 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [310 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [315 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [36a 01-05 06:36:33.86 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 | [1f5 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [335 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [316 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cd738b81]Received INIT, initializing chaincode -peer0.org2.example.com | [311 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [211e0a82]sending state message INIT -orderer.example.com | [1f6 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [336 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Move state message COMPLETED -peer1.org2.example.com | [35a 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer1.org1.example.com | [317 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd738b81]Init get response status: 200 -peer0.org2.example.com | [312 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [211e0a82]Received message INIT from shim -orderer.example.com | [1f7 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [36c 01-05 06:36:33.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org1.example.com | [337 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c88c5c08]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [318 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd738b81]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [313 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [211e0a82]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [338 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]send state message COMPLETED -peer1.org2.example.com | [36b 01-05 06:36:33.86 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 | [1f8 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [314 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [319 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd738b81]Move state message COMPLETED -peer0.org1.example.com | [339 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c88c5c08]Received message COMPLETED from shim -peer1.org2.example.com | [36d 01-05 06:36:33.87 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 | [1f9 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [315 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [211e0a82]Received INIT, initializing chaincode -peer1.org1.example.com | [31a 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd738b81]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [33a 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c88c5c08]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [36e 01-05 06:36:33.87 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 | [1fa 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [316 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [211e0a82]Init get response status: 200 -peer0.org1.example.com | [33b 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c88c5c08-0038-45b1-836e-1065f3ee3a6d]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [36f 01-05 06:36:33.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [1fb 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [317 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [211e0a82]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [33c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c88c5c08-0038-45b1-836e-1065f3ee3a6d, channelID:businesschannel -peer1.org1.example.com | [31b 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd738b81]send state message COMPLETED -orderer.example.com | [1fc 01-05 06:36:26.56 UTC] [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 | [370 01-05 06:36:33.87 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 | [318 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [211e0a82]Move state message COMPLETED -peer0.org1.example.com | [33d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [31c 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd738b81]Received message COMPLETED from shim -peer0.org1.example.com | [33e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org2.example.com | [371 01-05 06:36:33.87 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 | [1fd 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [33f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [c88c5c08-0038-45b1-836e-1065f3ee3a6d] -peer0.org2.example.com | [319 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [211e0a82]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [31d 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd738b81]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [372 01-05 06:36:33.87 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 | [340 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org2.example.com | [31a 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [211e0a82]send state message COMPLETED -orderer.example.com | [1fe 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [341 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [374 01-05 06:36:33.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer1.org2.example.com | [373 01-05 06:36:33.87 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 | [31e 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cd738b81-22cf-4744-b2d0-b3bf367f50c9]HandleMessage- COMPLETED. Notify -orderer.example.com | [1ff 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [31b 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [211e0a82]Received message COMPLETED from shim -peer0.org1.example.com | [342 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [375 01-05 06:36:33.87 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 | [31f 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cd738b81-22cf-4744-b2d0-b3bf367f50c9, channelID:businesschannel -peer0.org2.example.com | [31c 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [211e0a82]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [200 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [343 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer1.org1.example.com | [320 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [201 01-05 06:36:26.56 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 | [376 01-05 06:36:33.87 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 | [344 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [202 01-05 06:36:26.56 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.org1.example.com | [321 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [31d 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [211e0a82-11e2-4c3f-8469-b1099f7c23ea]HandleMessage- COMPLETED. Notify -orderer.example.com | [203 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [345 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer1.org2.example.com | [377 01-05 06:36:33.88 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 | [31e 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:211e0a82-11e2-4c3f-8469-b1099f7c23ea, channelID:businesschannel -peer1.org1.example.com | [322 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [cd738b81-22cf-4744-b2d0-b3bf367f50c9] -orderer.example.com | [204 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [346 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer1.org2.example.com | [378 01-05 06:36:33.88 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 | [323 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [347 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]Transaction completed. Sending COMPLETED -orderer.example.com | [205 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [31f 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [348 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]Move state message COMPLETED -peer1.org1.example.com | [324 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b464b86f-b23f-4631-9afc-1a73d3e4cef6] -peer1.org2.example.com | [379 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -orderer.example.com | [206 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [349 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0cbeb331]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [320 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org1.example.com | [325 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=b464b86f-b23f-4631-9afc-1a73d3e4cef6,syscc=true,proposal=0x0,canname=qscc:1.1.0 -orderer.example.com | [207 01-05 06:36:26.56 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 | [37a 01-05 06:36:33.88 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 | [34a 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]send state message COMPLETED -peer1.org1.example.com | [326 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer0.org2.example.com | [321 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [211e0a82-11e2-4c3f-8469-b1099f7c23ea] -peer0.org1.example.com | [34b 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0cbeb331]Received message COMPLETED from shim -orderer.example.com | [208 01-05 06:36:26.56 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 | [37b 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [327 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [34c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0cbeb331]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [322 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [209 01-05 06:36:26.56 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.org1.example.com | [328 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org2.example.com | [37c 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [323 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2fd40253-1825-4cb0-8a55-93aecb563f04] -orderer.example.com | [20a 01-05 06:36:26.56 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 -peer0.org1.example.com | [34e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0, channelID: -peer1.org1.example.com | [329 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b464b86f]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [37d 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [20b 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [350 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [32a 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [324 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=2fd40253-1825-4cb0-8a55-93aecb563f04,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [37e 01-05 06:36:33.88 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 | [37f 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [380 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [381 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [382 01-05 06:36:33.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [383 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [384 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [351 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [20c 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [325 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer1.org1.example.com | [32b 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b464b86f]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [385 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [352 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37106) -peer0.org2.example.com | [326 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [32c 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b464b86f]Move state message INIT -orderer.example.com | [20d 01-05 06:36:26.56 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 -peer0.org1.example.com | [353 01-05 06:36:33.17 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer1.org2.example.com | [386 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [327 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org1.example.com | [32d 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b464b86f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [354 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -orderer.example.com | [20e 01-05 06:36:26.56 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 | [387 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [32e 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [20f 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [328 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2fd40253]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [355 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -orderer.example.com | [210 01-05 06:36:26.56 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 | [388 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [356 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [329 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [32f 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b464b86f]sending state message INIT -orderer.example.com | [211 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org1.example.com | [357 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org2.example.com | [389 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [330 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b464b86f]Received message INIT from shim -peer0.org2.example.com | [32a 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2fd40253]sendExecuteMsg trigger event INIT -orderer.example.com | [212 01-05 06:36:26.56 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 | [38a 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [213 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer1.org1.example.com | [331 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b464b86f]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [214 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [32b 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2fd40253]Move state message INIT -peer1.org2.example.com | [38b 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [358 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org1.example.com | [332 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [215 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer1.org2.example.com | [38c 01-05 06:36:33.89 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 | [32c 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2fd40253]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [359 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -orderer.example.com | [216 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org1.example.com | [333 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b464b86f]Received INIT, initializing chaincode -peer1.org2.example.com | [38d 01-05 06:36:33.89 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 | [35a 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer0.org2.example.com | [32d 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [217 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [334 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [38e 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [218 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [35b 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [32e 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2fd40253]sending state message INIT -peer1.org1.example.com | [335 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b464b86f]Init get response status: 200 -peer1.org2.example.com | [38f 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [219 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [21a 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [21b 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org2.example.com | [390 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [32f 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2fd40253]Received message INIT from shim -peer0.org1.example.com | [35c 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [336 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b464b86f]Init succeeded. Sending COMPLETED -orderer.example.com | [21c 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -peer1.org2.example.com | [391 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [21d 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org2.example.com | [330 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2fd40253]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [35d 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422624b00 env 0xc422611500 txn 0 -peer1.org1.example.com | [337 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b464b86f]Move state message COMPLETED -orderer.example.com | [21e 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -peer1.org2.example.com | [392 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [35e 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422611500 -orderer.example.com | [21f 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [331 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [35f 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer1.org1.example.com | [338 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b464b86f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [220 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [360 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [339 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b464b86f]send state message COMPLETED -peer1.org2.example.com | [393 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [33a 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b464b86f]Received message COMPLETED from shim -peer0.org1.example.com | [361 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [332 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2fd40253]Received INIT, initializing chaincode -peer1.org2.example.com | [394 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [33b 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b464b86f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [363 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [395 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [33c 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b464b86f-b23f-4631-9afc-1a73d3e4cef6]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [333 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [362 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer1.org1.example.com | [33d 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b464b86f-b23f-4631-9afc-1a73d3e4cef6, channelID:businesschannel -peer1.org2.example.com | [396 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [334 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2fd40253]Init get response status: 200 -peer0.org1.example.com | [364 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [33e 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [397 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [365 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [33f 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [335 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2fd40253]Init succeeded. Sending COMPLETED -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [340 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b464b86f-b23f-4631-9afc-1a73d3e4cef6] -peer1.org2.example.com | [398 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [366 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42272c000, header channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer0.org2.example.com | [336 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2fd40253]Move state message COMPLETED -peer1.org1.example.com | [341 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer1.org2.example.com | [399 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [367 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [342 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [337 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2fd40253]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [39a 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [343 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [338 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2fd40253]send state message COMPLETED -peer0.org1.example.com | [368 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org1.example.com | [344 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org2.example.com | [339 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2fd40253]Received message COMPLETED from shim -peer1.org2.example.com | [39b 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [369 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -peer0.org2.example.com | [33a 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2fd40253]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [345 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org2.example.com | [33b 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2fd40253-1825-4cb0-8a55-93aecb563f04]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [346 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer1.org2.example.com | [39c 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [36a 01-05 06:36:33.24 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 | [33c 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2fd40253-1825-4cb0-8a55-93aecb563f04, channelID:businesschannel -peer1.org1.example.com | [347 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org2.example.com | [33d 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [348 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dba96368]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [36b 01-05 06:36:33.24 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 | [39d 01-05 06:36:33.89 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 | [33e 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [349 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dba96368]Move state message COMPLETED -peer1.org2.example.com | [39e 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [36c 01-05 06:36:33.24 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 | [33f 01-05 06:36:27.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [2fd40253-1825-4cb0-8a55-93aecb563f04] -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org1.example.com | [34a 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dba96368]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [340 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer0.org1.example.com | [36d 01-05 06:36:33.24 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 | [39f 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [341 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [36e 01-05 06:36:33.24 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 | [34b 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dba96368]send state message COMPLETED -peer0.org2.example.com | [342 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [3a0 01-05 06:36:33.89 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 | [34c 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dba96368]Received message COMPLETED from shim -peer0.org1.example.com | [36f 01-05 06:36:33.24 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 | [343 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [34d 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dba96368]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [344 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [370 01-05 06:36:33.24 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 | [34e 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dba963681ecedd116d2a59f5c2b94f23837034d3f97c609e7c07aa4cb9ae56fe]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [345 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -orderer.example.com | [221 01-05 06:36:26.56 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 0xc42000e8c0 gate 1515134186567100600 evaluation starts -peer1.org1.example.com | [34f 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:dba963681ecedd116d2a59f5c2b94f23837034d3f97c609e7c07aa4cb9ae56fe, channelID: -peer0.org1.example.com | [371 01-05 06:36:33.25 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 | [346 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer1.org1.example.com | [350 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [3a1 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [347 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1829a392]Transaction completed. Sending COMPLETED -orderer.example.com | [222 01-05 06:36:26.56 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 0xc42000e8c0 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [351 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [348 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1829a392]Move state message COMPLETED -peer0.org1.example.com | [372 01-05 06:36:33.25 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 | [3a2 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [223 01-05 06:36:26.56 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 0xc42000e8c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [352 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [349 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1829a392]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [373 01-05 06:36:33.25 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 | [3a3 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [353 01-05 06:36:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37824) -peer0.org2.example.com | [34a 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1829a392]send state message COMPLETED -peer0.org1.example.com | [374 01-05 06:36:33.25 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 | [3a4 01-05 06:36:33.89 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 | [354 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [34b 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1829a392]Received message COMPLETED from shim -orderer.example.com | [224 01-05 06:36:26.56 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 0xc42000e8c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer1.org2.example.com | [3a5 01-05 06:36:33.90 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 | [355 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [375 01-05 06:36:33.25 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 | [34c 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1829a392]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [356 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422111ac0 env 0xc421b1dec0 txn 0 -orderer.example.com | [225 01-05 06:36:26.56 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 0xc42000e8c0 principal evaluation fails -peer0.org1.example.com | [376 01-05 06:36:33.25 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 | [34d 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1829a39213c73f27ded5cca7361d8538d2a5cd7a63926e61e599b61fdd61ac2e]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [357 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b1dec0 -peer1.org2.example.com | [3a6 01-05 06:36:33.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [34e 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1829a39213c73f27ded5cca7361d8538d2a5cd7a63926e61e599b61fdd61ac2e, channelID: -orderer.example.com | [226 01-05 06:36:26.56 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 0xc42000e8c0 gate 1515134186567100600 evaluation fails -peer0.org1.example.com | [377 01-05 06:36:33.25 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 | [34f 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [358 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer1.org2.example.com | [3a7 01-05 06:36:33.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [350 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [378 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -orderer.example.com | [227 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [351 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [3a8 01-05 06:36:33.90 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 | [379 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer1.org1.example.com | [359 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [352 01-05 06:36:27.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:47434) -peer1.org2.example.com | [3a9 01-05 06:36:33.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [228 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [353 01-05 06:36:33.61 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer1.org1.example.com | [35a 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [37a 01-05 06:36:33.26 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 | [354 01-05 06:36:33.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [3aa 01-05 06:36:33.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [355 01-05 06:36:33.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -orderer.example.com | [229 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer1.org1.example.com | [35b 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org2.example.com | [356 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org1.example.com | [37b 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [22a 01-05 06:36:26.56 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 0xc42000e8d0 gate 1515134186568033500 evaluation starts -peer1.org2.example.com | [3ab 01-05 06:36:33.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [35c 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [357 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer0.org2.example.com | [358 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org2.example.com | [3ac 01-05 06:36:33.91 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 | [37c 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [35d 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [359 01-05 06:36:33.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -orderer.example.com | [22b 01-05 06:36:26.56 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 0xc42000e8d0 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [3ad 01-05 06:36:33.91 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 | [37d 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [35e 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42198f000, header channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer1.org2.example.com | [3ae 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [35a 01-05 06:36:33.70 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -orderer.example.com | [22c 01-05 06:36:26.56 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 0xc42000e8d0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [3af 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [37e 01-05 06:36:33.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 | [35f 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [35b 01-05 06:36:33.71 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org2.example.com | [3b0 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [22d 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer1.org1.example.com | [360 01-05 06:36:33.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 | [35c 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [3b1 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [37f 01-05 06:36:33.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" -orderer.example.com | [22e 01-05 06:36:26.56 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 0xc42000e8d0 principal matched by identity 0 -peer1.org1.example.com | [361 01-05 06:36:33.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 | [35d 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [3b2 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [35e 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421bbf3c0 env 0xc421bc24b0 txn 0 -orderer.example.com | [22f 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 e5 7c 9a 34 06 03 f4 28 34 13 15 7c fe 8d a8 |v.|.4...(4..|...| -peer1.org1.example.com | [362 01-05 06:36:33.27 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 | [3b3 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [35f 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bc24b0 -peer0.org1.example.com | [380 01-05 06:36:33.28 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 | 00000010 69 5f 1c eb 04 dd 2e f0 2a 17 3d af 17 df 03 cd |i_......*.=.....| -peer1.org2.example.com | [3b4 01-05 06:36:33.91 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 | [363 01-05 06:36:33.27 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 | [381 01-05 06:36:33.28 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 | [360 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer1.org2.example.com | [3b5 01-05 06:36:33.91 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 | [364 01-05 06:36:33.27 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 | [230 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4f 0e ff 7c b0 78 bf 00 88 4a 54 2b |0D. O..|.x...JT+| -peer0.org1.example.com | [382 01-05 06:36:33.28 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 | [361 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [3b6 01-05 06:36:33.91 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 | 00000010 bd 60 0f dd e1 07 58 f1 dc ef b3 ab b0 6f 2d cc |.`....X......o-.| -peer1.org2.example.com | [3b7 01-05 06:36:33.91 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 | [365 01-05 06:36:33.27 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 | [383 01-05 06:36:33.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" -peer1.org2.example.com | [3b8 01-05 06:36:33.91 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 | [362 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 00000020 72 04 41 00 02 20 39 9c 51 b3 da 52 15 23 5e 12 |r.A.. 9.Q..R.#^.| -peer0.org1.example.com | [385 01-05 06:36:33.28 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 | [366 01-05 06:36:33.27 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 | [3b9 01-05 06:36:33.91 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 | [363 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -orderer.example.com | 00000030 46 fa 11 1f 58 04 6c 50 4b 21 b7 28 d6 fa 43 fe |F...X.lPK!.(..C.| -peer0.org1.example.com | [384 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37122 -peer1.org2.example.com | [3ba 01-05 06:36:33.91 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 | [364 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [367 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [3bb 01-05 06:36:33.91 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 | [386 01-05 06:36:33.29 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 | [365 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 00000040 ed 67 f7 cd 3e 94 |.g..>.| -peer1.org1.example.com | [368 01-05 06:36:33.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 | [3bc 01-05 06:36:33.91 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 | [388 01-05 06:36:33.29 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 | [231 01-05 06:36:26.56 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 0xc42000e8d0 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [366 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4222f7000, header channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -peer1.org1.example.com | [369 01-05 06:36:33.27 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 | [3bd 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [389 01-05 06:36:33.29 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 | [367 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [3be 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [232 01-05 06:36:26.56 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 0xc42000e8d0 gate 1515134186568033500 evaluation succeeds -peer1.org1.example.com | [36a 01-05 06:36:33.27 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 | [368 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [387 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228541e0 -peer1.org2.example.com | [3bf 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [233 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [369 01-05 06:36:33.76 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 | [3c0 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [36b 01-05 06:36:33.27 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 | [3c1 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [234 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [38a 01-05 06:36:33.29 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 | [36a 01-05 06:36:33.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [36c 01-05 06:36:33.27 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 | [3c2 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [235 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [3c3 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [38b 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [36d 01-05 06:36:33.27 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 | [36b 01-05 06:36:33.78 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 | [3c4 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [38d 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [236 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer1.org1.example.com | [36e 01-05 06:36:33.27 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 | [3c5 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [36c 01-05 06:36:33.79 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 | [237 01-05 06:36:26.56 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 | [3c6 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [38c 01-05 06:36:33.29 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 | [36f 01-05 06:36:33.27 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 | [36d 01-05 06:36:33.79 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 | [3c7 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [238 01-05 06:36:26.56 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 | [370 01-05 06:36:33.27 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 | [38e 01-05 06:36:33.29 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 | [3c8 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [36e 01-05 06:36:33.79 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 | [371 01-05 06:36:33.27 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 | [3c9 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [239 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [38f 01-05 06:36:33.29 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 | [372 01-05 06:36:33.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 | [3ca 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [36f 01-05 06:36:33.79 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 | [23a 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [390 01-05 06:36:33.29 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 | [373 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [3cb 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [23b 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [370 01-05 06:36:33.79 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 | [391 01-05 06:36:33.29 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 | [3cc 01-05 06:36:33.92 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 | [374 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [371 01-05 06:36:33.79 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 | [23c 01-05 06:36:26.57 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 | [3cd 01-05 06:36:33.92 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 | [375 01-05 06:36:33.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" -peer0.org1.example.com | [392 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3ce 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [372 01-05 06:36:33.79 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 | [23d 01-05 06:36:26.57 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 | [3cf 01-05 06:36:33.92 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 | [376 01-05 06:36:33.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" -peer0.org2.example.com | [373 01-05 06:36:33.79 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 | [3d0 01-05 06:36:33.93 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 | [393 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [23e 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [374 01-05 06:36:33.79 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 | [377 01-05 06:36:33.28 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 | [3d1 01-05 06:36:33.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [23f 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [375 01-05 06:36:33.79 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 | [394 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [378 01-05 06:36:33.28 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 | [376 01-05 06:36:33.79 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 | [3d2 01-05 06:36:33.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [240 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [396 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [377 01-05 06:36:33.79 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 | [379 01-05 06:36:33.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" -peer0.org1.example.com | [397 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [3d3 01-05 06:36:33.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [241 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [378 01-05 06:36:33.79 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 | [37a 01-05 06:36:33.28 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 | [3d4 01-05 06:36:33.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [242 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [379 01-05 06:36:33.79 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 | [398 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [37b 01-05 06:36:33.28 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 | [243 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [37a 01-05 06:36:33.79 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 | [3d5 01-05 06:36:33.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [399 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [37c 01-05 06:36:33.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" -peer0.org2.example.com | [37b 01-05 06:36:33.80 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 | [244 01-05 06:36:26.57 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 | [3d6 01-05 06:36:33.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [37d 01-05 06:36:33.28 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 | [395 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org2.example.com | [3d7 01-05 06:36:33.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [37c 01-05 06:36:33.80 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 | [245 01-05 06:36:26.57 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 | [37e 01-05 06:36:33.28 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 | [39a 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [37d 01-05 06:36:33.80 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 | [246 01-05 06:36:26.57 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 | [37f 01-05 06:36:33.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" -peer1.org2.example.com | [3d8 01-05 06:36:33.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [37e 01-05 06:36:33.80 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 | [39c 01-05 06:36:33.30 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 | [380 01-05 06:36:33.28 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 | [247 01-05 06:36:26.57 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 | [3d9 01-05 06:36:33.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [37f 01-05 06:36:33.80 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 | [39b 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [248 01-05 06:36:26.57 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.org2.example.com | [3da 01-05 06:36:33.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org1.example.com | [381 01-05 06:36:33.28 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 | [249 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [380 01-05 06:36:33.80 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 | [39d 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [3db 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [382 01-05 06:36:33.28 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 | [24a 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [381 01-05 06:36:33.80 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 | [3dc 01-05 06:36:34.00 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [383 01-05 06:36:33.28 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 | [39f 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [24b 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3dd 01-05 06:36:34.00 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 | [382 01-05 06:36:33.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [384 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [24c 01-05 06:36:26.57 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 | [385 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [3a0 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4227a0af0, header 0xc422854390 -orderer.example.com | [24d 01-05 06:36:26.57 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 | [3de 01-05 06:36:34.00 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 | [383 01-05 06:36:33.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [386 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [3a1 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [24e 01-05 06:36:26.57 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 | [387 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [3df 01-05 06:36:34.00 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [24f 01-05 06:36:26.57 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 | [388 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [384 01-05 06:36:33.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [250 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [3e0 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [251 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [3a2 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4 -peer0.org2.example.com | [385 01-05 06:36:33.81 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 | [389 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [252 01-05 06:36:26.57 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 | [3e1 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202d5b20 env 0xc421810150 txn 0 -peer0.org2.example.com | [386 01-05 06:36:33.81 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 | [253 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [39e 01-05 06:36:33.30 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 | [38a 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [254 01-05 06:36:26.57 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 | [3e2 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [387 01-05 06:36:33.81 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 | [38b 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [255 01-05 06:36:26.57 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 | [3e3 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [388 01-05 06:36:33.81 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 | [256 01-05 06:36:26.57 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 -peer0.org1.example.com | [3a3 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4 channel id: -peer1.org2.example.com | [3e4 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [257 01-05 06:36:26.57 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 | [3a4 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [389 01-05 06:36:33.81 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 | [258 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [38c 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [3e5 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -orderer.example.com | [259 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [38a 01-05 06:36:33.81 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 | [3a5 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [25a 01-05 06:36:26.57 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.org2.example.com | [3e6 01-05 06:36:34.01 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 | [38d 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [25b 01-05 06:36:26.57 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 | [3a7 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4 channel id: version: 1.1.0 -peer0.org2.example.com | [38b 01-05 06:36:33.82 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 | [3e7 01-05 06:36:34.01 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 | [38e 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [3a6 01-05 06:36:33.31 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 | [3e8 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [38c 01-05 06:36:33.82 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 | [38f 01-05 06:36:33.29 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 | [3e9 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [3a8 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4,syscc=true,proposal=0xc4227a0af0,canname=lscc:1.1.0 -peer0.org2.example.com | [38d 01-05 06:36:33.82 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 | [390 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org2.example.com | [3ea 01-05 06:36:34.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [38e 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [3aa 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [3eb 01-05 06:36:34.01 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 | [38f 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [391 01-05 06:36:33.29 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 | [3a9 01-05 06:36:33.31 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 | [3ec 01-05 06:36:34.01 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 | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [392 01-05 06:36:33.29 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 | [390 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [3ab 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [393 01-05 06:36:33.29 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 | [3ed 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org1.example.com | [3ac 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [391 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [394 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [3ee 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [3ad 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ff328f5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [392 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [395 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org1.example.com | [3ae 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [3ef 01-05 06:36:34.02 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 | [393 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [396 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer1.org2.example.com | [3f0 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [394 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [3af 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [397 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org2.example.com | [3f1 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3f2 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [3b0 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ff328f5]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [395 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | [398 01-05 06:36:33.30 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 | [3f3 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [3b1 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ff328f5]Move state message TRANSACTION -peer0.org2.example.com | [396 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [3f4 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [399 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [3b2 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2ff328f5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [25c 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [3f5 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [397 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [39a 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [3f6 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [3b3 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [398 01-05 06:36:33.82 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 | [39b 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [3f7 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [3b4 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ff328f5]sending state message TRANSACTION -peer0.org2.example.com | [399 01-05 06:36:33.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3f8 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [39c 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [3b5 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]Received message TRANSACTION from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [3f9 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3b6 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ff328f5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [39a 01-05 06:36:33.82 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 | [3fa 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [39d 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [3b7 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2ff328f5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [3fb 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [39e 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org2.example.com | [39b 01-05 06:36:33.82 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 | [3b8 01-05 06:36:33.33 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 | [3fc 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [39f 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [39c 01-05 06:36:33.82 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 | [3ba 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [3fd 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [3fe 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [39d 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3bb 01-05 06:36:33.34 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 | [3a0 01-05 06:36:33.30 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 | [3ff 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [3bc 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [400 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [39e 01-05 06:36:33.86 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 | [3b9 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]Transaction completed. Sending COMPLETED -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer1.org1.example.com | [3a1 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3bd 01-05 06:36:33.35 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 | [39f 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [401 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3be 01-05 06:36:33.35 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org1.example.com | [3a2 01-05 06:36:33.30 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 | [3c0 01-05 06:36:33.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [3a0 01-05 06:36:33.86 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 | [402 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [3a3 01-05 06:36:33.30 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 | [3bf 01-05 06:36:33.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]Move state message COMPLETED -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org2.example.com | [3a1 01-05 06:36:33.86 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 | [3a4 01-05 06:36:33.30 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 | [3c2 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ff328f5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [403 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org2.example.com | [3a2 01-05 06:36:33.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [3c3 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]send state message COMPLETED -peer1.org1.example.com | [3a5 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer1.org2.example.com | [404 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [3c1 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3a3 01-05 06:36:33.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [3a6 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [3c4 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [405 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3a4 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [3a7 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [25d 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [3c5 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [406 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [3a8 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [3a5 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [3c6 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [407 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [3a9 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [3c7 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [25e 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3a6 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [3c8 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [3aa 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [25f 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3c9 01-05 06:36:33.36 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 | [3a7 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [408 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [3ca 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3ab 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [3a8 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [3cb 01-05 06:36:33.37 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 | [409 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [260 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [3cc 01-05 06:36:33.37 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 | [3a9 01-05 06:36:33.91 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 | [40a 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [3ac 01-05 06:36:33.31 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 | [3cd 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [261 01-05 06:36:26.57 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 | [3ad 01-05 06:36:33.31 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 | [40b 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3aa 01-05 06:36:33.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3ae 01-05 06:36:33.31 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 | [3ce 01-05 06:36:33.37 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 | [40c 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3ab 01-05 06:36:33.91 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 | [3af 01-05 06:36:33.31 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 | [262 01-05 06:36:26.57 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 -peer0.org2.example.com | [3ac 01-05 06:36:33.91 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 | [3cf 01-05 06:36:33.37 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 | [40d 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [3b0 01-05 06:36:33.31 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 | [3ad 01-05 06:36:33.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [3d0 01-05 06:36:33.37 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 | [263 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [3ae 01-05 06:36:33.93 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 | [40e 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [3d1 01-05 06:36:33.37 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 | [3b1 01-05 06:36:33.31 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 | [264 01-05 06:36:26.57 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 | [40f 01-05 06:36:34.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [3af 01-05 06:36:33.93 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 | [3d2 01-05 06:36:33.37 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 | [265 01-05 06:36:26.57 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 | [410 01-05 06:36:34.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [3b2 01-05 06:36:33.31 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 | [3d3 01-05 06:36:33.37 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 | [266 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [3b0 01-05 06:36:33.93 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 | [411 01-05 06:36:34.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid -orderer.example.com | [267 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [3b3 01-05 06:36:33.31 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 | [3d4 01-05 06:36:33.37 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 | [3d5 01-05 06:36:33.37 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [3b4 01-05 06:36:33.31 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 | [412 01-05 06:36:34.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [3b1 01-05 06:36:33.93 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 | [3d6 01-05 06:36:33.37 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [3b2 01-05 06:36:33.93 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 | [3b5 01-05 06:36:33.31 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 | [413 01-05 06:36:34.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [3d7 01-05 06:36:33.38 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 | [3b3 01-05 06:36:33.93 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 | [3b6 01-05 06:36:33.31 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 | [414 01-05 06:36:34.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [3b7 01-05 06:36:33.31 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 | [3d9 01-05 06:36:33.38 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 | [3b4 01-05 06:36:33.93 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [3b8 01-05 06:36:33.31 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 | [415 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [3b5 01-05 06:36:33.93 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 | [3da 01-05 06:36:33.38 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [3b9 01-05 06:36:33.31 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 | [3ba 01-05 06:36:33.31 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 | [3db 01-05 06:36:33.38 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 | [416 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [3bb 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [3dc 01-05 06:36:33.38 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 | [417 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [3bc 01-05 06:36:33.31 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 | [3b6 01-05 06:36:33.93 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 | [3bd 01-05 06:36:33.31 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 | [3b7 01-05 06:36:33.93 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 | [3dd 01-05 06:36:33.38 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 | [418 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [3be 01-05 06:36:33.31 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 | [3b8 01-05 06:36:33.93 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [3de 01-05 06:36:33.38 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 | [3bf 01-05 06:36:33.31 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 | [3b9 01-05 06:36:33.93 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 | [419 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [3c0 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [3ba 01-05 06:36:33.94 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 | [3df 01-05 06:36:33.38 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [3c1 01-05 06:36:33.31 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 | [3bb 01-05 06:36:33.94 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 | [41a 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3bc 01-05 06:36:33.94 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 | [3e0 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [3bd 01-05 06:36:33.94 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 | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org1.example.com | [3c2 01-05 06:36:33.31 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 | [3be 01-05 06:36:33.94 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 | [41b 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [3e1 01-05 06:36:33.38 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 | [3c3 01-05 06:36:33.31 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 | [3bf 01-05 06:36:33.94 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 | [41c 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [3e2 01-05 06:36:33.38 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 | [3c4 01-05 06:36:33.31 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 | [3c0 01-05 06:36:33.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org1.example.com | [3c5 01-05 06:36:33.31 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 | [3c1 01-05 06:36:33.94 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 | [41d 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org1.example.com | [3c6 01-05 06:36:33.32 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 | [3c2 01-05 06:36:33.94 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 | [3e3 01-05 06:36:33.38 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 | [3c7 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org2.example.com | [3c3 01-05 06:36:33.94 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 | [3c8 01-05 06:36:33.32 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 | [3e4 01-05 06:36:33.38 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 | [41e 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [3c4 01-05 06:36:33.94 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 | [3c9 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer1.org2.example.com | [41f 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [3e5 01-05 06:36:33.38 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 | [3c5 01-05 06:36:33.94 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 | [3ca 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | oQmWQsjpiQ== -peer1.org2.example.com | [420 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [3c6 01-05 06:36:33.94 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 | [3cb 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [3e6 01-05 06:36:33.38 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 | [3c7 01-05 06:36:33.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [3cc 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [3e7 01-05 06:36:33.38 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 | [3cd 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3c8 01-05 06:36:33.94 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 | [3ce 01-05 06:36:33.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [421 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [3e8 01-05 06:36:33.38 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 | [3c9 01-05 06:36:33.94 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 | [3cf 01-05 06:36:33.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [268 01-05 06:36:26.57 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 | [3ca 01-05 06:36:33.94 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 | [3d0 01-05 06:36:33.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [422 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [3e9 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [3cb 01-05 06:36:33.94 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 | [3d1 01-05 06:36:33.33 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [3ea 01-05 06:36:33.38 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 | [3cc 01-05 06:36:33.94 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 | [423 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [3d2 01-05 06:36:33.34 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 | [3cd 01-05 06:36:33.94 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 | [3eb 01-05 06:36:33.38 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 | [424 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [3d3 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [3ce 01-05 06:36:33.94 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 | [3d4 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [3ec 01-05 06:36:33.38 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [3cf 01-05 06:36:33.95 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 | [425 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [3d5 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [3ed 01-05 06:36:33.38 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 | [426 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [3d0 01-05 06:36:33.95 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 | [3d6 01-05 06:36:33.37 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 | [3ee 01-05 06:36:33.38 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [427 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [3d7 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [3d1 01-05 06:36:33.95 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 | [428 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [3ef 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [3d8 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [3da 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [3db 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [3d2 01-05 06:36:33.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org2.example.com | [429 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [3dc 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [3f0 01-05 06:36:33.38 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 | [3d3 01-05 06:36:33.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org2.example.com | [42a 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [3dd 01-05 06:36:33.37 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 | [3f1 01-05 06:36:33.38 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 | [3d4 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org2.example.com | [3d5 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [42b 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [3de 01-05 06:36:33.37 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 | [3f2 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org2.example.com | [3d6 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [3df 01-05 06:36:33.37 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 | [3f3 01-05 06:36:33.39 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 | [42c 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org2.example.com | [42d 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [3d7 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [3e0 01-05 06:36:33.37 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 | [3d8 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ff328f5]Received message COMPLETED from shim -peer1.org2.example.com | [42e 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [3e1 01-05 06:36:33.37 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 | [42f 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [3f4 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2ff328f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org2.example.com | [3d8 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [3e2 01-05 06:36:33.37 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 | [3f5 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [430 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [3f6 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4, channelID: -peer1.org1.example.com | [3e3 01-05 06:36:33.37 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 | [3d9 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [431 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [269 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [3f7 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [3e4 01-05 06:36:33.37 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 | [432 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [3da 01-05 06:36:33.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -orderer.example.com | [26a 01-05 06:36:26.57 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 | [26b 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3db 01-05 06:36:33.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [3e5 01-05 06:36:33.37 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 | [433 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [3f8 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [26c 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [3dc 01-05 06:36:33.99 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [3f9 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [3e6 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [26d 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [3fa 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [3dd 01-05 06:36:33.99 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 | [3de 01-05 06:36:33.99 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 | [3df 01-05 06:36:33.99 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 | [434 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3fb 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [3e7 01-05 06:36:33.37 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 | [26e 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [435 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [3fc 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [3e0 01-05 06:36:33.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [26f 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [436 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [3fd 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [3e8 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [3e1 01-05 06:36:33.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421bbf3c0 env 0xc421bc24b0 txn 0 -orderer.example.com | [270 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [437 01-05 06:36:34.09 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 | [3fe 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [3e9 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [3e2 01-05 06:36:33.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [271 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [438 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [439 01-05 06:36:34.09 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 | [3ff 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [400 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [3e3 01-05 06:36:33.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [272 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3ea 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [43a 01-05 06:36:34.09 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 | [401 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [273 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [3e4 01-05 06:36:33.99 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [3eb 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [43b 01-05 06:36:34.09 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 | [402 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37122) -peer0.org1.example.com | [403 01-05 06:36:33.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [404 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [405 01-05 06:36:33.56 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 | [406 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [274 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [3e5 01-05 06:36:33.99 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 | [3ec 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [43c 01-05 06:36:34.09 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 | [407 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [275 01-05 06:36:26.57 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 | [3e6 01-05 06:36:34.01 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 | [3ed 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [43d 01-05 06:36:34.09 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 | [408 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [276 01-05 06:36:26.57 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 | [3e7 01-05 06:36:34.01 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 | [3e8 01-05 06:36:34.01 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 | [3e9 01-05 06:36:34.02 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 | [3ea 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [3ee 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [409 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422624b00 env 0xc422611500 txn 0 -peer1.org2.example.com | [43e 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -orderer.example.com | [277 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3eb 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [3ef 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [40a 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [43f 01-05 06:36:34.10 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] -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [3ec 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [3f0 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [40b 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [40c 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [40d 01-05 06:36:33.57 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 | [440 01-05 06:36:34.10 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{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer1.org2.example.com | ] -peer1.org2.example.com | [441 01-05 06:36:34.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=12191, bytesLength=12093] for tx ID: [] to index -peer1.org2.example.com | [442 01-05 06:36:34.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=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [443 01-05 06:36:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [444 01-05 06:36:34.11 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 | [3f1 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3ed 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [3ee 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org1.example.com | [40e 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org1.example.com | [40f 01-05 06:36:33.58 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 | [3f2 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [3f3 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3f4 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [3f5 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [3f6 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [3f7 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [3f8 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [3f9 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3fa 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [3fb 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [3d9 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422111ac0 env 0xc421b1dec0 txn 0 -peer1.org2.example.com | [445 01-05 06:36:34.11 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 | [446 01-05 06:36:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [3fc 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [410 01-05 06:36:33.58 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 | [3ef 01-05 06:36:34.02 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 | [447 01-05 06:36:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [3fd 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [411 01-05 06:36:33.58 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 | [3f0 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [448 01-05 06:36:34.11 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 | [449 01-05 06:36:34.11 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 | [44a 01-05 06:36:34.11 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 | [44b 01-05 06:36:34.11 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 | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org1.example.com | [412 01-05 06:36:33.58 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 | [3f1 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [3fe 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [44c 01-05 06:36:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org1.example.com | [413 01-05 06:36:33.58 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 | [3ff 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [414 01-05 06:36:33.58 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 | [3f2 01-05 06:36:34.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [44d 01-05 06:36:34.11 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [400 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [415 01-05 06:36:33.58 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 | [3f3 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [44e 01-05 06:36:34.11 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 | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [278 01-05 06:36:26.57 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [401 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [402 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3f4 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [44f 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [416 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [403 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3f5 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [450 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [417 01-05 06:36:33.58 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 | [3f6 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [3f7 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3f8 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3f9 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3fa 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3fb 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3fc 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [3fd 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [3fe 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3ff 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [400 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [401 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [402 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [403 01-05 06:36:34.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [404 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [451 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [418 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [404 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [405 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [419 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [452 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [405 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [406 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [41a 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [453 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [406 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org1.example.com | [407 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [454 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [455 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [407 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [41b 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [408 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [456 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [41c 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [408 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [41d 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [457 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [279 01-05 06:36:26.58 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 | [27a 01-05 06:36:26.58 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 | [27b 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [409 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [409 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [40a 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [40b 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [40c 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [40d 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [41e 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [458 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [459 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [45a 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [45b 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [45c 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421daf420 env 0xc421d0b290 txn 0 -peer1.org2.example.com | [45d 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d0b290 -peer1.org1.example.com | [40a 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [41f 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [420 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [40e 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [40f 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [410 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [411 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [412 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [27c 01-05 06:36:26.58 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 -peer1.org2.example.com | [45e 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer1.org2.example.com | [45f 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [421 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [422 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [423 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [460 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [424 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [425 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [413 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [414 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [415 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [416 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [417 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [27d 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org2.example.com | [461 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org1.example.com | [40b 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [426 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [418 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [27e 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org1.example.com | [427 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [419 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [462 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [27f 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [428 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [41a 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [40c 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [280 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org2.example.com | [463 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [429 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [41b 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [40d 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [281 01-05 06:36:26.58 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 -peer1.org2.example.com | [464 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422636000, header channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer0.org1.example.com | [42a 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [41c 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [465 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [282 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org1.example.com | [42b 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [41d 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [40e 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [283 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org1.example.com | [42c 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [466 01-05 06:36:34.12 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 | [41e 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [284 01-05 06:36:26.58 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 -peer0.org1.example.com | [42d 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [40f 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [467 01-05 06:36:34.12 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 | [285 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [42e 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [41f 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [468 01-05 06:36:34.12 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 | [420 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [469 01-05 06:36:34.12 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 | [410 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [286 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [42f 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [421 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [411 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [287 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [46a 01-05 06:36:34.12 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 | [430 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [422 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [412 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [46b 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [288 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [431 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [413 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [423 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [46c 01-05 06:36:34.12 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 | [432 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [414 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [289 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org2.example.com | [424 01-05 06:36:34.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [415 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [46d 01-05 06:36:34.12 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 | [433 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [416 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [28a 01-05 06:36:26.58 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 -peer1.org2.example.com | [46e 01-05 06:36:34.12 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 | [417 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [425 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [434 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [28b 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org1.example.com | [418 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [46f 01-05 06:36:34.12 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 | [426 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [419 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [41a 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [28c 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org2.example.com | [427 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [435 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [470 01-05 06:36:34.12 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 | [41b 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [436 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [428 01-05 06:36:34.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [471 01-05 06:36:34.12 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 | [41c 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [28d 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [437 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [41d 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [429 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [472 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [28e 01-05 06:36:26.58 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 -peer1.org1.example.com | [41e 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [42a 01-05 06:36:34.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [438 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [473 01-05 06:36:34.12 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 | [42b 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [41f 01-05 06:36:33.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [42c 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [420 01-05 06:36:33.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [439 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [474 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [28f 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [42d 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [421 01-05 06:36:33.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [475 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [290 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [42e 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [291 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [476 01-05 06:36:34.12 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 | [43a 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [42f 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [422 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [292 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org2.example.com | [477 01-05 06:36:34.12 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 | [43b 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [430 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [293 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [423 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [431 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [478 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [43c 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [294 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org1.example.com | [424 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [432 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [43d 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [295 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [479 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [296 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org1.example.com | [425 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [43e 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [47a 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [433 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [297 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [43f 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [47b 01-05 06:36:34.12 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 | [426 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [434 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [298 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [427 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [440 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [47c 01-05 06:36:34.12 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 | [435 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [299 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [428 01-05 06:36:33.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [47d 01-05 06:36:34.12 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 | [441 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [436 01-05 06:36:34.10 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 | [29a 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [442 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [429 01-05 06:36:33.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [47e 01-05 06:36:34.12 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 | [437 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | [29b 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [443 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [47f 01-05 06:36:34.12 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 | [29c 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [438 01-05 06:36:34.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [42a 01-05 06:36:33.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [480 01-05 06:36:34.12 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 | [29d 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [439 01-05 06:36:34.11 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 | [444 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [481 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [42b 01-05 06:36:33.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [43a 01-05 06:36:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [29e 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [445 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [43b 01-05 06:36:34.11 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 | [482 01-05 06:36:34.13 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 | [29f 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [42c 01-05 06:36:33.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [43c 01-05 06:36:34.11 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 | [446 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [483 01-05 06:36:34.13 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 | [43d 01-05 06:36:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -orderer.example.com | [2a0 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [42d 01-05 06:36:33.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [447 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [43e 01-05 06:36:34.11 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 | [484 01-05 06:36:34.13 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 | [2a1 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [448 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [43f 01-05 06:36:34.12 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{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= -peer1.org1.example.com | [42e 01-05 06:36:33.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 | txId= locPointer=offset=70, bytesLength=12093 -orderer.example.com | [2a2 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | ] -peer1.org2.example.com | [485 01-05 06:36:34.13 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 | [449 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [42f 01-05 06:36:33.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | [2a3 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [440 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -peer1.org2.example.com | [486 01-05 06:36:34.13 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 | [430 01-05 06:36:33.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 [] -peer0.org1.example.com | [44a 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [441 01-05 06:36:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [2a4 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [431 01-05 06:36:33.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 | [487 01-05 06:36:34.13 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 | [442 01-05 06:36:34.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=[26079], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org1.example.com | [44b 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [2a5 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [432 01-05 06:36:33.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 | [488 01-05 06:36:34.13 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 | [443 01-05 06:36:34.12 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 | [44c 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [433 01-05 06:36:33.44 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 | [444 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -orderer.example.com | [2a6 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [44d 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [489 01-05 06:36:34.13 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 | [445 01-05 06:36:34.13 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 | [434 01-05 06:36:33.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [2a7 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [446 01-05 06:36:34.13 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 | [44e 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [435 01-05 06:36:33.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -orderer.example.com | [2a8 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [447 01-05 06:36:34.13 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 | [48a 01-05 06:36:34.13 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 | [44f 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [2a9 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [436 01-05 06:36:33.50 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 | [448 01-05 06:36:34.13 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 | [450 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [48b 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [2aa 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [437 01-05 06:36:33.51 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{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= -peer0.org2.example.com | [449 01-05 06:36:34.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)=[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 | [48c 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [451 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [44a 01-05 06:36:34.13 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 | [2ab 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer0.org1.example.com | [452 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [48d 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [44b 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -orderer.example.com | [2ac 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org1.example.com | ] -peer0.org1.example.com | [453 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [44c 01-05 06:36:34.13 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 | [48e 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [438 01-05 06:36:33.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -orderer.example.com | [2ad 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [48f 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [454 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [2ae 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [44d 01-05 06:36:34.13 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 | [455 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [439 01-05 06:36:33.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [490 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [44e 01-05 06:36:34.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 [1] -orderer.example.com | [2af 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [456 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [43a 01-05 06:36:33.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [491 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [2b0 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [44f 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [457 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [492 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [43b 01-05 06:36:33.51 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -orderer.example.com | [2b1 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [450 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [493 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [458 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [43c 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -orderer.example.com | [2b2 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [451 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [43d 01-05 06:36:33.52 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 | [459 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [494 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [452 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [495 01-05 06:36:34.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [2b3 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [45a 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [496 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [43e 01-05 06:36:33.52 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 | [453 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [2b4 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [497 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [45b 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [43f 01-05 06:36:33.52 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 | [454 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [2b5 01-05 06:36:26.58 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 -peer1.org2.example.com | [498 01-05 06:36:34.14 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 | [440 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [455 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [2b6 01-05 06:36:26.58 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:44082 -peer1.org2.example.com | [499 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [45c 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [441 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -orderer.example.com | [2b7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [456 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [45d 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [49a 01-05 06:36:34.14 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 | [45e 01-05 06:36:33.60 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 | [2b8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [457 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [45f 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [49b 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [442 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [460 01-05 06:36:33.60 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 | [2b9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [49c 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [458 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [461 01-05 06:36:33.60 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 | [443 01-05 06:36:33.52 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 | [49d 01-05 06:36:34.14 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 | [462 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [2ba 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [463 01-05 06:36:33.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 | [49e 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [444 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org2.example.com | [459 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [464 01-05 06:36:33.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 | [49f 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2bb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [445 01-05 06:36:33.52 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 | [465 01-05 06:36:33.60 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 | [45b 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421ca0bc0 env 0xc421a28000 txn 0 -orderer.example.com | [2bc 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [466 01-05 06:36:33.62 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 | [4a0 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [45c 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a28000 -peer1.org1.example.com | [446 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org1.example.com | [467 01-05 06:36:33.62 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{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= -orderer.example.com | [2bd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [4a1 01-05 06:36:34.14 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 | [45d 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer1.org1.example.com | [447 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer1.org2.example.com | [4a2 01-05 06:36:34.14 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 | [45e 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [448 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | ] -orderer.example.com | [2be 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [4a3 01-05 06:36:34.15 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 | [45f 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [468 01-05 06:36:33.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -peer1.org1.example.com | [449 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [2bf 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [460 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org1.example.com | [469 01-05 06:36:33.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [4a4 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2c0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [461 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [46a 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org1.example.com | [44a 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2c1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [46b 01-05 06:36:33.63 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 | [4a5 01-05 06:36:34.15 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 | [46c 01-05 06:36:33.63 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 | [44b 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [462 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [46d 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -orderer.example.com | [2c2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [4a6 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [46e 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -orderer.example.com | [2c3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [463 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b51000, header channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer1.org1.example.com | [44c 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [4a7 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [2c4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [46f 01-05 06:36:33.63 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 | [4a8 01-05 06:36:34.15 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 | [464 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [44d 01-05 06:36:33.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [4a9 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [2c5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4aa 01-05 06:36:34.15 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 | [465 01-05 06:36:34.14 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 | [470 01-05 06:36:33.63 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 | [44e 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4ab 01-05 06:36:34.15 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 | [2c6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [471 01-05 06:36:33.63 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 01-05 06:36:34.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.org2.example.com | [4ac 01-05 06:36:34.15 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 | [44f 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [472 01-05 06:36:33.63 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 | [2c7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [4ad 01-05 06:36:34.15 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 | [473 01-05 06:36:33.63 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 | [474 01-05 06:36:33.63 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 | [450 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [4ae 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [2c8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [467 01-05 06:36:34.14 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 | [4af 01-05 06:36:34.15 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 | [475 01-05 06:36:33.64 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 | [2c9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [4b0 01-05 06:36:34.15 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 | [468 01-05 06:36:34.14 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 | [4b1 01-05 06:36:34.15 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 | [451 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [476 01-05 06:36:33.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 [1] -peer1.org2.example.com | [4b2 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [2ca 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [469 01-05 06:36:34.14 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 | [4b3 01-05 06:36:34.15 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 | [477 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [452 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [4b4 01-05 06:36:34.15 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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [46a 01-05 06:36:34.14 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 | [453 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421f3ee80 env 0xc421f3ad80 txn 0 -peer0.org1.example.com | [478 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [4b5 01-05 06:36:34.15 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 | [46b 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [479 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [454 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f3ad80 -peer1.org2.example.com | [4b6 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [46c 01-05 06:36:34.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 | [455 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer0.org1.example.com | [47a 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4b7 01-05 06:36:34.15 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 | [46d 01-05 06:36:34.14 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 | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer1.org1.example.com | [456 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [46e 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [47b 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4b8 01-05 06:36:34.15 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 | [46f 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [457 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [47c 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [4b9 01-05 06:36:34.15 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 | [470 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org1.example.com | [458 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [4ba 01-05 06:36:34.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 -peer0.org1.example.com | [47d 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org2.example.com | [471 01-05 06:36:34.14 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 | [4bb 01-05 06:36:34.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 | [459 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [47e 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4bc 01-05 06:36:34.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/AnchorPeers -peer0.org2.example.com | [472 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [45a 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4bd 01-05 06:36:34.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 -peer0.org2.example.com | [473 01-05 06:36:34.14 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 | [47f 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4be 01-05 06:36:34.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 -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org1.example.com | [45b 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422852000, header channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer0.org2.example.com | [474 01-05 06:36:34.14 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 | [4bf 01-05 06:36:34.16 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 | [480 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [45c 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [45d 01-05 06:36:33.53 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 | [475 01-05 06:36:34.14 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 | [481 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org2.example.com | [4c0 01-05 06:36:34.16 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 | [45e 01-05 06:36:33.53 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 | [482 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [476 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [4c1 01-05 06:36:34.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.org2.example.com | [4c2 01-05 06:36:34.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/AnchorPeers -peer0.org2.example.com | [477 01-05 06:36:34.14 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 | [483 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421821d00 env 0xc42190b6e0 txn 0 -peer1.org1.example.com | [45f 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [4c3 01-05 06:36:34.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 -peer0.org1.example.com | [484 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42190b6e0 -peer0.org2.example.com | [478 01-05 06:36:34.14 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 | [2cb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [460 01-05 06:36:33.53 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 | [4c4 01-05 06:36:34.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 -peer0.org1.example.com | [485 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [479 01-05 06:36:34.14 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 | [4c5 01-05 06:36:34.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 -peer0.org1.example.com | [486 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [461 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [47a 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [487 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [4c6 01-05 06:36:34.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 -peer1.org1.example.com | [462 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [47b 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [488 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [4c7 01-05 06:36:34.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 | [463 01-05 06:36:33.53 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 | [47c 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [489 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4c8 01-05 06:36:34.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 | [464 01-05 06:36:33.53 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 | [47d 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [4c9 01-05 06:36:34.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 -peer0.org1.example.com | [48a 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [465 01-05 06:36:33.53 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [47e 01-05 06:36:34.14 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 | [4ca 01-05 06:36:34.16 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 | [48b 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4224bf000, header channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -peer1.org1.example.com | [466 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org2.example.com | [47f 01-05 06:36:34.14 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 | [4cb 01-05 06:36:34.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 | [467 01-05 06:36:33.53 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 | [48c 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [480 01-05 06:36:34.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.org2.example.com | [4cc 01-05 06:36:34.16 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 | [48d 01-05 06:36:33.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 | [468 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org2.example.com | [481 01-05 06:36:34.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" -peer0.org1.example.com | [48e 01-05 06:36:33.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 | [4cd 01-05 06:36:34.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 | [469 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [48f 01-05 06:36:33.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 -peer0.org2.example.com | [482 01-05 06:36:34.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.org2.example.com | [4ce 01-05 06:36:34.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 | [46a 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org1.example.com | [46b 01-05 06:36:33.53 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 | [483 01-05 06:36:34.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" -peer0.org1.example.com | [490 01-05 06:36:33.64 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 | [4cf 01-05 06:36:34.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 | [46c 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [484 01-05 06:36:34.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.org2.example.com | [4d0 01-05 06:36:34.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 | [46d 01-05 06:36:33.53 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 | [491 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [2cc 01-05 06:36:26.59 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 -peer1.org2.example.com | [4d1 01-05 06:36:34.16 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 | [485 01-05 06:36:34.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.org2.example.com | [4d2 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [492 01-05 06:36:33.64 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 | [46e 01-05 06:36:33.53 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 | [486 01-05 06:36:34.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" -orderer.example.com | [2cd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [4d3 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [493 01-05 06:36:33.64 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 | [487 01-05 06:36:34.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 | [46f 01-05 06:36:33.53 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 | [2ce 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4d4 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [488 01-05 06:36:34.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.org2.example.com | [4d5 01-05 06:36:34.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 | [470 01-05 06:36:33.53 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 | [489 01-05 06:36:34.15 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 | [2cf 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [494 01-05 06:36:33.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 | [4d6 01-05 06:36:34.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 | [471 01-05 06:36:33.53 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 | [48a 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [2d0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [472 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [495 01-05 06:36:33.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 | [4d7 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [48b 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [2d1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [473 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [496 01-05 06:36:33.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 -peer0.org2.example.com | [48c 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [474 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [4d8 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -orderer.example.com | [2d2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [497 01-05 06:36:33.64 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 | [48d 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [475 01-05 06:36:33.53 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 | [2d3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [4d9 01-05 06:36:34.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 | [476 01-05 06:36:33.53 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 | [498 01-05 06:36:33.64 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 | [48e 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [2d4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [4da 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [477 01-05 06:36:33.53 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 | [499 01-05 06:36:33.64 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 | [478 01-05 06:36:33.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4db 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [2d5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [48f 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [49a 01-05 06:36:33.64 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 | [479 01-05 06:36:33.53 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 | [2d6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [4dc 01-05 06:36:34.18 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 | [490 01-05 06:36:34.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 | [47a 01-05 06:36:33.53 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 | [2d7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org1.example.com | [47b 01-05 06:36:33.53 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 | [49b 01-05 06:36:33.64 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 | [4dd 01-05 06:36:34.18 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 | [47c 01-05 06:36:33.53 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 | [491 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [2d8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [47d 01-05 06:36:33.53 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 | [4de 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [49c 01-05 06:36:33.64 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 | [492 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [47e 01-05 06:36:33.53 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 | [49d 01-05 06:36:33.64 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 | [47f 01-05 06:36:33.53 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 | [4df 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421daf420 env 0xc421d0b290 txn 0 -peer0.org2.example.com | [493 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [480 01-05 06:36:33.53 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [49e 01-05 06:36:33.64 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 | [481 01-05 06:36:33.53 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 | [4e0 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [494 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [482 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [49f 01-05 06:36:33.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" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [483 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [4e1 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [495 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [484 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [4a0 01-05 06:36:33.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 | [496 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4e2 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [485 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [486 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [497 01-05 06:36:34.15 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 | [4a1 01-05 06:36:33.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.org1.example.com | [487 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4e3 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [488 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [4a2 01-05 06:36:33.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 | [4e4 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [498 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [4e5 01-05 06:36:34.18 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 | [4a3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [499 01-05 06:36:34.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 | [489 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [4a4 01-05 06:36:33.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 | [4e6 01-05 06:36:34.18 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 | [49a 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org1.example.com | [48a 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [4a5 01-05 06:36:33.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 | [4e7 01-05 06:36:34.18 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 | [49b 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [4a6 01-05 06:36:33.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" -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer1.org1.example.com | [48b 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [4e8 01-05 06:36:34.18 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 | [49c 01-05 06:36:34.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 | [48c 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [4a7 01-05 06:36:33.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 | [4e9 01-05 06:36:34.18 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 | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org2.example.com | [49d 01-05 06:36:34.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 | [48d 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [4a8 01-05 06:36:33.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 | [4ea 01-05 06:36:34.18 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 | oQmWQsjpiQ== -peer0.org2.example.com | [49e 01-05 06:36:34.15 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 | [4a9 01-05 06:36:33.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 | [4eb 01-05 06:36:34.18 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [49f 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [4aa 01-05 06:36:33.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.org1.example.com | [48e 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4ec 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [2d9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [48f 01-05 06:36:33.54 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 | [4ab 01-05 06:36:33.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 | [4a0 01-05 06:36:34.15 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [490 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4ed 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org1.example.com | [4ac 01-05 06:36:33.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" -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [4a1 01-05 06:36:34.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.org2.example.com | [4ee 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [491 01-05 06:36:33.54 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 | [4ad 01-05 06:36:33.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 | [4ef 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [4ae 01-05 06:36:33.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 | [4a2 01-05 06:36:34.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 | [492 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [4f0 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [4af 01-05 06:36:33.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 | [4f1 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [493 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [4f2 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [4b0 01-05 06:36:33.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.org2.example.com | [45a 01-05 06:36:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [494 01-05 06:36:33.54 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 | [4f3 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [4f4 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [495 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [4a3 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [4b1 01-05 06:36:33.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 | [4f5 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [496 01-05 06:36:33.54 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 | [4f6 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [4b2 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [4f7 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [497 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [4a4 01-05 06:36:34.15 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 | [4f8 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [4b3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [4f9 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [498 01-05 06:36:33.54 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 | [4a5 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [4b4 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [4fa 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [499 01-05 06:36:33.54 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 | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [4a6 01-05 06:36:34.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.org2.example.com | [4fb 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [4b5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [49a 01-05 06:36:33.54 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 | [4fc 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [4a7 01-05 06:36:34.15 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 | [4b6 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org1.example.com | [49b 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [4fd 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [4a8 01-05 06:36:34.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org1.example.com | [4b7 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [4a9 01-05 06:36:34.16 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 | jTZ94VyvHhJOn4fshoU= -peer1.org2.example.com | [4fe 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [49c 01-05 06:36:33.54 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 | [4b8 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [4aa 01-05 06:36:34.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 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [4ff 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [4ab 01-05 06:36:34.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 -peer0.org1.example.com | [4b9 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [49d 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2da 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [4ac 01-05 06:36:34.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 | [49e 01-05 06:36:33.54 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 | [4ad 01-05 06:36:34.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 -peer0.org1.example.com | [4ba 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [500 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [2db 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [4ae 01-05 06:36:34.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 -peer0.org1.example.com | [4bb 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [49f 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [4af 01-05 06:36:34.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.org2.example.com | [501 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [4b0 01-05 06:36:34.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 -orderer.example.com | [2dc 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [4a0 01-05 06:36:33.54 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 | [4bc 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [4b1 01-05 06:36:34.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.org2.example.com | [502 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2dd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [4b2 01-05 06:36:34.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.org2.example.com | [503 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [4a1 01-05 06:36:33.54 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 | [4b3 01-05 06:36:34.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 -orderer.example.com | [2de 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [4bd 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [504 01-05 06:36:34.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [4b4 01-05 06:36:34.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 -peer0.org1.example.com | [4be 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [2df 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [4b5 01-05 06:36:34.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 | [4a2 01-05 06:36:33.54 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 | [505 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [4bf 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2e0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [4b6 01-05 06:36:34.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 | [4a3 01-05 06:36:33.54 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 | [506 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [4b7 01-05 06:36:34.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 -orderer.example.com | [2e1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [4b8 01-05 06:36:34.16 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 | [4a4 01-05 06:36:33.54 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 | [4c0 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [4b9 01-05 06:36:34.16 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 | [2e2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [4a5 01-05 06:36:33.54 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 | [4ba 01-05 06:36:34.16 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 | [2e3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [4c1 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [2e4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [4bb 01-05 06:36:34.16 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 | [507 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [4bc 01-05 06:36:34.16 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 | [4a6 01-05 06:36:33.54 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 | [4c2 01-05 06:36:33.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 | [508 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [4bd 01-05 06:36:34.16 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 | [4a7 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [4a8 01-05 06:36:33.54 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 | [509 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [4be 01-05 06:36:34.16 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org1.example.com | [4c3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [4bf 01-05 06:36:34.16 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 | [4a9 01-05 06:36:33.54 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 | [50a 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [4c4 01-05 06:36:33.65 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 | [4aa 01-05 06:36:33.54 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 | [50b 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [4c0 01-05 06:36:34.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 -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [4c5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [4ab 01-05 06:36:33.54 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 | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [4c1 01-05 06:36:34.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/AnchorPeers -peer1.org2.example.com | [50c 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [4c6 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org2.example.com | [4c2 01-05 06:36:34.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 | [4ac 01-05 06:36:33.54 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 | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [50d 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [4c7 01-05 06:36:33.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 | [4c3 01-05 06:36:34.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 | [4ad 01-05 06:36:33.54 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 | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org2.example.com | [4c4 01-05 06:36:34.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 -peer0.org1.example.com | [4c8 01-05 06:36:33.65 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 | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org1.example.com | [4ae 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | vA2BLfriqQ== -peer0.org1.example.com | [4c9 01-05 06:36:33.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.org2.example.com | [4c5 01-05 06:36:34.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 -peer1.org2.example.com | [50e 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [4af 01-05 06:36:33.54 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 | [4ca 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [2e5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [4c6 01-05 06:36:34.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.org2.example.com | [50f 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [4b0 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [4c7 01-05 06:36:34.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 -peer0.org1.example.com | [4cb 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [510 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [4b1 01-05 06:36:33.54 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 | [4c8 01-05 06:36:34.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 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [4cc 01-05 06:36:33.65 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 | [4b2 01-05 06:36:33.54 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org2.example.com | [511 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [4c9 01-05 06:36:34.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 | [4b3 01-05 06:36:33.54 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [4cd 01-05 06:36:33.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 | [4ca 01-05 06:36:34.16 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 | [512 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [4b4 01-05 06:36:33.54 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 | [4ce 01-05 06:36:33.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.org2.example.com | [4cb 01-05 06:36:34.16 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 | [513 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org2.example.com | [4cc 01-05 06:36:34.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 | [4b5 01-05 06:36:33.54 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 | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org1.example.com | [4cf 01-05 06:36:33.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.org1.example.com | [4b6 01-05 06:36:33.54 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org2.example.com | [514 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [4cd 01-05 06:36:34.16 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 | [4d0 01-05 06:36:33.65 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 | [4b7 01-05 06:36:33.54 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 | [4d1 01-05 06:36:33.65 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 | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org2.example.com | [4ce 01-05 06:36:34.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 | [4b8 01-05 06:36:33.54 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 | [4d2 01-05 06:36:33.65 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 | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer1.org2.example.com | [515 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [4d3 01-05 06:36:33.65 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 | [4cf 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer1.org1.example.com | [4b9 01-05 06:36:33.54 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 | [516 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [4d4 01-05 06:36:33.65 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [4d0 01-05 06:36:34.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 | [4ba 01-05 06:36:33.54 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 | [4d5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [2e6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [517 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [4bb 01-05 06:36:33.54 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 | [4d6 01-05 06:36:33.65 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 | [2e7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org2.example.com | [4d1 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [4d7 01-05 06:36:33.65 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 | [518 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [2e8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [4d8 01-05 06:36:33.65 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 | [4bc 01-05 06:36:33.54 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 | [2e9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [4d9 01-05 06:36:33.65 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 | [4d2 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [519 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [2ea 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [4da 01-05 06:36:33.65 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 | [4bd 01-05 06:36:33.54 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 | [4d3 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [2eb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [4db 01-05 06:36:33.65 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 | [51a 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [2ec 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org1.example.com | [4be 01-05 06:36:33.54 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 | [4dc 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [2ed 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org2.example.com | [4d4 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [4dd 01-05 06:36:33.65 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 | [51b 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [2ee 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org1.example.com | [4bf 01-05 06:36:33.54 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 | [4de 01-05 06:36:33.65 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 | [2ef 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [51c 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [4c0 01-05 06:36:33.54 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 | [4df 01-05 06:36:33.65 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 | [2f0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org2.example.com | [4d5 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [51d 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [4e0 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [2f1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org1.example.com | [4c1 01-05 06:36:33.54 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 | [4e1 01-05 06:36:33.65 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 | [51e 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [2f2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [4d6 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [4e2 01-05 06:36:33.65 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 | [4c2 01-05 06:36:33.54 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 | [51f 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [4d7 01-05 06:36:34.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [4e3 01-05 06:36:33.65 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 | [4c3 01-05 06:36:33.54 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 | [2f3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org2.example.com | [4d8 01-05 06:36:34.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [520 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [4e4 01-05 06:36:33.65 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 | [4c4 01-05 06:36:33.54 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 | [4d9 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [4e5 01-05 06:36:33.65 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 | [521 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [2f4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org1.example.com | [4c5 01-05 06:36:33.54 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 | [4e6 01-05 06:36:33.65 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 | [522 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [2f5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org2.example.com | [4da 01-05 06:36:34.19 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 | [4c6 01-05 06:36:33.54 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 | [4e7 01-05 06:36:33.65 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 | [523 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [2f6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org2.example.com | [4db 01-05 06:36:34.19 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 | [4e8 01-05 06:36:33.65 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 | [4c7 01-05 06:36:33.54 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 | [524 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [4dc 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [2f7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer1.org1.example.com | [4c8 01-05 06:36:33.54 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 | [4e9 01-05 06:36:33.65 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 | [4c9 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [4dd 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [2f8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer1.org2.example.com | [525 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [4ea 01-05 06:36:33.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/Writers -peer0.org2.example.com | [4de 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421ca0bc0 env 0xc421a28000 txn 0 -peer1.org1.example.com | [4ca 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [2f9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [526 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [4eb 01-05 06:36:33.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 -orderer.example.com | [2fa 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org2.example.com | [4df 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [527 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [4cb 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [4e0 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [4ec 01-05 06:36:33.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/Readers -orderer.example.com | [2fb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [528 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [4ed 01-05 06:36:33.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 -peer1.org1.example.com | [4cc 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [529 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [2fc 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [4e1 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [4cd 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [4ee 01-05 06:36:33.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 | [4e2 01-05 06:36:34.19 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 | [52a 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [2fd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [4e3 01-05 06:36:34.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] -peer1.org1.example.com | [4ce 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [4ef 01-05 06:36:33.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 -orderer.example.com | [2fe 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [4e4 01-05 06:36:34.19 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 | [52b 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [2ff 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [4cf 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [4f0 01-05 06:36:33.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 -orderer.example.com | [300 01-05 06:36:26.59 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 | [4e5 01-05 06:36:34.19 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 | [52c 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [4e6 01-05 06:36:34.19 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 | [4d0 01-05 06:36:33.55 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 | [4f1 01-05 06:36:33.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 | [301 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [52d 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [4e7 01-05 06:36:34.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] -peer1.org1.example.com | [4d1 01-05 06:36:33.55 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [4f2 01-05 06:36:33.65 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 | [52e 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [302 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [4d2 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [4e8 01-05 06:36:34.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 | [4f3 01-05 06:36:33.65 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 | [52f 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [303 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [4e9 01-05 06:36:34.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 -peer1.org1.example.com | [4d3 01-05 06:36:33.56 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 | [4f4 01-05 06:36:33.65 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 | [530 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [4d4 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [304 01-05 06:36:26.59 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 | [4ea 01-05 06:36:34.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 | [4f5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [305 01-05 06:36:26.59 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 | [4d5 01-05 06:36:33.56 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 | [531 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [4eb 01-05 06:36:34.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 | [4f6 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [306 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [4d6 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [4f7 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [307 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [4ec 01-05 06:36:34.19 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 | [532 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [533 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [534 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [4f8 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [308 01-05 06:36:26.59 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 | [4d7 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421f3ee80 env 0xc421f3ad80 txn 0 -peer0.org2.example.com | [4ed 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [535 01-05 06:36:34.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 -orderer.example.com | [309 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [4ee 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [4f9 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [4d8 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [536 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [4ef 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [30a 01-05 06:36:26.59 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.org2.example.com | [537 01-05 06:36:34.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 | [4fa 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [4d9 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [4f0 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [30b 01-05 06:36:26.59 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.org2.example.com | [538 01-05 06:36:34.21 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 | [4da 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [4f1 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [539 01-05 06:36:34.21 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 | [4f2 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [30c 01-05 06:36:26.60 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.org2.example.com | [53a 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [4f3 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [4fb 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [4db 01-05 06:36:33.56 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 | [53b 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [4f4 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [4fc 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [30d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [4f5 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [53c 01-05 06:36:34.21 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 | [4dc 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [4f6 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [4fd 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [53d 01-05 06:36:34.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 [2] -peer1.org1.example.com | [4dd 01-05 06:36:33.56 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 | [4f7 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [53e 01-05 06:36:34.22 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{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= -peer0.org1.example.com | [4fe 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [30e 01-05 06:36:26.60 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 -peer0.org2.example.com | [4f8 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12151 -peer1.org1.example.com | [4de 01-05 06:36:33.56 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 | [4f9 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | ] -orderer.example.com | [30f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [4ff 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org2.example.com | [4fa 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [53f 01-05 06:36:34.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=26149, bytesLength=12151] for tx ID: [] to index -peer1.org1.example.com | [4df 01-05 06:36:33.56 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 | [4fb 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [540 01-05 06:36:34.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=26149, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [500 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [4e0 01-05 06:36:33.56 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 | [4fc 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [310 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [541 01-05 06:36:34.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=[40095], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [4e1 01-05 06:36:33.56 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 | [501 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [542 01-05 06:36:34.22 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 | [4fd 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [311 01-05 06:36:26.60 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 -peer1.org2.example.com | [543 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -peer0.org1.example.com | [502 01-05 06:36:33.72 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 | [4e2 01-05 06:36:33.56 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 | [4fe 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [544 01-05 06:36:34.23 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 | [312 01-05 06:36:26.60 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 | [4e3 01-05 06:36:33.56 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 | [503 01-05 06:36:33.72 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 | [4ff 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [545 01-05 06:36:34.23 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 | [4e4 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [313 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [504 01-05 06:36:33.73 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 | [546 01-05 06:36:34.23 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 | [500 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [505 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [314 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [501 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [4e5 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org1.example.com | [507 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [547 01-05 06:36:34.23 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 | [315 01-05 06:36:26.60 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 -peer0.org2.example.com | [502 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [508 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [4e6 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [316 01-05 06:36:26.60 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 | [548 01-05 06:36:34.23 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 | [503 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org1.example.com | [4e7 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [509 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [549 01-05 06:36:34.23 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 | [317 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [4e8 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [504 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [54a 01-05 06:36:34.23 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 | [4e9 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [50a 01-05 06:36:33.73 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 | [505 01-05 06:36:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [54b 01-05 06:36:34.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 [2] with [1] transactions -peer1.org1.example.com | [4ea 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [318 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [54c 01-05 06:36:34.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 -peer0.org1.example.com | [50b 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [506 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [4eb 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [54d 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -orderer.example.com | [319 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [4ec 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [50c 01-05 06:36:33.73 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 | [507 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [54e 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [4ed 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [50d 01-05 06:36:33.73 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 | [508 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [4ee 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [4ef 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [509 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [50e 01-05 06:36:33.73 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 | [4f0 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [54f 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [31a 01-05 06:36:26.60 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 | [50a 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [50f 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [4f1 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [50b 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [550 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [31b 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [510 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [4f2 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [50c 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [551 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [511 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [4f3 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [31c 01-05 06:36:26.60 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 | [552 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4f4 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [512 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -orderer.example.com | [31d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [4f5 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [553 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [50d 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [4f6 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [31e 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [513 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [50e 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [554 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [4f7 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [31f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [50f 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [555 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [320 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [514 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [4f8 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [510 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [556 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [515 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [321 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [4f9 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [557 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [516 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [511 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [517 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [4fa 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [518 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [322 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [558 01-05 06:36:35.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\252\343%\203\036\214v\243R[\225}\021\271\334:\323\333[\233\017\314J\2013\262\263LG\327\022\255" channel_MAC:"^\005\305[\002\210\"\010\234\342L\027;\223\245(2Bd\351\267f+#\313\325RM\201\026\nO" properties: > , Envelope: 109 bytes, Signature: 71 bytes is found invalid: PKIID wasn't found -peer0.org2.example.com | [512 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [519 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [323 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [559 01-05 06:36:35.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\252\343%\203\036\214v\243R[\225}\021\271\334:\323\333[\233\017\314J\2013\262\263LG\327\022\255" channel_MAC:"^\005\305[\002\210\"\010\234\342L\027;\223\245(2Bd\351\267f+#\313\325RM\201\026\nO" properties: > , Envelope: 109 bytes, Signature: 71 bytes isn't valid -peer0.org1.example.com | [51a 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [4fb 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [513 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [55a 01-05 06:36:35.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��%��v�R[�}��:��[��J�3��LG�� message sent from �D8$B����*��?�) ��C^���æ����� -peer0.org1.example.com | [51b 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [324 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [4fc 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [514 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [51c 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [325 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org2.example.com | [55b 01-05 06:36:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��%��v�R[�}��:��[��J�3��LG�� message sent from ؎��9�L�YOjfQ�/I��Udż p\y -peer0.org1.example.com | [51d 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [515 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [51e 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [326 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [4fd 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [51f 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [55c 01-05 06:36:36.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:55222 -orderer.example.com | [327 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [520 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [516 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [4fe 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [55d 01-05 06:36:36.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422cff440 -peer0.org1.example.com | [521 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [328 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [517 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [522 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [55e 01-05 06:36:36.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [4ff 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [329 01-05 06:36:26.60 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 | [523 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [518 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [32a 01-05 06:36:26.60 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 | [524 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [500 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [55f 01-05 06:36:36.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [32b 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [519 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [525 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [560 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org1.example.com | [501 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [526 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [51a 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [32c 01-05 06:36:26.60 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 | [527 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [502 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [51b 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [32d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [561 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [528 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [503 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [51c 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [562 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [32e 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer1.org1.example.com | [504 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [529 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [51d 01-05 06:36:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [563 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422d16280, header 0xc422cff470 -orderer.example.com | [32f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [52a 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [505 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [51e 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [564 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [52b 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org1.example.com | [506 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [330 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer1.org2.example.com | [565 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 17db34249d33139914ba9543a78f0e1faff2ceb1fe922f2d6781a599fe323425 -peer0.org2.example.com | [51f 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [52c 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [507 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [331 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer0.org2.example.com | [520 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [52d 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [508 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [332 01-05 06:36:26.60 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 | [566 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 17db34249d33139914ba9543a78f0e1faff2ceb1fe922f2d6781a599fe323425 channel id: -peer0.org2.example.com | [521 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [509 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [52e 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [333 01-05 06:36:26.60 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 | [567 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer0.org1.example.com | [52f 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [522 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [50a 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [334 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [530 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [568 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 17db34249d33139914ba9543a78f0e1faff2ceb1fe922f2d6781a599fe323425 channel id: version: 1.1.0 -peer0.org2.example.com | [523 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [50b 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [335 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -peer1.org2.example.com | [569 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=17db34249d33139914ba9543a78f0e1faff2ceb1fe922f2d6781a599fe323425,syscc=true,proposal=0xc422d16280,canname=lscc:1.1.0 -peer0.org2.example.com | [524 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [531 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [50c 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [336 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -peer1.org2.example.com | [56a 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [525 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [337 01-05 06:36:26.60 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.org1.example.com | [532 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [50d 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [56b 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [526 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [338 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org1.example.com | [533 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [50e 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [527 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [339 01-05 06:36:26.60 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 | [56c 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [506 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421821d00 env 0xc42190b6e0 txn 0 -peer1.org1.example.com | [50f 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [528 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [33a 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [510 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [534 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [56d 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17db3424]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [529 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [33b 01-05 06:36:26.60 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 | [511 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [535 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [56e 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [52a 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [33c 01-05 06:36:26.60 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 | [512 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [536 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [52b 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [56f 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [33d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [52c 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [537 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [513 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [570 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17db3424]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [33e 01-05 06:36:26.60 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)(0xc420b0d920)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org2.example.com | [52d 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [514 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [538 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [52e 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [33f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44082: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | [571 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17db3424]Move state message TRANSACTION -peer1.org1.example.com | [515 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [52f 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [539 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [340 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer1.org2.example.com | [572 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17db3424]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [516 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [530 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [53a 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [573 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [342 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:44080 because channel businesschannel not found -peer1.org1.example.com | [517 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [53b 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [341 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -peer0.org1.example.com | [53c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [518 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [574 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17db3424]sending state message TRANSACTION -peer0.org2.example.com | [531 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [343 01-05 06:36:26.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:44080 -peer0.org1.example.com | [53d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [519 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [575 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17db3424]Received message TRANSACTION from shim -peer0.org2.example.com | [532 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [344 01-05 06:36:26.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:44080 -peer1.org2.example.com | [576 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17db3424]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [53e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [51a 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [533 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [345 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -peer1.org2.example.com | [577 01-05 06:36:36.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17db3424]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [534 01-05 06:36:34.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 | [53f 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [51b 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [578 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17db3424]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [535 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [540 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer0.org2.example.com | [536 01-05 06:36:34.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 | [541 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [51c 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [579 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17db3424]Move state message COMPLETED -orderer.example.com | ] -peer0.org2.example.com | [537 01-05 06:36:34.21 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 | [57a 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17db3424]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [51d 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [542 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [538 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [346 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44080: rpc error: code = Canceled desc = context canceled -peer1.org1.example.com | [51e 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [57b 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17db3424]send state message COMPLETED -peer0.org1.example.com | [543 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [539 01-05 06:36:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [347 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer1.org1.example.com | [51f 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [57c 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17db3424]Received message COMPLETED from shim -peer0.org2.example.com | [53a 01-05 06:36:34.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 | [544 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [348 01-05 06:36:26.61 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] -peer1.org1.example.com | [520 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [53b 01-05 06:36:34.21 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 | [57d 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17db3424]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [349 01-05 06:36:26.61 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 | [545 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [53c 01-05 06:36:34.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 [2] -peer1.org1.example.com | [521 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [57e 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17db34249d33139914ba9543a78f0e1faff2ceb1fe922f2d6781a599fe323425]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [53d 01-05 06:36:34.22 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{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= -peer1.org1.example.com | [522 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [546 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12151 -peer1.org2.example.com | [57f 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:17db34249d33139914ba9543a78f0e1faff2ceb1fe922f2d6781a599fe323425, channelID: -peer1.org1.example.com | [523 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | ] -orderer.example.com | [34a 01-05 06:36:26.61 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 | [547 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [524 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [53e 01-05 06:36:34.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=26149, bytesLength=12151] for tx ID: [] to index -peer0.org1.example.com | [548 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [580 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [525 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [53f 01-05 06:36:34.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=26149, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [34b 01-05 06:36:26.61 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 -peer0.org2.example.com | [540 01-05 06:36:34.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=[40095], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org1.example.com | [549 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [34c 01-05 06:36:26.61 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]} -peer1.org1.example.com | [526 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [541 01-05 06:36:34.22 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 | [581 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [34d 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -peer0.org1.example.com | [54a 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [542 01-05 06:36:34.23 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 | [527 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [34e 01-05 06:36:26.61 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.org2.example.com | [543 01-05 06:36:34.23 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 | [54b 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [582 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [34f 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -peer1.org1.example.com | [528 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [54c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [583 01-05 06:36:36.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:55222) -peer0.org2.example.com | [544 01-05 06:36:34.23 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 | [54d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [529 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [350 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -peer1.org2.example.com | [584 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org2.example.com | [545 01-05 06:36:34.23 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 | [54e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [351 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [585 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org2.example.com | [546 01-05 06:36:34.23 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 | [54f 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [52a 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [586 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [352 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [52b 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [353 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [547 01-05 06:36:34.23 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 | [550 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [354 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [587 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [52c 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [548 01-05 06:36:34.23 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 | [551 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [588 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421f3b3c0 env 0xc4226ece10 txn 0 -peer1.org1.example.com | [52d 01-05 06:36:33.60 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 | [355 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B09A5605C1DAD9EAEE5B0E5D22FED1CA -peer0.org2.example.com | [549 01-05 06:36:34.23 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 | [52e 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | [356 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DC58DC3B8C63C5FF63070D3154E65DF45CDE30EA6610912303EABFBDA445EA12 -peer1.org2.example.com | [589 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4226ece10 -peer0.org1.example.com | [552 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [54a 01-05 06:36:34.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 [2] with [1] transactions -peer1.org1.example.com | [52f 01-05 06:36:33.60 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 | [357 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [58a 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer0.org1.example.com | [553 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [530 01-05 06:36:33.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -orderer.example.com | [358 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [554 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [359 01-05 06:36:26.61 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 | [555 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [58b 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [35a 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [54b 01-05 06:36:34.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 | [531 01-05 06:36:33.61 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 | [556 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [54c 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -orderer.example.com | [35b 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [58c 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [532 01-05 06:36:33.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [35c 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B09A5605C1DAD9EAEE5B0E5D22FED1CA -peer1.org1.example.com | [533 01-05 06:36:33.61 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 | [557 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [54d 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [35d 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 228E22717D4482096B34BA6BD720977AEF611B93EB87D899EC1252E541EC7257 -peer1.org1.example.com | [534 01-05 06:36:33.61 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 | [54e 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [35e 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer1.org1.example.com | [535 01-05 06:36:33.62 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 | [58d 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [558 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [54f 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [35f 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44084 -peer1.org1.example.com | [536 01-05 06:36:33.62 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{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= -peer0.org1.example.com | [559 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [550 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [58e 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [360 01-05 06:36:26.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:44084 -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 -peer0.org1.example.com | [55a 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [551 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [361 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x25, 0x47, 0xd5, 0xea, 0xa3, 0x4f, 0x4b, 0x39, 0xb0, 0x3d, 0x24, 0xcc, 0xae, 0x94, 0xbd, 0x27, 0x8e, 0x55, 0x69, 0x2a, 0xf3, 0xf, 0x1d, 0x1f, 0x3c, 0xf9, 0x64, 0xde, 0xa0, 0x22, 0x21, 0xc1} txOffsets= -peer1.org1.example.com | ] -peer0.org1.example.com | [55b 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [58f 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | txId= locPointer=offset=70, bytesLength=13000 -peer0.org2.example.com | [552 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [537 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12151] for tx ID: [] to index -peer0.org1.example.com | [55c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | ] -peer1.org1.example.com | [538 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [55d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -orderer.example.com | [362 01-05 06:36:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24014], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [590 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ed1500, header channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer0.org1.example.com | [55e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [553 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [539 01-05 06:36:33.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=[40095], isChainEmpty=[false], lastBlockNumber=[2] -orderer.example.com | [363 01-05 06:36:26.62 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -peer0.org1.example.com | [55f 01-05 06:36:33.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 | [591 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [554 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [53a 01-05 06:36:33.70 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 | [364 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [560 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [53b 01-05 06:36:33.71 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 | [365 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [561 01-05 06:36:33.75 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 | [592 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [555 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [53c 01-05 06:36:33.71 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 | [366 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [562 01-05 06:36:33.75 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 | [556 01-05 06:36:34.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [593 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [53d 01-05 06:36:33.71 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 | [367 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [563 01-05 06:36:33.75 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 | [557 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:47490 -orderer.example.com | [368 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer1.org2.example.com | [594 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [53e 01-05 06:36:33.71 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 | [564 01-05 06:36:33.76 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 | [558 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42259f440 -peer1.org1.example.com | [53f 01-05 06:36:33.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 -orderer.example.com | [369 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [595 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org1.example.com | [565 01-05 06:36:33.76 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{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= -peer1.org1.example.com | [540 01-05 06:36:33.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)=[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 | [559 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [596 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 -orderer.example.com | [36a 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [55a 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [541 01-05 06:36:33.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.org1.example.com | ] -peer1.org2.example.com | [597 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4226ece10 envbytes 0xc421a3b100 -peer0.org2.example.com | [55b 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org1.example.com | [566 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12151] for tx ID: [] to index -peer1.org2.example.com | [598 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a3b100 -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [567 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [599 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [55c 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [542 01-05 06:36:33.73 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 | [568 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40095], isChainEmpty=[false], lastBlockNumber=[2] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [569 01-05 06:36:33.76 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 | [59a 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [56a 01-05 06:36:33.76 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 | [55d 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [543 01-05 06:36:33.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 [2] with [1] transactions -peer1.org2.example.com | [59b 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=c0e8e47d-bb48-4ea4-93d9-3e4bbf7bed50,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [56b 01-05 06:36:33.76 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 | [55e 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4227d4be0, header 0xc42259f470 -peer1.org1.example.com | [544 01-05 06:36:33.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 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [55f 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [56c 01-05 06:36:33.76 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 | [545 01-05 06:36:33.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 [2] -peer1.org2.example.com | [59c 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 chaindID businesschannel -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org1.example.com | [546 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [560 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b4c0fd3bb06541c7d68cbf3027549820ea42dfe8668a3b38835e5a1c3778dcda -peer1.org2.example.com | [59d 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [56d 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [547 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [59e 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [56e 01-05 06:36:33.76 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 | [561 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b4c0fd3bb06541c7d68cbf3027549820ea42dfe8668a3b38835e5a1c3778dcda channel id: -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org2.example.com | [59f 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [56f 01-05 06:36:33.76 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 | [548 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [562 01-05 06:36:35.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [5a0 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c0e8e47d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [570 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org1.example.com | [549 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [563 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b4c0fd3bb06541c7d68cbf3027549820ea42dfe8668a3b38835e5a1c3778dcda channel id: version: 1.1.0 -peer1.org2.example.com | [5a1 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [571 01-05 06:36:33.77 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 | jTZ94VyvHhJOn4fshoU= -peer0.org2.example.com | [564 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=b4c0fd3bb06541c7d68cbf3027549820ea42dfe8668a3b38835e5a1c3778dcda,syscc=true,proposal=0xc4227d4be0,canname=lscc:1.1.0 -peer1.org1.example.com | [54a 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [572 01-05 06:36:33.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 | [5a2 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c0e8e47d]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [565 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [5a3 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0e8e47d]Move state message TRANSACTION -peer0.org2.example.com | [566 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [54b 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [5a4 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c0e8e47d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [36b 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5d0 gate 1515134186828935700 evaluation starts -peer0.org1.example.com | [573 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [567 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org1.example.com | [54c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [5a5 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [574 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -orderer.example.com | [36c 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [5a6 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0e8e47d]sending state message TRANSACTION -peer0.org1.example.com | [575 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [54d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [5a7 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0e8e47d]Received message TRANSACTION from shim -orderer.example.com | [36d 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [568 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b4c0fd3b]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5a8 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0e8e47d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [576 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [54e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [569 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [36e 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer1.org2.example.com | [5a9 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c0e8e47d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5aa 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [577 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [56a 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [54f 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [36f 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [5ab 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [550 01-05 06:36:34.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -peer0.org1.example.com | [578 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [56b 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b4c0fd3b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [370 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 principal matched by identity 0 -peer1.org2.example.com | [5ac 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [551 01-05 06:36:34.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -peer0.org1.example.com | [579 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5ad 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [552 01-05 06:36:34.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37860 -orderer.example.com | [371 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 91 d7 9a 11 29 9a e1 98 65 4c 3b e6 c1 8c d7 8f |....)...eL;.....| -peer0.org2.example.com | [56c 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b4c0fd3b]Move state message TRANSACTION -peer1.org2.example.com | [5ae 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [57a 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [553 01-05 06:36:34.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421eb3f20 -peer0.org2.example.com | [56d 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b4c0fd3b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5af 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -orderer.example.com | 00000010 36 11 06 c7 80 84 f2 87 4d be ac d3 30 92 04 ab |6.......M...0...| -peer0.org1.example.com | [57b 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [5b0 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [56e 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [554 01-05 06:36:34.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [372 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 ae 2a c9 06 b4 7b c1 55 ee b4 3b |0D. h.*...{.U..;| -peer1.org2.example.com | [5b1 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [f5616949-2977-4687-85c0-3e00a9b0171c] -peer0.org2.example.com | [56f 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b4c0fd3b]sending state message TRANSACTION -peer0.org1.example.com | [57c 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 00000010 99 0d 73 82 9f 4b 0a 17 1c 34 52 47 4c ad 81 9d |..s..K...4RGL...| -peer1.org1.example.com | [555 01-05 06:36:34.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [5b2 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [570 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4c0fd3b]Received message TRANSACTION from shim -peer0.org1.example.com | [57d 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [556 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -orderer.example.com | 00000020 03 20 80 2a 02 20 24 dd b7 a2 29 38 76 bc e5 f9 |. .*. $...)8v...| -peer1.org2.example.com | [5b3 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f5616949-2977-4687-85c0-3e00a9b0171c] -peer0.org2.example.com | [571 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4c0fd3b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 00000030 50 c9 c0 01 6e 27 eb 74 fa 62 2b e1 63 52 4e e7 |P...n'.t.b+.cRN.| -peer0.org1.example.com | [57e 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [5b4 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org2.example.com | [572 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b4c0fd3b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 00000040 0e 56 69 ca 83 fc |.Vi...| -peer1.org2.example.com | [5b5 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc422779220)} -peer0.org1.example.com | [57f 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37170 -peer1.org1.example.com | [557 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [580 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422752d20 -orderer.example.com | [373 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [5b6 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [573 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4c0fd3b]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [558 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [374 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5d0 gate 1515134186828935700 evaluation succeeds -peer1.org2.example.com | [5b7 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0e8e47d]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [581 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [574 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4c0fd3b]Move state message COMPLETED -peer1.org1.example.com | [559 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b49770, header 0xc421eb3f50 -peer1.org2.example.com | [5b8 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0e8e47d]Move state message COMPLETED -peer0.org1.example.com | [582 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [575 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4c0fd3b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [55a 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [5b9 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0e8e47d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5ba 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0e8e47d]send state message COMPLETED -peer0.org2.example.com | [576 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4c0fd3b]send state message COMPLETED -peer1.org2.example.com | [5bb 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0e8e47d]Received message COMPLETED from shim -peer1.org1.example.com | [55b 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: de691212434f2e07e7ac889ed68298d999d58715f540a4266f0679a39a0f8c4a -orderer.example.com | [375 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [55c 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: de691212434f2e07e7ac889ed68298d999d58715f540a4266f0679a39a0f8c4a channel id: -peer0.org1.example.com | [583 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org2.example.com | [577 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b4c0fd3b]Received message COMPLETED from shim -peer1.org2.example.com | [5bc 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c0e8e47d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [376 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [55d 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer1.org2.example.com | [5bd 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c0e8e47d-bb48-4ea4-93d9-3e4bbf7bed50]HandleMessage- COMPLETED. Notify -orderer.example.com | [377 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org1.example.com | [584 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [55e 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: de691212434f2e07e7ac889ed68298d999d58715f540a4266f0679a39a0f8c4a channel id: version: 1.1.0 -peer0.org2.example.com | [578 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b4c0fd3b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [5be 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c0e8e47d-bb48-4ea4-93d9-3e4bbf7bed50, channelID:businesschannel -orderer.example.com | [378 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer1.org1.example.com | [55f 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=de691212434f2e07e7ac889ed68298d999d58715f540a4266f0679a39a0f8c4a,syscc=true,proposal=0xc421b49770,canname=lscc:1.1.0 -peer0.org1.example.com | [585 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [579 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b4c0fd3bb06541c7d68cbf3027549820ea42dfe8668a3b38835e5a1c3778dcda]HandleMessage- COMPLETED. Notify -orderer.example.com | [379 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer1.org2.example.com | [5bf 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [560 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [586 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42346b860, header 0xc422752d50 -peer0.org2.example.com | [57a 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b4c0fd3bb06541c7d68cbf3027549820ea42dfe8668a3b38835e5a1c3778dcda, channelID: -orderer.example.com | [37a 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer1.org1.example.com | [561 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [587 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [37b 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a44160) start: > stop: > from 172.18.0.7:44084 -peer1.org2.example.com | [5c0 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org1.example.com | [588 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -peer0.org2.example.com | [57b 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [37c 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -peer1.org2.example.com | [5c1 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a3b100 -peer1.org1.example.com | [562 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [57c 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [37d 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -peer0.org1.example.com | [589 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer1.org2.example.com | [5c2 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4226ece10 envbytes 0xc421a3b100 -peer1.org1.example.com | [563 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de691212]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [37e 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12120], Going to peek [8] bytes -peer0.org2.example.com | [57d 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [58a 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [37f 01-05 06:36:26.83 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]} -peer1.org2.example.com | [5c3 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421f3b3c0 env 0xc4226ece10 txn 0 -peer1.org1.example.com | [564 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [57e 01-05 06:36:35.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:47490) -orderer.example.com | [380 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -peer1.org1.example.com | [565 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5c4 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [58b 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -orderer.example.com | [381 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a44160) for 172.18.0.7:44084 -peer0.org2.example.com | [57f 01-05 06:36:38.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -peer1.org1.example.com | [566 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de691212]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5c5 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [58c 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel -orderer.example.com | [382 01-05 06:36:26.83 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:44084 for (0xc420a44160) -peer0.org2.example.com | [581 01-05 06:36:38.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -orderer.example.com | [383 01-05 06:36:26.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:44084 -peer1.org1.example.com | [567 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de691212]Move state message TRANSACTION -peer1.org2.example.com | [5c6 01-05 06:36:46.33 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 | [58d 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [384 01-05 06:36:26.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:44084 -peer1.org1.example.com | [568 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de691212]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5c7 01-05 06:36:46.33 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 | [58e 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [58f 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2,syscc=true,proposal=0xc42346b860,canname=lscc:1.1.0 -peer1.org2.example.com | [5c8 01-05 06:36:46.33 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 | [569 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [582 01-05 06:36:38.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -orderer.example.com | [385 01-05 06:36:26.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44084: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [590 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [5c9 01-05 06:36:46.33 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 | [580 01-05 06:36:38.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -orderer.example.com | [386 01-05 06:36:26.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [591 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [56a 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de691212]sending state message TRANSACTION -orderer.example.com | [387 01-05 06:36:28.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer1.org2.example.com | [5ca 01-05 06:36:46.33 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 | [583 01-05 06:36:38.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -peer0.org1.example.com | [592 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [388 01-05 06:36:28.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:44094 -peer1.org1.example.com | [56b 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de691212]Received message TRANSACTION from shim -peer0.org2.example.com | [584 01-05 06:36:38.64 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 -peer0.org1.example.com | [593 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [389 01-05 06:36:28.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:44094 -peer1.org2.example.com | [5cb 01-05 06:36:46.33 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 | [56c 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de691212]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [585 01-05 06:36:38.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -peer0.org1.example.com | [594 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [38a 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer1.org2.example.com | [5cc 01-05 06:36:46.33 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 | [586 01-05 06:36:38.64 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -orderer.example.com | [38b 01-05 06:36:28.21 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:44096 -peer0.org1.example.com | [595 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5cd 01-05 06:36:46.33 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 [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] marked as valid by state validator -peer1.org1.example.com | [56d 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [de691212]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [587 01-05 06:36:38.64 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -peer1.org1.example.com | [56e 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de691212]Transaction completed. Sending COMPLETED -orderer.example.com | [38c 01-05 06:36:28.21 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:44096 -peer1.org2.example.com | [5ce 01-05 06:36:46.33 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 | [588 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:47502 -peer0.org1.example.com | [596 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [38d 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -peer0.org1.example.com | [597 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message TRANSACTION -orderer.example.com | [38e 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer1.org1.example.com | [56f 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de691212]Move state message COMPLETED -peer0.org2.example.com | [589 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42286b2c0 -peer1.org2.example.com | [5cf 01-05 06:36:46.33 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 | [598 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [38f 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org2.example.com | [58a 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [570 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de691212]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5d0 01-05 06:36:46.33 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 | [599 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [390 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer1.org2.example.com | [5d1 01-05 06:36:46.33 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 | [571 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de691212]send state message COMPLETED -peer0.org2.example.com | [58b 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [59a 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message TRANSACTION -orderer.example.com | [391 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [572 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de691212]Received message COMPLETED from shim -peer1.org2.example.com | [5d2 01-05 06:36:46.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 [3] -peer0.org2.example.com | [58c 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org1.example.com | [59b 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message TRANSACTION from shim -orderer.example.com | [392 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -peer1.org2.example.com | [5d3 01-05 06:36:46.34 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{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -peer1.org1.example.com | [573 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de691212]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [58d 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [59c 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [393 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134188215312100 evaluation starts -peer1.org2.example.com | txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 -peer1.org1.example.com | [574 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de691212434f2e07e7ac889ed68298d999d58715f540a4266f0679a39a0f8c4a]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [58e 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [59d 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b0d13d6f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [394 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [58f 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4227d53b0, header 0xc42286b2f0 -peer0.org2.example.com | [590 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | ] -peer0.org1.example.com | [59e 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [b0d13d6f]Sending GET_STATE -orderer.example.com | [395 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [396 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer1.org1.example.com | [575 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:de691212434f2e07e7ac889ed68298d999d58715f540a4266f0679a39a0f8c4a, channelID: -peer0.org1.example.com | [59f 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message GET_STATE from shim -peer1.org2.example.com | [5d4 01-05 06:36:46.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=40165, bytesLength=3456] for tx ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to index -peer0.org2.example.com | [591 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 -orderer.example.com | [397 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation fails -peer1.org1.example.com | [576 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5d5 01-05 06:36:46.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=40165, bytesLength=3456] for tx number:[0] ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to blockNumTranNum index -peer0.org1.example.com | [5a0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [398 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134188215312100 evaluation fails -peer1.org1.example.com | [577 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [592 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer1.org2.example.com | [5d6 01-05 06:36:46.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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [593 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [578 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [399 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [5a1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b0d13d6f]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [5d7 01-05 06:36:46.34 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 | [594 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer1.org1.example.com | [579 01-05 06:36:34.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37860) -orderer.example.com | [39a 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [5a3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [57a 01-05 06:36:35.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��բ��˩(�.�t��J�7<�x�[)cU�0 message sent from ؎��9�L�YOjfQ�/I��Udż p\y -peer0.org2.example.com | [595 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 channel id: businesschannel -peer1.org2.example.com | [5d8 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -orderer.example.com | [39b 01-05 06:36:28.21 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 ] -peer0.org1.example.com | [5a4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [57b 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [596 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [39c 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -peer1.org2.example.com | [5d9 01-05 06:36:46.34 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 | [5a5 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]No state associated with key: -peer0.org2.example.com | [597 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [57c 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [39d 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -peer0.org1.example.com | exp02. Sending RESPONSE with an empty payload -peer1.org2.example.com | [5da 01-05 06:36:46.34 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 | [598 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356,syscc=true,proposal=0xc4227d53b0,canname=lscc:1.1.0 -orderer.example.com | [39e 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -peer1.org1.example.com | [57d 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421fac9e0 env 0xc422af3e60 txn 0 -peer0.org1.example.com | [5a6 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]handleGetState serial send RESPONSE -peer1.org2.example.com | [5db 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [39f 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org2.example.com | [599 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [57e 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422af3e60 -peer0.org2.example.com | [59a 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5dc 01-05 06:36:46.34 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 | [5a7 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message RESPONSE from shim -peer0.org2.example.com | [59b 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [3a0 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -peer1.org1.example.com | [57f 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer0.org1.example.com | [5a8 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [5dd 01-05 06:36:46.34 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 | [59c 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e66f5752]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [580 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [5a9 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]before send -orderer.example.com | [3a1 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1515134188217494300 evaluation starts -peer1.org2.example.com | [5de 01-05 06:36:46.34 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 | [59d 01-05 06:36:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [581 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [5aa 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]after send -orderer.example.com | [3a2 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [5df 01-05 06:36:46.34 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 | [582 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [5ab 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b0d13d6f]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [59e 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3a3 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [5ac 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [b0d13d6f]GetState received payload RESPONSE -peer1.org2.example.com | [5e0 01-05 06:36:46.34 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 | [583 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [59f 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e66f5752]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5ad 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [b0d13d6f]Sending PUT_STATE -orderer.example.com | [3a4 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer1.org2.example.com | [5e1 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org2.example.com | [5a0 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message TRANSACTION -peer1.org1.example.com | [584 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3a5 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [5a2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [585 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421fb2000, header channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer0.org2.example.com | [5a1 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5e2 01-05 06:36:46.34 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 | [5ae 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message PUT_STATE from shim -peer1.org1.example.com | [586 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [3a6 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal matched by identity 0 -peer0.org2.example.com | [5a2 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [587 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [5e3 01-05 06:36:46.34 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 | [5af 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [3a7 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a0 52 22 62 8c a8 1f 00 87 75 43 f8 55 2a 19 17 |.R"b.....uC.U*..| -peer0.org2.example.com | [5a3 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message TRANSACTION -peer1.org2.example.com | [5e4 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [588 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 00000010 62 61 61 8a 28 bf aa 05 fc b5 2d f4 f6 c7 25 3a |baa.(.....-...%:| -peer1.org2.example.com | [5e5 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -peer0.org1.example.com | [5b0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3a8 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 b9 25 61 62 07 ac 7e c2 5b ff 11 |0D. ..%ab..~.[..| -peer0.org2.example.com | [5a4 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Received message TRANSACTION from shim -peer1.org1.example.com | [589 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [5b1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]state is ready -peer1.org2.example.com | [5e6 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | 00000010 b1 17 15 6f c5 49 8a 6e 9f 5d e3 da 83 7a fa 13 |...o.I.n.]...z..| -peer0.org2.example.com | [5a5 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e66f5752]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [58a 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org1.example.com | [5b2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [5e7 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | 00000020 2d d2 5e 14 02 20 6c 68 0b af be 2e fc a2 66 66 |-.^.. lh......ff| -peer1.org1.example.com | [58b 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [5a6 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e66f5752]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [5b3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [5e8 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [58c 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422af3e60 envbytes 0xc421d62380 -orderer.example.com | 00000030 59 cd 0b ce 0e 4a 85 91 d5 0e 43 75 c0 52 2d 0c |Y....J....Cu.R-.| -peer0.org2.example.com | [5a7 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [e66f5752]Sending GET_STATE -peer0.org1.example.com | [5b4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message RESPONSE -peer1.org1.example.com | [58d 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421d62380 -peer1.org2.example.com | [5e9 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | 00000040 71 78 60 07 d4 d2 |qx`...| -peer0.org2.example.com | [5a8 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message GET_STATE from shim -peer1.org1.example.com | [58e 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [5b5 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [5ea 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [5a9 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [3a9 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [5eb 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [5b6 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [58f 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org2.example.com | [5aa 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e66f5752]Received GET_STATE, invoking get state from ledger -orderer.example.com | [3aa 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1515134188217494300 evaluation succeeds -peer1.org2.example.com | [5ec 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [590 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=3265463a-f6f4-418d-af4b-9e9ed12c39e8,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [5b7 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message RESPONSE -orderer.example.com | [3ab 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [5ab 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [591 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 chaindID businesschannel -peer1.org2.example.com | [5ed 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [5b8 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message RESPONSE from shim -peer0.org2.example.com | [5ac 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | [3ac 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [5ee 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [5ad 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [592 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org2.example.com | [5ef 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:55238 -peer0.org1.example.com | [5b9 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [5ae 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]No state associated with key: -orderer.example.com | [3ad 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -peer1.org1.example.com | [593 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5ba 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]before send -peer1.org2.example.com | [5f0 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422e7cf60 -peer0.org2.example.com | exp02. Sending RESPONSE with an empty payload -peer1.org1.example.com | [594 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [3ae 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -peer0.org2.example.com | [5af 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e66f5752]handleGetState serial send RESPONSE -peer0.org1.example.com | [5bb 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]after send -peer1.org2.example.com | [5f1 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [595 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3265463a]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5b0 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Received message RESPONSE from shim -peer0.org1.example.com | [5bc 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b0d13d6f]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [5b1 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e66f5752]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [3af 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer1.org1.example.com | [596 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [5f2 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [5b2 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e66f5752]before send -peer0.org1.example.com | [5bd 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [b0d13d6f]Received RESPONSE. Successfully updated state -peer1.org2.example.com | [5f3 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org2.example.com | [5b3 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e66f5752]after send -peer1.org1.example.com | [597 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3265463a]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5b4 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e66f5752]Received RESPONSE, communicated (state:ready) -orderer.example.com | [3b0 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -peer0.org2.example.com | [5b5 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [e66f5752]GetState received payload RESPONSE -peer1.org2.example.com | [5f4 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [598 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3265463a]Move state message TRANSACTION -peer0.org1.example.com | [5be 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -peer0.org2.example.com | [5b6 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [e66f5752]Sending PUT_STATE -orderer.example.com | [3b1 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [5b7 01-05 06:36:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message PUT_STATE from shim -peer1.org2.example.com | [5f5 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [599 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3265463a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [3b2 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 | [3b3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [5b8 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [5f6 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422d17130, header 0xc422e7cf90 -peer1.org1.example.com | [59a 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5bf 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Transaction completed. Sending COMPLETED -orderer.example.com | [3b4 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [5f7 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org2.example.com | [5b9 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]state is ready -peer0.org1.example.com | [5c0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Move state message COMPLETED -peer1.org1.example.com | [59b 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3265463a]sending state message TRANSACTION -orderer.example.com | [3b5 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [5ba 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [59c 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3265463a]Received message TRANSACTION from shim -peer0.org2.example.com | [5bc 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e66f5752]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [5c1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5f8 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e -orderer.example.com | [3b6 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -peer1.org1.example.com | [59d 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3265463a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5bb 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5c2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]send state message COMPLETED -peer1.org1.example.com | [59e 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3265463a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5bd 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message RESPONSE -orderer.example.com | [3b7 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [5f9 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e] -peer1.org1.example.com | [59f 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [5be 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [5c3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message COMPLETED from shim -peer1.org1.example.com | [5a0 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [3b8 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [5bf 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5fa 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [5a1 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [5c0 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message RESPONSE -orderer.example.com | [3b9 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [5a2 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [5c4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [5c1 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Received message RESPONSE from shim -peer1.org2.example.com | [5fb 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e] -peer1.org1.example.com | [5a3 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [5a4 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [5c2 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e66f5752]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [5c5 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5fc 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e channel id: businesschannel -orderer.example.com | [3ba 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [5a5 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [5c3 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e66f5752]before send -orderer.example.com | [3bb 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -peer0.org1.example.com | [5c6 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -peer1.org2.example.com | [5fd 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e,syscc=true,proposal=0xc422d17130,canname=lscc:1.1.0 -peer1.org1.example.com | [5a6 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [f520d334-8b5e-4b65-b445-d39fb30e413b] -peer0.org2.example.com | [5c4 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e66f5752]after send -orderer.example.com | [3bc 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -peer1.org2.example.com | [5fe 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [5a7 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [5c6 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [e66f5752]Received RESPONSE. Successfully updated state -peer0.org1.example.com | [5c7 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [3bd 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -peer1.org2.example.com | [5ff 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5a8 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f520d334-8b5e-4b65-b445-d39fb30e413b] -peer0.org2.example.com | [5c7 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -peer0.org1.example.com | [5c8 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2,syscc=false,proposal=0xc42346b860,canname=exp02:1.0 -orderer.example.com | [3be 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [5a9 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [600 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [3bf 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [5c5 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e66f5752]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [5aa 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4229a2c80)} -peer0.org1.example.com | [5c9 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2256 bytes from file system -orderer.example.com | [3c0 01-05 06:36:28.22 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 -peer0.org2.example.com | [5c8 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [601 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [5ab 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [3c1 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org2.example.com | [5c9 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Move state message COMPLETED -peer0.org1.example.com | [5ca 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -peer1.org2.example.com | [602 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5ac 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3265463a]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5ca 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e66f5752]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [5ad 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3265463a]Move state message COMPLETED -peer1.org2.example.com | [603 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3c2 01-05 06:36:28.22 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] -peer0.org1.example.com | [5cb 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [5ae 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3265463a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [5cb 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]send state message COMPLETED -peer1.org2.example.com | [604 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [3c3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [5af 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3265463a]send state message COMPLETED -peer0.org2.example.com | [5cc 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message COMPLETED from shim -peer0.org1.example.com | [5cc 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [5b0 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3265463a]Received message COMPLETED from shim -orderer.example.com | [3c4 01-05 06:36:28.22 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 | [5cd 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5b1 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3265463a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [5cd 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [605 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Move state message TRANSACTION -orderer.example.com | [3c5 01-05 06:36:28.22 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 [] -peer1.org1.example.com | [5b2 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3265463a-f6f4-418d-af4b-9e9ed12c39e8]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5ce 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [606 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5ce 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | [3c6 01-05 06:36:28.22 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 -peer0.org2.example.com | [5cf 01-05 06:36:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, channelID:businesschannel -peer1.org2.example.com | [607 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5cf 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) -peer1.org1.example.com | [5b3 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3265463a-f6f4-418d-af4b-9e9ed12c39e8, channelID:businesschannel -peer0.org2.example.com | [5d0 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [3c7 01-05 06:36:28.22 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 -peer1.org2.example.com | [608 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]sending state message TRANSACTION -peer0.org1.example.com | [5d0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | [5d1 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356,syscc=false,proposal=0xc4227d53b0,canname=exp02:1.0 -peer1.org1.example.com | [5b4 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [3c8 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -peer1.org2.example.com | [609 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Received message TRANSACTION from shim -peer1.org1.example.com | [5b5 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org2.example.com | [5d2 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2256 bytes from file system -peer0.org1.example.com | [5d1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [3c9 01-05 06:36:28.22 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 -peer1.org2.example.com | [60a 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5b6 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421d62380 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -orderer.example.com | [3ca 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [5d3 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -peer1.org2.example.com | [60b 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632d235f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [5b7 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422af3e60 envbytes 0xc421d62380 -peer0.org2.example.com | [5d4 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [3cb 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -peer1.org2.example.com | [60c 01-05 06:36:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632d235f]Sending GET_STATE -peer1.org2.example.com | [60d 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message GET_STATE from shim -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [5b8 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421fac9e0 env 0xc422af3e60 txn 0 -peer1.org2.example.com | [60e 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [5d5 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [3cc 01-05 06:36:28.22 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 == -peer0.org2.example.com | [5d6 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [60f 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [632d235f]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [5b9 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [3cd 01-05 06:36:28.22 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 0xc42000e450 gate 1515134188222915200 evaluation starts -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [5d7 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -peer1.org2.example.com | [611 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632d235f] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [5ba 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [3ce 01-05 06:36:28.22 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 0xc42000e450 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [5d8 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [612 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [3cf 01-05 06:36:28.22 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 0xc42000e450 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [5bb 01-05 06:36:46.37 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 | [5d9 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [613 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632d235f]Got state. Sending RESPONSE -orderer.example.com | [3d0 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer0.org2.example.com | [5da 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [5bc 01-05 06:36:46.37 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 | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [614 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [632d235f]handleGetState serial send RESPONSE -orderer.example.com | [3d1 01-05 06:36:28.22 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 0xc42000e450 principal matched by identity 0 -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -orderer.example.com | [3d2 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 7f e0 1d 3b 22 f8 53 8e c4 4a 6a fb 05 7e 64 |L...;".S..Jj..~d| -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [5bd 01-05 06:36:46.37 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 | [615 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Received message RESPONSE from shim -orderer.example.com | 00000010 19 b7 21 46 84 4b 1c 17 af f0 cd 19 20 d7 5a b9 |..!F.K...... .Z.| -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [5be 01-05 06:36:46.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 | [3d3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f c4 b0 28 8f 25 b2 d3 15 a3 1f 62 |0D. o..(.%.....b| -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [5d2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock -peer1.org2.example.com | [616 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 00000010 94 9b 58 48 34 0a 17 87 d1 b3 9a 1e 91 ba d7 c7 |..XH4...........| -orderer.example.com | 00000020 ab c1 81 e0 02 20 26 eb 67 9d 32 09 6e 81 3a 9e |..... &.g.2.n.:.| -orderer.example.com | 00000030 df 21 9d 9d 1d d3 55 23 7b 6c 1b 9a 2e 0e a7 11 |.!....U#{l......| -peer1.org1.example.com | [5bf 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | 00000040 44 b8 50 7c 43 2f |D.P|C/| -peer0.org1.example.com | [5d3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock -peer1.org2.example.com | [617 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632d235f]before send -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [3d4 01-05 06:36:28.22 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 0xc42000e450 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [5d4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 -peer1.org2.example.com | [618 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632d235f]after send -peer1.org1.example.com | [5c0 01-05 06:36:46.37 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 | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [3d5 01-05 06:36:28.22 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 0xc42000e450 gate 1515134188222915200 evaluation succeeds -peer0.org1.example.com | [5d5 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) -peer1.org2.example.com | [619 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [632d235f]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [3d6 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [5d6 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) -peer1.org1.example.com | [5c1 01-05 06:36:46.37 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) -orderer.example.com | [3d7 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [61a 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632d235f]GetState received payload RESPONSE -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [5d7 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) -peer1.org1.example.com | [5c2 01-05 06:36:46.37 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 [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] marked as valid by state validator -orderer.example.com | [3d8 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [5d8 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -peer1.org2.example.com | [61b 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Transaction completed. Sending COMPLETED -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [5d9 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [5c3 01-05 06:36:46.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 | [3d9 01-05 06:36:28.22 UTC] [github.com/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 | [5da 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -peer1.org2.example.com | [61c 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Move state message COMPLETED -peer1.org1.example.com | [5c4 01-05 06:36:46.37 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 | [5db 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-exp02-1.0) lock -peer0.org1.example.com | [5db 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -orderer.example.com | [3da 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [5dc 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org1.example.com | [5c5 01-05 06:36:46.37 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 | [61d 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [3db 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [5dc 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-exp02-1.0) lock -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer1.org1.example.com | [5c6 01-05 06:36:46.37 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 | [61e 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]send state message COMPLETED -peer0.org2.example.com | [5dd 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 -orderer.example.com | [3dc 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -peer1.org2.example.com | [610 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5c7 01-05 06:36:46.37 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 | [3dd 01-05 06:36:28.22 UTC] [github.com/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 | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer0.org2.example.com | [5de 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-exp02-1.0(No such container: dev-peer0.org2.example.com-exp02-1.0) -peer1.org2.example.com | [61f 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message COMPLETED from shim -peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org2.example.com | [620 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5c8 01-05 06:36:46.38 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{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [5df 01-05 06:36:44.44 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) -orderer.example.com | [3de 01-05 06:36:28.22 UTC] [github.com/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" -peer1.org2.example.com | [621 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer0.org2.example.com | [5e0 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) -peer1.org2.example.com | [622 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e, channelID:businesschannel -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" -orderer.example.com | [3df 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 -peer1.org2.example.com | [623 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer0.org2.example.com | [5e1 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 -orderer.example.com | [3e0 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [624 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | ] -peer0.org1.example.com | [5dd 01-05 06:36:36.62 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 | [625 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e channel id: businesschannel version: 1.0 -peer0.org2.example.com | [5e2 01-05 06:36:44.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer0.org1.example.com | [5de 01-05 06:36:36.62 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer1.org1.example.com | [5c9 01-05 06:36:46.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=40165, bytesLength=3456] for tx ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to index -orderer.example.com | [3e1 01-05 06:36:28.22 UTC] [github.com/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 -peer1.org2.example.com | [626 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e,syscc=false,proposal=0xc422d17130,canname=exp02:1.0 -peer0.org1.example.com | [5df 01-05 06:36:36.62 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer0.org2.example.com | [5e3 01-05 06:36:44.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [627 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e,syscc=true,proposal=0xc422d17130,canname=lscc:1.1.0 -peer0.org1.example.com | [5e0 01-05 06:36:43.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -orderer.example.com | [3e2 01-05 06:36:28.22 UTC] [github.com/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 | [5ca 01-05 06:36:46.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=40165, bytesLength=3456] for tx number:[0] ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to blockNumTranNum index -peer1.org2.example.com | [628 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [5e1 01-05 06:36:43.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [5e4 01-05 06:36:44.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -orderer.example.com | [3e3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [629 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5e2 01-05 06:36:43.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -peer1.org1.example.com | [5cb 01-05 06:36:46.41 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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | [3e4 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [5e5 01-05 06:36:44.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org2.example.com | [62a 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [5e3 01-05 06:36:43.59 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -peer1.org1.example.com | [5cc 01-05 06:36:46.41 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 | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer1.org2.example.com | [62b 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5e4 01-05 06:36:44.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -orderer.example.com | [3e5 01-05 06:36:28.22 UTC] [github.com/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 | [62c 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5cd 01-05 06:36:47.15 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 | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [5e5 01-05 06:36:44.22 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) -peer1.org2.example.com | [62d 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3e6 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer1.org1.example.com | [5ce 01-05 06:36:47.15 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 | [62e 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5e6 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -orderer.example.com | [3e7 01-05 06:36:28.22 UTC] [github.com/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.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | [5cf 01-05 06:36:47.15 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 | [62f 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Move state message TRANSACTION -peer0.org1.example.com | [5e7 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [5d0 01-05 06:36:47.15 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 | [3e8 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [5e8 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [630 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org1.example.com | [5e9 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [5d1 01-05 06:36:47.15 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 | org.hyperledger.fabric.version="1.1.0" \ -peer1.org1.example.com | [5d2 01-05 06:36:47.15 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 | [5ea 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [631 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3e9 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5eb 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.4.2" -peer1.org1.example.com | [5d3 01-05 06:36:47.15 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}] -orderer.example.com | [3ea 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [632 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]sending state message TRANSACTION -peer0.org1.example.com | [5ec 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer1.org1.example.com | [5d4 01-05 06:36:47.15 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}] -orderer.example.com | [3eb 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [5ed 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [633 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Received message TRANSACTION from shim -orderer.example.com | [3ec 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [5e6 01-05 06:36:44.47 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 | [5d5 01-05 06:36:47.15 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 | [634 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [5ee 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -orderer.example.com | [3ed 01-05 06:36:28.22 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 -peer1.org1.example.com | [5d6 01-05 06:36:47.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org2.example.com | [5e7 01-05 06:36:44.47 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer0.org1.example.com | [5ef 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [5d7 01-05 06:36:47.16 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 -orderer.example.com | [3ee 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [635 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632d235f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5e8 01-05 06:36:44.47 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer1.org1.example.com | [5d8 01-05 06:36:47.16 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 | [636 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632d235f]Sending GET_STATE -orderer.example.com | [3ef 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [5f0 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5d9 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [637 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message GET_STATE from shim -peer0.org2.example.com | [5e9 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [3f0 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [5da 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -peer0.org1.example.com | [5f1 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3f1 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [5ea 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [638 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [5db 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [5f2 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message READY -peer0.org2.example.com | [5eb 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422481400 env 0xc422519590 txn 0 -orderer.example.com | [3f2 01-05 06:36:28.22 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 -peer1.org1.example.com | [5dc 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [639 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [632d235f]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [5ec 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422519590 -peer0.org1.example.com | [5f3 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [3f3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [5dd 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [63a 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5ed 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer0.org1.example.com | [5f4 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b0d13d6f]Entered state ready -orderer.example.com | [3f4 01-05 06:36:28.22 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.org1.example.com | [5de 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [5ee 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [63b 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632d235f] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | [3f5 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [5f5 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -peer1.org1.example.com | [5df 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [5ef 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [63c 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [3f6 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [5f6 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message READY -peer1.org1.example.com | [5e0 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [63d 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632d235f]Got state. Sending RESPONSE -peer0.org1.example.com | [5f7 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed -orderer.example.com | [3f7 01-05 06:36:28.22 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 -peer1.org1.example.com | [5e1 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [5f0 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org2.example.com | [63e 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [632d235f]handleGetState serial send RESPONSE -orderer.example.com | [3f8 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [5f8 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [5f1 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [5e2 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [3f9 01-05 06:36:28.23 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 -peer1.org2.example.com | [63f 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Received message RESPONSE from shim -peer0.org2.example.com | [5f2 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [5e3 01-05 06:36:47.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [5f9 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -orderer.example.com | [3fa 01-05 06:36:28.23 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 -peer1.org2.example.com | [640 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [5f3 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42038a000, header channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer1.org1.example.com | [5e4 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [5fa 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org2.example.com | [641 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632d235f]before send -orderer.example.com | [3fb 01-05 06:36:28.23 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 -peer1.org1.example.com | [5e5 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [5fb 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [5f4 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [642 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [632d235f]after send -orderer.example.com | [3fc 01-05 06:36:28.23 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 -peer1.org1.example.com | [5e6 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423106260 env 0xc421eb2600 txn 0 -peer0.org2.example.com | [5f5 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [643 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [632d235f]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5fc 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [3fd 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [5e7 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421eb2600 -peer0.org2.example.com | [5f6 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [5fd 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [644 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [632d235f]GetState received payload RESPONSE -orderer.example.com | [3fe 01-05 06:36:28.23 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.org1.example.com | [5e8 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -peer0.org1.example.com | [5fe 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [5f7 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [3ff 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [645 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [5ff 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message INIT -peer1.org1.example.com | [5e9 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [5f8 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org1.example.com | [600 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [646 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Move state message COMPLETED -peer1.org1.example.com | [5ea 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [601 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5f9 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [647 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [5eb 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [648 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]send state message COMPLETED -peer0.org2.example.com | [5fa 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422519590 envbytes 0xc422514880 -peer0.org1.example.com | [602 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message INIT -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [5ec 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [649 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message COMPLETED from shim -peer0.org2.example.com | [5fb 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422514880 -peer0.org1.example.com | [603 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message PUT_STATE from shim -peer1.org1.example.com | [5ed 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [5fc 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [64a 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [604 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [5ee 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422873500, header channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [5fd 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer1.org2.example.com | [64b 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5ef 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [605 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5fe 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=9a47feb8-4733-43a0-86aa-4292a7060771,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [64c 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e, channelID:businesschannel -peer1.org1.example.com | [5f0 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [606 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]state is ready -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org2.example.com | [5ff 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 chaindID businesschannel -peer1.org2.example.com | [64d 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [607 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [5f1 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [64e 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org2.example.com | [600 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [608 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [5f2 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [64f 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [601 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [609 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message RESPONSE -peer1.org2.example.com | [650 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [5f3 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer0.org2.example.com | [602 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [603 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a47feb8]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [5f4 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [60a 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org2.example.com | [604 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [651 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org1.example.com | [5f5 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421eb2600 envbytes 0xc4202b2000 -peer0.org1.example.com | [60b 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [605 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a47feb8]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [652 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [5f6 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4202b2000 -peer0.org2.example.com | [606 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a47feb8]Move state message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [60c 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message RESPONSE -peer1.org1.example.com | [5f7 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [653 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [607 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9a47feb8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [60d 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message PUT_STATE from shim -orderer.example.com | [400 01-05 06:36:28.23 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----- -peer0.org2.example.com | [608 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5f8 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer1.org2.example.com | [654 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [60e 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [5f9 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=1d850b29-cf7b-4718-b2a6-3dcd424523b7,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [609 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a47feb8]sending state message TRANSACTION -peer0.org1.example.com | [60f 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [655 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [5fa 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 chaindID businesschannel -peer0.org2.example.com | [60a 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a47feb8]Received message TRANSACTION from shim -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [5fb 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [610 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]state is ready -peer0.org2.example.com | [60b 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a47feb8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer0.org2.example.com | [0c6 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93228d72]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | 00000010 2b 6d e3 42 b4 96 af 69 d8 1d 6c c8 54 91 7d 4c |+m.B...i..l.T.}L| +peer0.org1.example.com | [0b4 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [5fc 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [60c 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a47feb8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [611 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [0c3 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func2.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf 12 bb 62 19 16 0c 5a b2 b1 3e |0E.!....b...Z..>| +peer0.org2.example.com | [0c7 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [93228d72]Entered state ready peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | [60d 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [612 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [5fd 01-05 06:36:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [60e 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [0c8 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:93228d72-e788-40e5-b86b-4ecee28a7427, channelID: +peer1.org1.example.com | 00000010 ea 17 43 39 ac 25 b9 91 94 3a 8e 0c ef 40 3c df |..C9.%...:...@<.| peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [5fe 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d850b29]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [613 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message RESPONSE -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org2.example.com | [60f 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [0b6 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer0.org2.example.com | [0c9 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93228d72]sending state message READY +peer1.org1.example.com | 00000020 e8 9c 0a aa c3 02 20 31 38 76 8d 06 10 7a 27 17 |...... 18v...z'.| peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [614 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [0b7 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer0.org1.example.com | [0b8 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | 00000030 a5 91 b6 0e 20 15 6a f5 76 1a 7f 6c 8e cb fb 3b |.... .j.v..l...;| +peer0.org2.example.com | [0ca 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [610 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [5ff 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org1.example.com | [615 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [0b9 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [0cb 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [611 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [600 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d850b29]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer1.org1.example.com | 00000040 f0 bc fc a7 54 4e 72 |....TNr| +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [0ba 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [616 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message RESPONSE -peer1.org1.example.com | [601 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d850b29]Move state message TRANSACTION -peer0.org2.example.com | [612 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org2.example.com | [656 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-exp02-1.0) lock -peer0.org2.example.com | [613 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [602 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d850b29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [0cc 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +peer1.org1.example.com | [0c4 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +peer1.org2.example.com | [0af 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer0.org1.example.com | [0bb 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0cd 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +peer1.org2.example.com | [0b0 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [0bc 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +peer0.org2.example.com | [0ce 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [93228d72]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0c5 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0b1 01-13 06:14:04.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [0bd 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +peer1.org2.example.com | [0b2 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer1.org1.example.com | [0c1 01-13 06:14:05.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer0.org2.example.com | [0cf 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer1.org1.example.com | [0c6 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +peer1.org2.example.com | [0b3 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [0be 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [0d0 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [93228d72]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0c7 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [617 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message COMPLETED from shim -peer0.org2.example.com | [614 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [6b8b9f26-03cd-4e3b-8593-ac52a094639c] -peer1.org2.example.com | [657 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-exp02-1.0) lock -peer1.org1.example.com | [603 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [618 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [401 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [615 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [658 01-05 06:36:54.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 -peer0.org1.example.com | [619 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2]HandleMessage- COMPLETED. Notify -orderer.example.com | [402 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [616 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [6b8b9f26-03cd-4e3b-8593-ac52a094639c] -peer1.org1.example.com | [604 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d850b29]sending state message TRANSACTION -peer1.org2.example.com | [659 01-05 06:36:54.47 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) -orderer.example.com | [403 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [605 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d850b29]Received message TRANSACTION from shim -peer0.org1.example.com | [61a 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -peer0.org2.example.com | [617 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -orderer.example.com | [404 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [606 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d850b29]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [65a 01-05 06:36:54.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) -peer0.org1.example.com | [61b 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [618 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4219b8f00)} -orderer.example.com | [405 01-05 06:36:28.23 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 | [607 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1d850b29]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [61c 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [619 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [406 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [65b 01-05 06:36:54.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) -peer1.org1.example.com | [608 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [61d 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [61a 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a47feb8]Transaction completed. Sending COMPLETED -orderer.example.com | [407 01-05 06:36:28.23 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 | [65c 01-05 06:36:54.48 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 | [609 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [61e 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -orderer.example.com | [408 01-05 06:36:28.23 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 -peer0.org2.example.com | [61b 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a47feb8]Move state message COMPLETED -peer0.org1.example.com | [61f 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [60a 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | [409 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [620 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [65d 01-05 06:36:54.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [60b 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [61c 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a47feb8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [40a 01-05 06:36:28.23 UTC] [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.org2.example.com | [65e 01-05 06:36:54.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 -peer0.org1.example.com | [621 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org2.example.com | [61d 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a47feb8]send state message COMPLETED -peer1.org1.example.com | [60c 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | [40b 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [65f 01-05 06:36:54.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer0.org1.example.com | [622 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [60d 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -orderer.example.com | [40c 01-05 06:36:28.23 UTC] [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 -peer0.org2.example.com | [61e 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a47feb8]Received message COMPLETED from shim -orderer.example.com | [40d 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [660 01-05 06:36:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org1.example.com | [60e 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [61f 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9a47feb8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [623 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2,syscc=true,proposal=0xc42346b860,canname=escc:1.1.0 +peer1.org2.example.com | [0b4 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [0bf 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [0c8 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +peer0.org2.example.com | [0c1 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [0d5 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [0c1 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [0d1 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93228d72]Received message READY from shim +peer1.org2.example.com | [0b5 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +peer0.org1.example.com | [0c2 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [0c9 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [0b6 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [0d2 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93228d72]Move state message INIT +peer0.org1.example.com | [0c0 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [0d4 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93228d72]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0b7 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +peer1.org1.example.com | [0cb 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0c3 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [0b8 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0d5 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer1.org2.example.com | [0b9 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0c4 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0d3 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93228d72]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0cc 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | -------------------- +peer0.org1.example.com | [0c5 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]Move state message READY +peer0.org2.example.com | [0d6 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93228d72]sending state message INIT +peer1.org2.example.com | [0ba 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [0cd 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A +peer0.org1.example.com | [0c6 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [0d7 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93228d72]Received message INIT from shim +peer1.org2.example.com | [0bb 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [0ce 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 53D1D3E6BE7D3E3FBD4A223DC9EF4F78E37709D9D567279D43507530A4579955 +peer0.org1.example.com | [0c7 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3988aa4e]Entered state ready +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer0.org2.example.com | [0d8 01-13 06:14:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93228d72]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [0bc 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [0d9 01-13 06:14:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [0c8 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3988aa4e-89e9-4220-902c-b5627c306230, channelID: +peer1.org1.example.com | [0ca 01-13 06:14:05.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer1.org2.example.com | [0bd 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [0c9 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]sending state message READY +peer0.org2.example.com | [0da 01-13 06:14:05.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [93228d72]Received INIT, initializing chaincode +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer1.org2.example.com | [0be 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [0cf 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0ca 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Received message READY from shim +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [0db 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0bf 01-13 06:14:04.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0cb 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3988aa4e]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0d0 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org2.example.com | [0dc 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93228d72]Init get response status: 200 +peer0.org1.example.com | [0cc 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0c0 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0d1 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0cd 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [0d2 01-13 06:14:05.39 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [0dd 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93228d72]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0c1 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [0d6 01-13 06:14:10.12 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 | [0d3 01-13 06:14:05.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0ce 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [0de 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93228d72]Move state message COMPLETED +peer1.org2.example.com | [0c2 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed +orderer.example.com | [0d7 01-13 06:14:10.12 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 | [0d4 01-13 06:14:05.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org1.example.com | [0cf 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [0c3 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [0df 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93228d72]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [0d8 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [0d0 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3988aa4e]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0d6 01-13 06:14:05.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | [0d9 01-13 06:14:10.12 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 | [0e0 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93228d72]send state message COMPLETED +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [0c4 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [0d7 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +orderer.example.com | [0da 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [0d1 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0e1 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93228d72]Received message COMPLETED from shim +peer1.org2.example.com | [0c5 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55a68775]Move state message READY +orderer.example.com | [0db 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [0d2 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3988aa4e]sendExecuteMsg trigger event INIT +explorer | at next (native) +peer1.org1.example.com | [0d8 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [0c6 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55a68775]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0e2 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93228d72]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0dc 01-13 06:14:10.12 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 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org1.example.com | [0d3 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]Move state message INIT +peer1.org1.example.com | [0d5 01-13 06:14:05.42 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:10657766757792123240 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [0c7 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [55a68775]Entered state ready +peer0.org2.example.com | [0e3 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93228d72-e788-40e5-b86b-4ecee28a7427]HandleMessage- COMPLETED. Notify +orderer.example.com | [0dd 01-13 06:14:10.12 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 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [0da 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0d4 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0c8 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:55a68775-8c11-419b-af92-f66902a260ea, channelID: +peer0.org2.example.com | [0e4 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:93228d72-e788-40e5-b86b-4ecee28a7427, channelID: +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org1.example.com | [0db 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [0de 01-13 06:14:10.12 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 +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [0c9 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55a68775]sending state message READY +peer0.org1.example.com | [0d5 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0dc 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0e5 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [0df 01-13 06:14:10.12 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 +explorer | errno: 1146, +peer1.org2.example.com | [0ca 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [0dd 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +peer0.org1.example.com | [0d6 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]sending state message INIT +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [0e6 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | [0e0 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [0cc 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +explorer | sqlState: '42S02', +peer1.org1.example.com | [0de 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [0d7 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Received message INIT from shim +orderer.example.com | [0e1 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [0e7 01-13 06:14:05.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=160d3b5e-f68f-41f8-be5b-2b6366f09601,syscc=true,proposal=0x0,canname=escc:1.1.0 +explorer | index: 0, +peer1.org2.example.com | [0cd 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [0d8 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3988aa4e]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0df 01-13 06:14:05.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [0e8 01-13 06:14:05.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org1.example.com | [0d9 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [0e2 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0ce 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [0e0 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | [2018-01-13 06:14:32.229] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [0da 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3988aa4e]Received INIT, initializing chaincode +peer0.org2.example.com | [0e9 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [0cf 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55a68775]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0e1 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [0db 01-13 06:14:04.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0cb 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55a68775]Received message READY from shim +peer0.org2.example.com | [0ea 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [0e2 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0dc 01-13 06:14:04.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Init get response status: 200 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [0d1 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55a68775]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0dd 01-13 06:14:04.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0eb 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [0e3 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed +peer1.org2.example.com | [0d0 01-13 06:14:04.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0de 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Move state message COMPLETED +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [0e4 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [0ec 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org2.example.com | [0d2 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55a68775]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [0df 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3988aa4e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer1.org1.example.com | [0e5 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0ed 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer0.org1.example.com | [0e0 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]send state message COMPLETED +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [0d3 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55a68775]Move state message INIT +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [0e1 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]Received message COMPLETED from shim +peer1.org1.example.com | [0e6 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d50014c3]Move state message READY +peer0.org2.example.com | [0ee 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [0e2 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0d4 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55a68775]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0e7 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d50014c3]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [0e3 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e-89e9-4220-902c-b5627c306230]HandleMessage- COMPLETED. Notify +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [0ef 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | [0d5 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0e8 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d50014c3]Entered state ready +peer0.org1.example.com | [0e4 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3988aa4e-89e9-4220-902c-b5627c306230, channelID: +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer1.org2.example.com | [0d6 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55a68775]sending state message INIT +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +peer0.org1.example.com | [0e5 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [0e9 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d50014c3-24be-4a2f-b531-476ca1742d4f, channelID: +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [0e6 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [0d7 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55a68775]Received message INIT from shim +peer0.org1.example.com | [0e7 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=8e573e7a-0c9e-4378-811a-1edba3029185,syscc=true,proposal=0x0,canname=escc:1.1.0 +explorer | -------------------- +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | [0ea 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d50014c3]sending state message READY +peer0.org1.example.com | [0e8 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched +peer1.org2.example.com | [0d8 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55a68775]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [0eb 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d50014c3]Received message READY from shim +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [0e9 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [0ea 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [0d9 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [0ec 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d50014c3]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [0eb 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org2.example.com | [0da 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [55a68775]Received INIT, initializing chaincode +peer1.org1.example.com | [0ed 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [0ec 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | vA2BLfriqQ== +peer1.org2.example.com | [0db 01-13 06:14:04.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0ed 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [0ee 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0ee 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [0dc 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55a68775]Init get response status: 200 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [0ef 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [0ef 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +orderer.example.com | [0e3 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0dd 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55a68775]Init succeeded. Sending COMPLETED +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [0f0 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +peer1.org1.example.com | [0f0 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [0de 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55a68775]Move state message COMPLETED +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [0f1 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer1.org1.example.com | [0f1 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d50014c3]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | [0f2 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer1.org2.example.com | [0df 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55a68775]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | [0f2 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0e0 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55a68775]send state message COMPLETED +peer0.org2.example.com | [0f3 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer1.org1.example.com | [0f3 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d50014c3]sendExecuteMsg trigger event INIT +explorer | errno: 1146, +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [0f4 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +peer1.org2.example.com | [0e1 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55a68775]Received message COMPLETED from shim +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [0f5 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [0d9 01-13 06:14:05.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:10657766757792123240 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +explorer | sqlState: '42S02', +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [0e2 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55a68775]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [0f6 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +explorer | index: 0, +peer0.org1.example.com | [0f0 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +peer1.org1.example.com | [0f5 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] +peer1.org2.example.com | [0e3 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [55a68775-8c11-419b-af92-f66902a260ea]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [0f7 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org1.example.com | [0f1 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [0f8 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer1.org2.example.com | [0e4 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:55a68775-8c11-419b-af92-f66902a260ea, channelID: +peer1.org1.example.com | [0f4 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d50014c3]Move state message INIT +explorer | [2018-01-13 06:14:32.456] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [0f2 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer0.org2.example.com | [0f9 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [0e5 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer1.org1.example.com | [0f6 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d50014c3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [0f3 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +peer0.org2.example.com | [0fa 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [0e6 01-13 06:14:04.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [0f7 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [0f4 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +peer1.org2.example.com | [0e7 01-13 06:14:04.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=466a80c6-78f4-4a4f-a2e8-15faf64c36b5,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer0.org2.example.com | [0fb 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [0f8 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d50014c3]sending state message INIT +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +peer0.org1.example.com | [0f5 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [0fc 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [0f9 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d50014c3]Received message INIT from shim +peer1.org2.example.com | [0e8 01-13 06:14:04.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer0.org1.example.com | [0f6 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +peer0.org2.example.com | [0fd 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer1.org1.example.com | [0fa 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d50014c3]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer1.org2.example.com | [0e9 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [0f7 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [0fb 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [0fe 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer1.org2.example.com | [0ea 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [0f8 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer1.org1.example.com | [0fc 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d50014c3]Received INIT, initializing chaincode +peer0.org2.example.com | [0ff 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [0eb 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org1.example.com | [0f9 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [100 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [0fd 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [0ec 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | [0e4 01-13 06:14:10.13 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 | [101 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0fa 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [0fe 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d50014c3]Init get response status: 200 +orderer.example.com | [0e5 01-13 06:14:10.13 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 | [102 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0ed 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +explorer | -------------------- +peer0.org1.example.com | [0fb 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [0e6 01-13 06:14:10.13 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 | [0ff 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d50014c3]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [103 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed +peer1.org2.example.com | [0ee 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | [0e7 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [0fc 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [100 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d50014c3]Move state message COMPLETED +peer1.org2.example.com | [0ef 01-13 06:14:04.85 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [0fd 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer0.org2.example.com | [104 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [0e8 01-13 06:14:10.13 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +peer1.org1.example.com | [101 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d50014c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [0fe 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +orderer.example.com | [0e9 01-13 06:14:10.13 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [0ff 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [102 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d50014c3]send state message COMPLETED +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [105 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [100 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +orderer.example.com | [0ea 01-13 06:14:10.13 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 | [106 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [160d3b5e]Move state message READY +peer0.org1.example.com | [101 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [103 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d50014c3]Received message COMPLETED from shim +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | [104 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d50014c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [102 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [0eb 01-13 06:14:10.13 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 | [107 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [160d3b5e]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [103 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [105 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d50014c3-24be-4a2f-b531-476ca1742d4f]HandleMessage- COMPLETED. Notify +orderer.example.com | [0ec 01-13 06:14:10.13 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 +explorer | at next (native) +peer0.org1.example.com | [104 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [108 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [160d3b5e]Entered state ready +peer1.org1.example.com | [106 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d50014c3-24be-4a2f-b531-476ca1742d4f, channelID: +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | [0ed 01-13 06:14:10.13 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.org1.example.com | [105 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [107 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [109 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:160d3b5e-f68f-41f8-be5b-2b6366f09601, channelID: +peer0.org1.example.com | [106 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]Move state message READY +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | [0ee 01-13 06:14:10.13 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 | [107 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [108 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [10a 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [160d3b5e]sending state message READY +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [108 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8e573e7a]Entered state ready +peer0.org2.example.com | [10b 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [160d3b5e]Received message READY from shim +peer1.org2.example.com | [0f0 01-13 06:14:04.86 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +peer1.org1.example.com | [109 01-13 06:14:05.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=b56bfdf5-b7c8-44c7-9bef-bb03266d1a21,syscc=true,proposal=0x0,canname=escc:1.1.0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [109 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8e573e7a-0c9e-4378-811a-1edba3029185, channelID: +peer0.org2.example.com | [10c 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [160d3b5e]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [10a 01-13 06:14:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched +peer0.org1.example.com | [10a 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]sending state message READY +peer0.org2.example.com | [10d 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [0f1 01-13 06:14:04.86 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer0.org1.example.com | [10b 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Received message READY from shim +peer1.org1.example.com | [10b 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [10e 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +explorer | errno: 1146, +peer1.org2.example.com | [0f2 01-13 06:14:04.86 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer0.org1.example.com | [10c 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e573e7a]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [10c 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer0.org2.example.com | [10f 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [10d 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org1.example.com | [10d 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0f3 01-13 06:14:04.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [110 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [10e 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +explorer | sqlState: '42S02', +peer0.org1.example.com | [10e 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [0f4 01-13 06:14:04.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [10f 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [111 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [160d3b5e]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [10f 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +explorer | index: 0, +peer1.org1.example.com | [110 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org2.example.com | [112 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [110 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [0f5 01-13 06:14:04.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +peer0.org1.example.com | [111 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8e573e7a]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [113 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [160d3b5e]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [111 01-13 06:14:05.48 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org1.example.com | [112 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +peer1.org2.example.com | [0f7 01-13 06:14:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [114 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [160d3b5e]Move state message INIT +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 +peer0.org1.example.com | [113 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8e573e7a]sendExecuteMsg trigger event INIT +explorer | [2018-01-13 06:14:33.313] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [115 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [160d3b5e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0f8 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [114 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]Move state message INIT +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | [116 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0f9 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [115 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | [117 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [160d3b5e]sending state message INIT +peer1.org2.example.com | [0f6 01-13 06:14:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [116 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [118 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [160d3b5e]Received message INIT from shim +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [0fa 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [117 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]sending state message INIT +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [119 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [160d3b5e]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [0fb 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [118 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Received message INIT from shim +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | oQmWQsjpiQ== +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [0fc 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [119 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e573e7a]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [112 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +peer0.org2.example.com | [11a 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | -----END CERTIFICATE----- +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [0fd 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer1.org1.example.com | [113 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +peer0.org1.example.com | [11a 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [0ef 01-13 06:14:10.13 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.org2.example.com | [11b 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [160d3b5e]Received INIT, initializing chaincode +peer1.org1.example.com | [114 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +peer1.org2.example.com | [0fe 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [11b 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8e573e7a]Received INIT, initializing chaincode +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [115 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [0ff 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [11c 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [11c 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [116 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +peer0.org2.example.com | [11d 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [160d3b5e]Init get response status: 200 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [100 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [117 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [11d 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Init get response status: 200 +peer0.org2.example.com | [11e 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [160d3b5e]Init succeeded. Sending COMPLETED +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [118 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +peer1.org2.example.com | [102 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [119 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [11f 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [160d3b5e]Move state message COMPLETED +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [11e 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [11a 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +peer1.org2.example.com | [103 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed +peer0.org2.example.com | [120 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [160d3b5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [11b 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [104 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [11f 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Move state message COMPLETED +peer1.org1.example.com | [11c 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [121 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [160d3b5e]send state message COMPLETED +peer1.org1.example.com | [11d 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [105 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [11e 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [120 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e573e7a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org2.example.com | [122 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [160d3b5e]Received message COMPLETED from shim +peer1.org1.example.com | [11f 01-13 06:14:05.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +peer0.org1.example.com | [121 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]send state message COMPLETED +explorer | -------------------- +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer0.org2.example.com | [123 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [160d3b5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [106 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [466a80c6]Move state message READY +peer1.org1.example.com | [120 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [122 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]Received message COMPLETED from shim +peer1.org2.example.com | [107 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [466a80c6]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org1.example.com | [121 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [124 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [160d3b5e-f68f-41f8-be5b-2b6366f09601]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [123 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [108 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [466a80c6]Entered state ready +peer1.org1.example.com | [122 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org2.example.com | [125 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:160d3b5e-f68f-41f8-be5b-2b6366f09601, channelID: +peer1.org2.example.com | [109 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:466a80c6-78f4-4a4f-a2e8-15faf64c36b5, channelID: +peer1.org1.example.com | [123 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [124 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a-0c9e-4378-811a-1edba3029185]HandleMessage- COMPLETED. Notify +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [124 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [126 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [125 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed +peer1.org2.example.com | [10a 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [466a80c6]sending state message READY +peer0.org1.example.com | [125 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8e573e7a-0c9e-4378-811a-1edba3029185, channelID: +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer1.org1.example.com | [126 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [127 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org2.example.com | [10b 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer1.org1.example.com | [127 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org1.example.com | [126 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [128 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b56bfdf5]Move state message READY +peer0.org2.example.com | [128 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=9455bccd-6f1b-4e9f-829d-824e79b22859,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [129 01-13 06:14:05.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b56bfdf5]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [10c 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [127 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [129 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched +peer1.org1.example.com | [12a 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b56bfdf5]Entered state ready +orderer.example.com | [0f0 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [10d 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [12b 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b56bfdf5-b7c8-44c7-9bef-bb03266d1a21, channelID: +peer0.org1.example.com | [128 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=ea1bed4a-705c-4f2f-97bb-39a7de0640bd,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [12a 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [10e 01-13 06:14:04.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [0f1 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org1.example.com | [12c 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b56bfdf5]sending state message READY +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [12b 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [129 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched +peer1.org1.example.com | [12d 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b56bfdf5]Received message READY from shim +peer1.org2.example.com | [10f 01-13 06:14:04.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [466a80c6]Inside sendExecuteMessage. Message INIT +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [0f2 01-13 06:14:10.13 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 | [12c 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [12e 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b56bfdf5]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [12a 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [110 01-13 06:14:04.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org2.example.com | [12d 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [12f 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | [0f3 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [12b 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [130 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [111 01-13 06:14:04.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [466a80c6]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [12e 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +orderer.example.com | [0f4 01-13 06:14:10.13 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.org1.example.com | [131 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [101 01-13 06:14:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [132 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org2.example.com | [12f 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +orderer.example.com | [0f5 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [12c 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [133 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b56bfdf5]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [130 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | [0f6 01-13 06:14:10.13 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.org2.example.com | [112 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [466a80c6]Move state message INIT +explorer | errno: 1146, +peer0.org1.example.com | [12d 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [134 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +orderer.example.com | [0f7 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer1.org2.example.com | [113 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [466a80c6]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [135 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b56bfdf5]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [12e 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [0f8 01-13 06:14:10.13 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.org1.example.com | [136 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b56bfdf5]Move state message INIT +peer0.org1.example.com | [12f 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [114 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [137 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b56bfdf5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [0f9 01-13 06:14:10.13 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 | [130 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | [138 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [115 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [466a80c6]sending state message INIT +peer1.org1.example.com | [139 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b56bfdf5]sending state message INIT +explorer | sqlState: '42S02', +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | [0fa 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer1.org1.example.com | [13a 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b56bfdf5]Received message INIT from shim +peer1.org2.example.com | [116 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [466a80c6]Received message READY from shim +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +explorer | index: 0, +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [13b 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b56bfdf5]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [0fb 01-13 06:14:10.13 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 | [117 01-13 06:14:04.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [466a80c6]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [13c 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [118 01-13 06:14:04.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [466a80c6]Received message INIT from shim +orderer.example.com | [0fc 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | [13d 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b56bfdf5]Received INIT, initializing chaincode +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | [2018-01-13 06:14:33.458] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org1.example.com | [13e 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [119 01-13 06:14:04.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [466a80c6]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +orderer.example.com | [0fd 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [13f 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b56bfdf5]Init get response status: 200 +peer1.org2.example.com | [11a 01-13 06:14:04.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [131 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +orderer.example.com | [0fe 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer1.org1.example.com | [140 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b56bfdf5]Init succeeded. Sending COMPLETED +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [11b 01-13 06:14:04.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [466a80c6]Received INIT, initializing chaincode +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [141 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b56bfdf5]Move state message COMPLETED +peer0.org2.example.com | [132 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer1.org1.example.com | [142 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b56bfdf5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [0ff 01-13 06:14:10.13 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 | [11c 01-13 06:14:04.96 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [143 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b56bfdf5]send state message COMPLETED +peer0.org2.example.com | [133 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [11d 01-13 06:14:04.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [466a80c6]Init get response status: 200 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [144 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b56bfdf5]Received message COMPLETED from shim +peer0.org2.example.com | [134 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +orderer.example.com | [100 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +peer1.org1.example.com | [145 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b56bfdf5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [11e 01-13 06:14:04.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [466a80c6]Init succeeded. Sending COMPLETED +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [101 01-13 06:14:10.13 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.org1.example.com | [146 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b56bfdf5-b7c8-44c7-9bef-bb03266d1a21]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [135 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer1.org2.example.com | [11f 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [466a80c6]Move state message COMPLETED +peer0.org1.example.com | [131 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [102 01-13 06:14:10.13 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.org1.example.com | [147 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b56bfdf5-b7c8-44c7-9bef-bb03266d1a21, channelID: +peer0.org2.example.com | [136 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [120 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [466a80c6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [103 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +peer0.org1.example.com | [132 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer1.org1.example.com | [148 01-13 06:14:05.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [104 01-13 06:14:10.13 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 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [137 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +peer1.org2.example.com | [121 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [466a80c6]send state message COMPLETED +orderer.example.com | [105 01-13 06:14:10.13 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 +peer0.org1.example.com | [133 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +peer1.org1.example.com | [149 01-13 06:14:05.52 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [138 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | [106 01-13 06:14:10.13 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 | [122 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [466a80c6]Received message COMPLETED from shim +peer1.org1.example.com | [14a 01-13 06:14:05.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=4e2b9566-706d-46ed-a983-21c3da056746,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [134 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +peer0.org2.example.com | [139 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +orderer.example.com | [107 01-13 06:14:10.13 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.org1.example.com | [14b 01-13 06:14:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched +peer1.org2.example.com | [123 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [466a80c6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [108 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +peer0.org1.example.com | [135 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer0.org2.example.com | [13a 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [14c 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [124 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [466a80c6-78f4-4a4f-a2e8-15faf64c36b5]HandleMessage- COMPLETED. Notify +orderer.example.com | [109 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [10a 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [14d 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org1.example.com | [137 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [125 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:466a80c6-78f4-4a4f-a2e8-15faf64c36b5, channelID: +peer0.org2.example.com | [13b 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [10b 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [14f 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [126 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [136 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +orderer.example.com | [10c 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +peer0.org2.example.com | [13c 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [150 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +orderer.example.com | [10d 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [127 01-13 06:14:04.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [13d 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [138 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [151 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | [10e 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [128 01-13 06:14:05.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=aeadf85b-c644-49c8-89a8-06595bac5903,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [13e 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +explorer | -------------------- +peer1.org1.example.com | [152 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [139 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +orderer.example.com | [10f 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [129 01-13 06:14:05.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched +peer0.org2.example.com | [13f 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +orderer.example.com | [110 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [12a 01-13 06:14:05.00 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [153 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [13a 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [12b 01-13 06:14:05.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [140 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [111 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [12c 01-13 06:14:05.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [154 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [13b 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [112 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [12d 01-13 06:14:05.01 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [141 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +peer1.org2.example.com | [12e 01-13 06:14:05.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [113 01-13 06:14:10.13 UTC] [github.com/hyperledger/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.org1.example.com | [13c 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [12f 01-13 06:14:05.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [142 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [114 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [130 01-13 06:14:05.02 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [143 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [13d 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 +orderer.example.com | [115 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [144 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [13e 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | [145 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | [13f 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +orderer.example.com | [116 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [146 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | [147 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9455bccd]Move state message READY +peer0.org1.example.com | [140 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [117 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [148 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9455bccd]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [141 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [118 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 | [149 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9455bccd]Entered state ready +peer0.org1.example.com | [142 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed +orderer.example.com | [119 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.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 | [14a 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9455bccd-6f1b-4e9f-829d-824e79b22859, channelID: +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +orderer.example.com | [11a 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [131 01-13 06:14:05.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +peer0.org1.example.com | [143 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [14b 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9455bccd]sending state message READY +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [132 01-13 06:14:05.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer0.org2.example.com | [14c 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9455bccd]Received message READY from shim +orderer.example.com | [11b 01-13 06:14:10.14 UTC] [github.com/hyperledger/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.org1.example.com | [144 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [133 01-13 06:14:05.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +peer0.org2.example.com | [14d 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9455bccd]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | [11c 01-13 06:14:10.14 UTC] [github.com/hyperledger/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.org1.example.com | [145 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]Move state message READY +peer1.org2.example.com | [134 01-13 06:14:05.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +peer0.org2.example.com | [14e 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [155 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +orderer.example.com | [11d 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +peer1.org2.example.com | [135 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +peer0.org2.example.com | [14f 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +explorer | at next (native) +peer0.org1.example.com | [146 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [136 01-13 06:14:05.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | [11e 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 | [150 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [156 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +peer1.org2.example.com | [137 01-13 06:14:05.05 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +peer0.org1.example.com | [147 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ea1bed4a]Entered state ready +peer0.org2.example.com | [151 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +orderer.example.com | [11f 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +peer1.org2.example.com | [138 01-13 06:14:05.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [152 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9455bccd]Inside sendExecuteMessage. Message INIT +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [157 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +peer0.org1.example.com | [148 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ea1bed4a-705c-4f2f-97bb-39a7de0640bd, channelID: +orderer.example.com | [120 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +peer1.org2.example.com | [139 01-13 06:14:05.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +peer0.org2.example.com | [153 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [13a 01-13 06:14:05.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [149 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]sending state message READY +orderer.example.com | [121 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 | [154 01-13 06:14:05.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9455bccd]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [13b 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [158 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +orderer.example.com | [122 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 | [155 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9455bccd]Move state message INIT +peer0.org1.example.com | [14a 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [13c 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [159 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +orderer.example.com | [123 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [156 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9455bccd]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [13d 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [15a 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [157 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [14b 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | [124 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [13e 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +peer0.org2.example.com | [158 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9455bccd]sending state message INIT +explorer | errno: 1146, +peer1.org1.example.com | [15b 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +peer1.org2.example.com | [13f 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +peer0.org1.example.com | [14c 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [159 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9455bccd]Received message INIT from shim +peer1.org2.example.com | [140 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org1.example.com | [14d 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +orderer.example.com | [125 01-13 06:14:10.14 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.org2.example.com | [141 01-13 06:14:05.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [15a 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9455bccd]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [15c 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [14e 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ea1bed4a]Inside sendExecuteMessage. Message INIT +explorer | sqlState: '42S02', +orderer.example.com | [126 01-13 06:14:10.14 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 | [15b 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [15d 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +peer1.org2.example.com | [142 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [14f 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [15c 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9455bccd]Received INIT, initializing chaincode +orderer.example.com | [127 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [150 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ea1bed4a]sendExecuteMsg trigger event INIT +explorer | index: 0, +peer1.org2.example.com | [143 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [15d 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9455bccd]Init get response status: 200 +peer1.org1.example.com | [15e 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [128 01-13 06:14:10.14 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 | [15e 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9455bccd]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [144 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org1.example.com | [151 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [15f 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [15f 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9455bccd]Move state message COMPLETED +orderer.example.com | [129 01-13 06:14:10.14 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 +explorer | [2018-01-13 06:14:34.357] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer1.org2.example.com | [145 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [152 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [160 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [12a 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [160 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9455bccd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [146 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [161 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [154 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]Move state message INIT +orderer.example.com | [12b 01-13 06:14:10.14 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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [147 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeadf85b]Move state message READY +peer0.org2.example.com | [161 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9455bccd]send state message COMPLETED +peer1.org1.example.com | [162 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +peer0.org1.example.com | [155 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [12c 01-13 06:14:10.14 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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [148 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeadf85b]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [162 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9455bccd]Received message COMPLETED from shim +peer0.org1.example.com | [156 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [163 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +orderer.example.com | [12d 01-13 06:14:10.14 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 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [163 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9455bccd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [149 01-13 06:14:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [aeadf85b]Entered state ready +peer1.org1.example.com | [164 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [12e 01-13 06:14:10.14 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 | [157 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]sending state message INIT +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [164 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9455bccd-6f1b-4e9f-829d-824e79b22859]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [165 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [153 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Received message READY from shim +peer1.org2.example.com | [14a 01-13 06:14:05.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:aeadf85b-c644-49c8-89a8-06595bac5903, channelID: +orderer.example.com | [12f 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [165 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9455bccd-6f1b-4e9f-829d-824e79b22859, channelID: +peer1.org1.example.com | [166 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [158 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea1bed4a]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [14b 01-13 06:14:05.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeadf85b]sending state message READY +orderer.example.com | [130 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [166 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [167 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [159 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Received message INIT from shim +peer1.org2.example.com | [14c 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeadf85b]Received message READY from shim +peer0.org1.example.com | [15a 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea1bed4a]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [131 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [14d 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeadf85b]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [168 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed +peer0.org2.example.com | [167 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +orderer.example.com | [132 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [169 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [168 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=4084c1d3-6f65-4c6f-9cde-747aecd9ddd8,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | [14e 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [15b 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [16a 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [133 01-13 06:14:10.14 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 | [15c 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ea1bed4a]Received INIT, initializing chaincode +peer1.org2.example.com | [14f 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [169 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [16b 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e2b9566]Move state message READY +peer0.org1.example.com | [15d 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Init get response status: 200 +orderer.example.com | [134 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [16a 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org2.example.com | [150 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [16c 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e2b9566]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [135 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [15e 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [16b 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [151 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org1.example.com | [16d 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4e2b9566]Entered state ready +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [16c 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org2.example.com | [152 01-13 06:14:05.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [aeadf85b]Inside sendExecuteMessage. Message INIT +orderer.example.com | [136 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [15f 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Move state message COMPLETED +explorer | -------------------- +peer1.org1.example.com | [16e 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4e2b9566-706d-46ed-a983-21c3da056746, channelID: +peer1.org2.example.com | [153 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [16d 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] +peer0.org1.example.com | [160 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea1bed4a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [137 01-13 06:14:10.15 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [16e 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org1.example.com | [16f 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e2b9566]sending state message READY +peer1.org2.example.com | [154 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [aeadf85b]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [161 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]send state message COMPLETED +orderer.example.com | [138 01-13 06:14:10.15 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [16f 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org1.example.com | [170 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e2b9566]Received message READY from shim +peer1.org2.example.com | [155 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeadf85b]Move state message INIT +peer0.org1.example.com | [162 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]Received message COMPLETED from shim +peer0.org2.example.com | [170 01-13 06:14:05.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +orderer.example.com | [139 01-13 06:14:10.15 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [13a 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +orderer.example.com | [13b 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +peer0.org1.example.com | [163 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [156 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeadf85b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [13c 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +peer0.org1.example.com | [164 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a-705c-4f2f-97bb-39a7de0640bd]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [13d 01-13 06:14:10.15 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 | [171 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e2b9566]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [157 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [165 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ea1bed4a-705c-4f2f-97bb-39a7de0640bd, channelID: +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [13e 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | [172 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [158 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeadf85b]sending state message INIT +peer0.org1.example.com | [166 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [13f 01-13 06:14:10.15 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 | [173 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [167 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [159 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeadf85b]Received message INIT from shim +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +orderer.example.com | [140 01-13 06:14:10.15 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.org2.example.com | [15a 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeadf85b]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [174 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [168 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=0eda5631-1e4d-47cc-970f-c17a00ae41bc,syscc=true,proposal=0x0,canname=qscc:1.1.0 +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org2.example.com | [15b 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [141 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [175 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [169 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | [142 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [176 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e2b9566]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [15c 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [aeadf85b]Received INIT, initializing chaincode +peer0.org1.example.com | [16a 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | [143 01-13 06:14:10.15 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 +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [15d 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeadf85b]Init get response status: 200 +peer1.org1.example.com | [177 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [16b 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [171 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | [144 01-13 06:14:10.15 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 | [178 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e2b9566]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [16c 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org2.example.com | [15e 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeadf85b]Init succeeded. Sending COMPLETED +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [172 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer1.org1.example.com | [14e 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [145 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +peer0.org1.example.com | [16d 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +peer1.org2.example.com | [15f 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeadf85b]Move state message COMPLETED +peer0.org2.example.com | [173 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +explorer | errno: 1146, +peer0.org1.example.com | [16e 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +peer1.org2.example.com | [160 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeadf85b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [179 01-13 06:14:05.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e2b9566]Move state message INIT +peer0.org2.example.com | [174 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +orderer.example.com | [146 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [16f 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [161 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeadf85b]send state message COMPLETED +peer1.org1.example.com | [17a 01-13 06:14:05.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e2b9566]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [147 01-13 06:14:10.15 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 == +peer0.org1.example.com | [170 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [175 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer1.org2.example.com | [162 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeadf85b]Received message COMPLETED from shim +orderer.example.com | [148 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +peer1.org1.example.com | [17b 01-13 06:14:05.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | sqlState: '42S02', +peer0.org2.example.com | [176 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [163 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeadf85b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [17c 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e2b9566]sending state message INIT +orderer.example.com | [149 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [177 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +peer1.org2.example.com | [164 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeadf85b-c644-49c8-89a8-06595bac5903]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +explorer | index: 0, +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [17d 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e2b9566]Received message INIT from shim +peer1.org2.example.com | [165 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:aeadf85b-c644-49c8-89a8-06595bac5903, channelID: +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org2.example.com | [178 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [17e 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e2b9566]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [166 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [179 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [17f 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | [2018-01-13 06:14:34.458] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [167 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer0.org2.example.com | [17a 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [180 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4e2b9566]Received INIT, initializing chaincode +peer1.org2.example.com | [168 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=87cfe947-d7de-43d2-9079-59e1c77d17ea,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [181 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e2b9566]Init get response status: 200 +peer1.org2.example.com | [169 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [182 01-13 06:14:05.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e2b9566]Init succeeded. Sending COMPLETED +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [183 01-13 06:14:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e2b9566]Move state message COMPLETED +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [171 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +peer1.org2.example.com | [16a 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | [17b 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [184 01-13 06:14:05.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e2b9566]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org1.example.com | [172 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer0.org2.example.com | [17c 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [16b 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [185 01-13 06:14:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e2b9566]send state message COMPLETED +peer0.org1.example.com | [173 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer0.org2.example.com | [17d 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer1.org2.example.com | [16c 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [186 01-13 06:14:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e2b9566]Received message COMPLETED from shim +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [174 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer0.org2.example.com | [17e 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org2.example.com | [16d 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [187 01-13 06:14:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e2b9566]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org2.example.com | [17f 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer1.org2.example.com | [16e 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [175 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer1.org1.example.com | [188 01-13 06:14:05.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e2b9566-706d-46ed-a983-21c3da056746]HandleMessage- COMPLETED. Notify +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer1.org2.example.com | [16f 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [180 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [176 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [189 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4e2b9566-706d-46ed-a983-21c3da056746, channelID: +explorer | at emitOne (events.js:96:13) +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer1.org2.example.com | [170 01-13 06:14:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [181 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [18a 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [177 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +orderer.example.com | -----END CERTIFICATE----- +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [183 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [18b 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [178 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [14a 01-13 06:14:10.15 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 0xc42011c9a8 gate 1515824050153604990 evaluation starts +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [182 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed +peer0.org1.example.com | [179 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +peer1.org1.example.com | [18c 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=fc806a0d-e649-4eff-9fc7-1225926f3af4,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [14b 01-13 06:14:10.15 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 0xc42011c9a8 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [185 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [17a 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [18d 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +explorer | -------------------- +orderer.example.com | [14c 01-13 06:14:10.15 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 0xc42011c9a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [17b 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [18e 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | [184 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [14d 01-13 06:14:10.15 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 0xc42011c9a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer0.org1.example.com | [17c 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [18f 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [186 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [17d 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [14e 01-13 06:14:10.15 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 0xc42011c9a8 principal evaluation fails +peer1.org1.example.com | [190 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org2.example.com | [187 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4084c1d3]Move state message READY +peer0.org1.example.com | [17e 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [14f 01-13 06:14:10.15 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 0xc42011c9a8 gate 1515824050153604990 evaluation fails +peer0.org1.example.com | [17f 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer0.org2.example.com | [188 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4084c1d3]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | [150 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [191 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [180 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [171 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +orderer.example.com | [151 01-13 06:14:10.15 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 | [189 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4084c1d3]Entered state ready +peer0.org1.example.com | [181 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [172 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer1.org1.example.com | [192 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) +orderer.example.com | [152 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer0.org2.example.com | [18a 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4084c1d3-6f65-4c6f-9cde-747aecd9ddd8, channelID: +peer0.org1.example.com | [182 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [153 01-13 06:14:10.15 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 0xc42011c9b8 gate 1515824050155057663 evaluation starts +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org1.example.com | [193 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [183 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [154 01-13 06:14:10.15 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 0xc42011c9b8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [173 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer1.org1.example.com | [194 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [18b 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4084c1d3]sending state message READY +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [155 01-13 06:14:10.15 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 0xc42011c9b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [174 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer0.org1.example.com | [184 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 +orderer.example.com | [156 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org2.example.com | [175 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [157 01-13 06:14:10.15 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 0xc42011c9b8 principal matched by identity 0 +peer0.org2.example.com | [18c 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4084c1d3]Received message READY from shim +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [185 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [158 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 2d 96 0e 7b dc 0b 3b 5b b9 6d 48 de 3f d1 9e |.-..{..;[.mH.?..| +peer1.org2.example.com | [176 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [18d 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4084c1d3]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +orderer.example.com | 00000010 8f 0c c0 7d 36 ae 5d 62 3c 3a 55 83 70 c7 27 ea |...}6.]b<:U.p.'.| +peer0.org1.example.com | [186 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [177 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +orderer.example.com | [159 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 df 74 0c 9e ee 81 1d 37 76 7d a9 |0E.!..t.....7v}.| +peer0.org2.example.com | [18e 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [187 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]Move state message READY +orderer.example.com | 00000010 a7 e1 d4 ad 01 97 bd 1b ad b9 c9 b5 eb 50 c3 6e |.............P.n| +peer1.org2.example.com | [178 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | 00000020 f8 6e 73 7c f4 02 20 21 89 30 4c c0 57 4f 0c 1a |.ns|.. !.0L.WO..| +peer0.org2.example.com | [18f 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 00000030 fe e1 f8 9a 89 36 f3 60 e3 3a ff f5 d6 ce 14 4c |.....6.`.:.....L| +peer0.org1.example.com | [188 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631]Fabric side Handling ChaincodeMessage of type: READY in state established +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [179 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +orderer.example.com | 00000040 3b 30 51 13 12 21 d7 |;0Q..!.| +peer0.org1.example.com | [189 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0eda5631]Entered state ready +peer0.org2.example.com | [190 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [15a 01-13 06:14:10.15 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 0xc42011c9b8 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [17a 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [18a 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0eda5631-1e4d-47cc-970f-c17a00ae41bc, channelID: +explorer | at next (native) +orderer.example.com | [15b 01-13 06:14:10.15 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 0xc42011c9b8 gate 1515824050155057663 evaluation succeeds +peer1.org2.example.com | [17b 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [18b 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]sending state message READY +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [191 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [15c 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [17c 01-13 06:14:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [18c 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Received message READY from shim +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [196 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +peer0.org2.example.com | [192 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4084c1d3]Inside sendExecuteMessage. Message INIT +orderer.example.com | [15d 01-13 06:14:10.15 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.org1.example.com | [18d 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eda5631]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [17d 01-13 06:14:05.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [193 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [197 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +peer0.org1.example.com | [18e 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | [15e 01-13 06:14:10.15 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 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [18f 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [17e 01-13 06:14:05.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +orderer.example.com | [15f 01-13 06:14:10.15 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 +peer1.org1.example.com | [198 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +peer0.org2.example.com | [194 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4084c1d3]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [190 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [17f 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +peer1.org1.example.com | [195 01-13 06:14:05.63 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172E9060A20AAE325831E8C76A352...DA6872F6D04FD423A415A65C04C73219 +peer0.org1.example.com | [191 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [160 01-13 06:14:10.15 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 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [195 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4084c1d3]Move state message INIT +peer1.org1.example.com | [199 01-13 06:14:05.64 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +peer0.org1.example.com | [192 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0eda5631]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [181 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [161 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [193 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [196 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4084c1d3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [182 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [19a 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 83778ACD2C6B0E9FB7D3EFADF1B7003115BD59EB6CD4325F3062140EF9AA5035 +peer0.org1.example.com | [194 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0eda5631]sendExecuteMsg trigger event INIT +orderer.example.com | [162 01-13 06:14:10.15 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 | [197 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | errno: 1146, +peer1.org1.example.com | [19b 01-13 06:14:05.65 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.org1.example.com | [195 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]Move state message INIT +peer1.org2.example.com | [183 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [163 01-13 06:14:10.15 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 | [198 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4084c1d3]sending state message INIT +peer1.org1.example.com | [19c 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +peer0.org1.example.com | [196 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org2.example.com | [180 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [19d 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | [164 01-13 06:14:10.15 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 | [197 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [199 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4084c1d3]Received message INIT from shim +peer0.org1.example.com | [198 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]sending state message INIT +peer1.org2.example.com | [184 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed +peer1.org1.example.com | [19e 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +orderer.example.com | [165 01-13 06:14:10.15 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 | [19a 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4084c1d3]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | sqlState: '42S02', +peer0.org1.example.com | [199 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Received message INIT from shim +peer1.org1.example.com | [19f 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [185 01-13 06:14:05.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [19b 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [166 01-13 06:14:10.15 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 | [19a 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eda5631]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [1a0 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +peer1.org2.example.com | [186 01-13 06:14:05.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [167 01-13 06:14:10.15 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 | [19c 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4084c1d3]Received INIT, initializing chaincode +explorer | index: 0, +peer0.org1.example.com | [19b 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1a1 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [187 01-13 06:14:05.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87cfe947]Move state message READY +orderer.example.com | [168 01-13 06:14:10.15 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 | [19c 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0eda5631]Received INIT, initializing chaincode +peer1.org2.example.com | [188 01-13 06:14:05.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87cfe947]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [1a2 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [19d 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | [169 01-13 06:14:10.15 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" +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org1.example.com | [19d 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [1a3 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [19e 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4084c1d3]Init get response status: 200 +peer1.org2.example.com | [189 01-13 06:14:05.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [87cfe947]Entered state ready +peer0.org1.example.com | [19e 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Init get response status: 200 +orderer.example.com | [16a 01-13 06:14:10.15 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" +explorer | [2018-01-13 06:14:35.412] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [19f 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4084c1d3]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1a4 01-13 06:14:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [19f 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [18a 01-13 06:14:05.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:87cfe947-d7de-43d2-9079-59e1c77d17ea, channelID: +orderer.example.com | [16b 01-13 06:14:10.15 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 | [1a0 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4084c1d3]Move state message COMPLETED +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [1a5 01-13 06:14:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +peer0.org1.example.com | [1a0 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Move state message COMPLETED +peer1.org2.example.com | [18b 01-13 06:14:05.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87cfe947]sending state message READY +orderer.example.com | [16c 01-13 06:14:10.15 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 | [1a1 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4084c1d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1a1 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eda5631]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [18c 01-13 06:14:05.15 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | [16d 01-13 06:14:10.15 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" +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [1a2 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]send state message COMPLETED +peer1.org1.example.com | [1a7 01-13 06:14:05.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\330\216\365\032\2269\273L\237YOjfQ\207/\024I\211\007\316\031\022Ud\305\274 \035p\\y" identity:"\n\007Org1MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw\nsRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0\nRxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF\n+oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk\noOWGb8BDg2Tnm3LS\n-----END CERTIFICATE-----\n" tls_cert_hash:"d\372yf\027q\247\374\217\230\362\nKG\032\263?\206\370\221\236\303d<\324\214\031\354\261$\221\242" from 172.18.0.3:7051 +peer1.org2.example.com | [18d 01-13 06:14:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87cfe947]Received message READY from shim +peer0.org2.example.com | [1a2 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4084c1d3]send state message COMPLETED +peer0.org1.example.com | [1a3 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]Received message COMPLETED from shim +peer1.org1.example.com | [1a6 01-13 06:14:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [18f 01-13 06:14:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87cfe947]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [1a4 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [1a3 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4084c1d3]Received message COMPLETED from shim +orderer.example.com | [16e 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [1a8 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [18e 01-13 06:14:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [1a5 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631-1e4d-47cc-970f-c17a00ae41bc]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [1a4 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4084c1d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [1a9 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [16f 01-13 06:14:10.16 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 | [1a6 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0eda5631-1e4d-47cc-970f-c17a00ae41bc, channelID: +peer1.org2.example.com | [190 01-13 06:14:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1aa 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [170 01-13 06:14:10.16 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" +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [1a7 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1ab 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [171 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [191 01-13 06:14:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org2.example.com | [1a5 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4084c1d3-6f65-4c6f-9cde-747aecd9ddd8]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1ac 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed +peer0.org1.example.com | [1a8 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [1a6 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4084c1d3-6f65-4c6f-9cde-747aecd9ddd8, channelID: +peer1.org2.example.com | [192 01-13 06:14:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [87cfe947]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [1ad 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [172 01-13 06:14:10.16 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 | [1a9 01-13 06:14:04.40 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | [1a7 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [1ae 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [173 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [193 01-13 06:14:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [1a8 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [1aa 01-13 06:14:04.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer1.org1.example.com | [1af 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc806a0d]Move state message READY +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [174 01-13 06:14:10.16 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.org2.example.com | [1a9 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer1.org2.example.com | [194 01-13 06:14:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [87cfe947]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [1b1 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1ab 01-13 06:14:04.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +orderer.example.com | [175 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [195 01-13 06:14:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87cfe947]Move state message INIT +peer0.org2.example.com | [1aa 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer1.org1.example.com | [1b2 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1ac 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +peer1.org1.example.com | [1b3 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [176 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1ad 01-13 06:14:04.41 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 | [1b4 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [1ab 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] +peer1.org2.example.com | [196 01-13 06:14:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87cfe947]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [1b0 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc806a0d]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [1ae 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +orderer.example.com | [177 01-13 06:14:10.16 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.org2.example.com | [197 01-13 06:14:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [1ac 01-13 06:14:05.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] +peer1.org1.example.com | [1b5 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fc806a0d]Entered state ready +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [178 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [198 01-13 06:14:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87cfe947]sending state message INIT +peer0.org2.example.com | [1ad 01-13 06:14:05.86 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 | [1af 01-13 06:14:04.41 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 | [1b6 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fc806a0d-e649-4eff-9fc7-1225926f3af4, channelID: +orderer.example.com | [179 01-13 06:14:10.16 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 | [1ae 01-13 06:14:05.86 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 | [199 01-13 06:14:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87cfe947]Received message INIT from shim +peer1.org1.example.com | [1b7 01-13 06:14:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc806a0d]sending state message READY +peer0.org1.example.com | [1b0 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +orderer.example.com | [17a 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608B2C7E6D20522...043035C47C53709A9837451B10CEF5E6 +peer0.org2.example.com | [1af 01-13 06:14:05.86 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 | [1b8 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [19a 01-13 06:14:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87cfe947]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1b1 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +explorer | -------------------- +peer0.org2.example.com | [1b0 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1b9 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [17b 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: F77782EB48E46593DEBDE9C829F04B9C68AD465CBA9F44E64D2016FCF6B404BB +peer1.org2.example.com | [19b 01-13 06:14:05.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1ba 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc806a0d]Received message READY from shim +orderer.example.com | [17c 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [1b1 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1b2 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [1bb 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc806a0d]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [1b2 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1b3 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org2.example.com | [19c 01-13 06:14:05.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [87cfe947]Received INIT, initializing chaincode +orderer.example.com | [17d 01-13 06:14:10.16 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 | [1b3 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1bc 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [1b4 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org2.example.com | [19d 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [1b4 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +orderer.example.com | [17e 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [1bd 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [19e 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87cfe947]Init get response status: 200 +peer0.org1.example.com | [1b5 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1bf 01-13 06:14:05.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func2.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [1b5 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +orderer.example.com | [17f 01-13 06:14:10.16 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [19f 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87cfe947]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1be 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [1b6 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1b6 01-13 06:14:04.42 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 | [1b7 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +orderer.example.com | [180 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608B2C7E6D20522...A04BEB9C53E6D431A59F2E7096F2853C +peer1.org2.example.com | [1a0 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87cfe947]Move state message COMPLETED +peer0.org2.example.com | [1b8 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [1c0 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [181 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 8B077C8FBAF07B8D125A0014320C29911E0CD405D123799DE76A8270D798386F +peer0.org1.example.com | [1b7 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer0.org2.example.com | [1b9 01-13 06:14:05.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org2.example.com | [1a1 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87cfe947]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1c1 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fc806a0d]Inside sendExecuteMessage. Message INIT +orderer.example.com | [182 01-13 06:14:10.16 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 | [1b8 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1ba 01-13 06:14:05.86 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 | [1c2 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1b9 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +orderer.example.com | [183 01-13 06:14:10.16 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 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [1a2 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87cfe947]send state message COMPLETED +peer0.org1.example.com | [1ba 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +peer0.org2.example.com | [1bb 01-13 06:14:05.86 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 | [1c3 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fc806a0d]sendExecuteMsg trigger event INIT +orderer.example.com | [184 01-13 06:14:10.16 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 | [1a3 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [87cfe947]Received message COMPLETED from shim +peer0.org1.example.com | [1bb 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1bc 01-13 06:14:05.86 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 | [1c4 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc806a0d]Move state message INIT +orderer.example.com | [185 01-13 06:14:10.16 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 | [1bc 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1bd 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:58908 +peer1.org2.example.com | [1a4 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87cfe947]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1c5 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc806a0d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +orderer.example.com | [186 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org1.example.com | [1bd 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40024 +peer1.org2.example.com | [1a5 01-13 06:14:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [87cfe947-d7de-43d2-9079-59e1c77d17ea]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1c6 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [1be 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42197cbd0 +orderer.example.com | [187 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [1be 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c7bbc0 +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [1bf 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [1a6 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:87cfe947-d7de-43d2-9079-59e1c77d17ea, channelID: +peer1.org1.example.com | [1c7 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc806a0d]sending state message INIT +peer0.org1.example.com | [1bf 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [188 01-13 06:14:10.16 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----- +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [1c8 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc806a0d]Received message INIT from shim +peer1.org2.example.com | [1a7 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [1c0 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org1.example.com | [1c9 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc806a0d]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1c0 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [1a8 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1c1 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer1.org1.example.com | [1ca 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [1c1 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [1a9 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | [1c2 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV +peer0.org1.example.com | [1c2 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [1aa 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +peer1.org2.example.com | [1ab 01-13 06:14:05.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +peer0.org2.example.com | [1c3 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [1c3 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [1cb 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fc806a0d]Received INIT, initializing chaincode +peer0.org1.example.com | [1c4 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c8b450, header 0xc421e34000 +peer0.org2.example.com | [1c4 01-13 06:14:11.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420358f00, header 0xc42197cff0 +peer1.org2.example.com | [1ac 01-13 06:14:05.25 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +peer0.org1.example.com | [1c5 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [1cc 01-13 06:14:05.74 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +explorer | errno: 1146, +peer0.org1.example.com | [1c6 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e +peer1.org2.example.com | [1ad 01-13 06:14:05.26 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 | [1c5 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [1cd 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc806a0d]Init get response status: 200 +peer0.org1.example.com | [1c7 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e channel id: +orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [1ae 01-13 06:14:05.26 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 | [1ce 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc806a0d]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [1c6 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 27fb1aebe8f60fca4220bac58fc7216fc9ab95fdf216433d5f015e1376d68f46 +peer0.org1.example.com | [1c8 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e channel id: version: 1.1.0 +orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA +peer1.org1.example.com | [1cf 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc806a0d]Move state message COMPLETED +peer0.org2.example.com | [1c7 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 27fb1aebe8f60fca4220bac58fc7216fc9ab95fdf216433d5f015e1376d68f46 channel id: +peer1.org2.example.com | [1af 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY +peer1.org1.example.com | [1d0 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc806a0d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1c9 01-13 06:14:10.77 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.1.0,txid=17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e,syscc=true,proposal=0xc421c8b450,canname=cscc:1.1.0 +peer0.org2.example.com | [1c8 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 27fb1aebe8f60fca4220bac58fc7216fc9ab95fdf216433d5f015e1376d68f46 channel id: version: 1.1.0 +peer1.org2.example.com | [1b0 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +explorer | sqlState: '42S02', +orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 +peer1.org1.example.com | [1d1 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc806a0d]send state message COMPLETED +peer0.org2.example.com | [1c9 01-13 06:14:11.24 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.1.0,txid=27fb1aebe8f60fca4220bac58fc7216fc9ab95fdf216433d5f015e1376d68f46,syscc=true,proposal=0xc420358f00,canname=cscc:1.1.0 +peer0.org1.example.com | [1ca 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org2.example.com | [1b1 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X +peer0.org2.example.com | [1ca 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org1.example.com | [1cb 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | index: 0, +peer1.org2.example.com | [1b2 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1cb 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [1d2 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc806a0d]Received message COMPLETED from shim +peer0.org1.example.com | [1cc 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer1.org2.example.com | [1b3 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +orderer.example.com | [189 01-13 06:14:10.16 UTC] [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 0xc42011cba0 gate 1515824050165128225 evaluation starts +peer0.org1.example.com | [1cd 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17d79eb8]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [1d3 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc806a0d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org1.example.com | [1ce 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1d4 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fc806a0d-e649-4eff-9fc7-1225926f3af4]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [1b4 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +orderer.example.com | [18a 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1cc 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer1.org1.example.com | [1d5 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fc806a0d-e649-4eff-9fc7-1225926f3af4, channelID: +peer0.org1.example.com | [1cf 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | [2018-01-13 06:14:35.461] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [1b5 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1cd 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [27fb1aeb]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [18b 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [1d6 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [1b6 01-13 06:14:05.26 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 | [1d0 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17d79eb8]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [1ce 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [1b7 01-13 06:14:05.26 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 | [1d7 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +orderer.example.com | [18c 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org2.example.com | [1cf 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [1b8 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [1d0 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [27fb1aeb]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [1b9 01-13 06:14:05.26 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 | [1d8 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org1.example.com | [1d1 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17d79eb8]Move state message TRANSACTION +orderer.example.com | [18d 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [1d1 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27fb1aeb]Move state message TRANSACTION +peer1.org2.example.com | [1ba 01-13 06:14:05.26 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 | [1d2 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17d79eb8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1d3 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1d4 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17d79eb8]sending state message TRANSACTION +peer0.org1.example.com | [1d5 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]Received message TRANSACTION from shim +orderer.example.com | [18e 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 principal matched by identity 0 +peer0.org2.example.com | [1d2 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27fb1aeb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [1bb 01-13 06:14:05.26 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 | [1d9 01-13 06:14:05.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [1d6 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17d79eb8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [1d3 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [1bc 01-13 06:14:05.26 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 | [1da 01-13 06:14:05.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func2.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [18f 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8b 07 7c 8f ba f0 7b 8d 12 5a 00 14 32 0c 29 91 |..|...{..Z..2.).| +peer0.org1.example.com | [1d7 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17d79eb8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [1d4 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27fb1aeb]sending state message TRANSACTION +peer1.org2.example.com | [1bd 01-13 06:14:11.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:57046 +peer1.org1.example.com | [1db 01-13 06:14:05.76 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func2.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [1d8 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org2.example.com | [1d5 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27fb1aeb]Received message TRANSACTION from shim +peer1.org2.example.com | [1be 01-13 06:14:11.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ae2480 +orderer.example.com | 00000010 1e 0c d4 05 d1 23 79 9d e7 6a 82 70 d7 98 38 6f |.....#y..j.p..8o| +peer1.org1.example.com | [1dd 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func2.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 db a0 0f 98 04 52 a5 8d 19 5f 70 c8 44 69 8c e8 |.....R..._p.Di..| +peer0.org1.example.com | [1d9 01-13 06:14:10.78 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [1d6 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27fb1aeb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [1bf 01-13 06:14:11.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1da 01-13 06:14:10.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | [190 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c0 9f 0b bd fd 90 a8 88 2f 6f 50 |0E.!........./oP| +peer0.org2.example.com | [1d7 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [27fb1aeb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [1c0 01-13 06:14:11.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1db 01-13 06:14:10.78 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 | 00000010 2b 6d e3 42 b4 96 af 69 d8 1d 6c c8 54 91 7d 4c |+m.B...i..l.T.}L| +peer0.org2.example.com | [1d8 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org2.example.com | [1c1 01-13 06:14:11.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer0.org1.example.com | [1dc 01-13 06:14:10.78 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 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [1d9 01-13 06:14:11.24 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [1de 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func2.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 92 1b 54 57 fe 35 b0 44 40 1a e1 |0E.!...TW.5.D@..| +orderer.example.com | 00000010 cf 46 33 fd 56 7c b3 8d 3c 02 db ad 53 9a 8c 22 |.F3.V|..<...S.."| +peer0.org1.example.com | [1dd 01-13 06:14:10.78 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 | [1c2 01-13 06:14:11.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [1da 01-13 06:14:11.24 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 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | 00000010 fa 43 0f 3b 1a 84 6d 26 d4 7e 69 2d ec 1b c5 3f |.C.;..m&.~i-...?| +peer0.org1.example.com | [1de 01-13 06:14:10.78 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 | [1c3 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 00000020 82 6e 6d db 39 02 20 5d 94 86 f7 a2 73 21 a9 c8 |.nm.9. ]....s!..| +peer0.org2.example.com | [1db 01-13 06:14:11.25 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 | [1df 01-13 06:14:10.78 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 +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | 00000020 93 f4 88 0f 10 02 20 3b 41 fc 4d 8f f3 00 ef 97 |...... ;A.M.....| +peer1.org2.example.com | [1c4 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219a58b0, header 0xc421ae28a0 +peer0.org2.example.com | [1dc 01-13 06:14:11.25 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 | [1e0 01-13 06:14:10.78 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 | 00000030 f3 2f 9b 77 26 da 1a 9d 82 64 fb d3 26 ef ca d3 |./.w&....d..&...| +peer1.org2.example.com | [1c5 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | 00000030 86 ac e3 01 d1 c8 1e e5 b4 02 1e fa 81 5a d6 7f |.............Z..| +peer0.org2.example.com | [1dd 01-13 06:14:11.25 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 +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [1e1 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | 00000040 16 45 74 4c 92 c1 75 |.EtL..u| +peer1.org2.example.com | [1c6 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 229e3194a3e71ae97a64a52dc6d90dfe5d21fa641bd7737c2c4e4008db4536c0 +peer0.org2.example.com | [1de 01-13 06:14:11.25 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 | 00000040 a6 a3 ea 20 61 43 42 |... aCB| +peer0.org1.example.com | [1e2 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +orderer.example.com | [191 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [1c7 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 229e3194a3e71ae97a64a52dc6d90dfe5d21fa641bd7737c2c4e4008db4536c0 channel id: +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [1df 01-13 06:14:11.25 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 | [1e3 01-13 06:14:10.79 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 | [1c8 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 229e3194a3e71ae97a64a52dc6d90dfe5d21fa641bd7737c2c4e4008db4536c0 channel id: version: 1.1.0 +peer0.org2.example.com | [1e0 01-13 06:14:11.25 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 | [192 01-13 06:14:10.16 UTC] [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 0xc42011cba0 gate 1515824050165128225 evaluation succeeds +peer0.org1.example.com | [1e4 01-13 06:14:10.79 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)(0xc4218624c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org2.example.com | [1c9 01-13 06:14:11.55 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.1.0,txid=229e3194a3e71ae97a64a52dc6d90dfe5d21fa641bd7737c2c4e4008db4536c0,syscc=true,proposal=0xc4219a58b0,canname=cscc:1.1.0 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [1dc 01-13 06:14:05.77 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer0.org2.example.com | [1e1 01-13 06:14:11.25 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 | [1e5 01-13 06:14:10.79 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 | [1ca 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +orderer.example.com | [193 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [1df 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +peer0.org2.example.com | [1e2 01-13 06:14:11.25 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 | [1e6 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +orderer.example.com | [194 01-13 06:14:10.16 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 | [1cb 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | -------------------- +peer1.org1.example.com | [1e0 01-13 06:14:05.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org1.example.com | [1e7 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer0.org2.example.com | [1e3 01-13 06:14:11.25 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 | [1cc 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +orderer.example.com | [195 01-13 06:14:10.16 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.org1.example.com | [1e1 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e8 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [1e4 01-13 06:14:11.25 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)(0xc421a0ee20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [196 01-13 06:14:10.16 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 | [1cd 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [229e3194]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [1e2 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 10657766757792123240, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2158 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e9 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +orderer.example.com | [197 01-13 06:14:10.16 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 | [1e5 01-13 06:14:11.25 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 | [1ce 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1e3 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] sent us GossipMessage: Channel: , nonce: 10657766757792123240, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2158 bytes, Signature: 0 bytes +orderer.example.com | [198 01-13 06:14:10.16 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [1e6 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +peer0.org1.example.com | [1ea 01-13 06:14:10.79 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] +orderer.example.com | [199 01-13 06:14:10.16 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 | [1e5 01-13 06:14:05.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 10657766757792123240, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2158 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cf 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [19a 01-13 06:14:10.16 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [1eb 01-13 06:14:10.79 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 | [1e7 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +orderer.example.com | [19b 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [1d0 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [229e3194]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [1e6 01-13 06:14:05.87 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-----\nMIICGjCCAcCgAwIBAgIRAMm2nRLiV9ssQthhvYP8KQEwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFrEWeTrn3TfWYYM+62OyFTECgSjLyaT\nGqQq/wBR1t28C1sN2jzZA0Z8CC6UBxPnAU5/aHoJRM86OJM2kjIK5u+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDVXd+d\nhda/sjnux8Hg361l9wkEXBVmH8iO0usHjqvAOgIgBjqzYUxBWSyaZ1+LwXFVWYtM\nZRKeLT+EkdbmTk6JlSM=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [1e8 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +orderer.example.com | [19c 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [1ec 01-13 06:14:10.79 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 | [1d1 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [229e3194]Move state message TRANSACTION +orderer.example.com | [19d 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [1e9 01-13 06:14:11.25 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 | [1e7 01-13 06:14:05.87 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] +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +orderer.example.com | [19e 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [1ed 01-13 06:14:10.79 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 | [1ea 01-13 06:14:11.25 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 | [1d2 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [229e3194]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [19f 01-13 06:14:10.16 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.org1.example.com | [1e8 01-13 06:14:05.87 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' +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org1.example.com | [1ee 01-13 06:14:10.79 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 | [1d3 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [1a0 01-13 06:14:10.16 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 +peer0.org2.example.com | [1eb 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +orderer.example.com | [1a1 01-13 06:14:10.16 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 +peer1.org1.example.com | [1e4 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d4 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [229e3194]sending state message TRANSACTION +peer0.org1.example.com | [1ef 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +orderer.example.com | [1a2 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [1d5 01-13 06:14:11.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [229e3194]Received message TRANSACTION from shim +peer0.org2.example.com | [1ec 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [1a3 01-13 06:14:10.17 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 | [1f0 01-13 06:14:10.79 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 | [1ea 01-13 06:14:05.87 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' +explorer | at next (native) +orderer.example.com | [1a4 01-13 06:14:10.17 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 | [1ed 01-13 06:14:11.25 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 | [1f1 01-13 06:14:10.79 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 | [1d6 01-13 06:14:11.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [229e3194]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [1e9 01-13 06:14:05.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [1a5 01-13 06:14:10.17 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.org1.example.com | [1f2 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [1ee 01-13 06:14:11.25 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] +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [1eb 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +orderer.example.com | [1a6 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1d7 01-13 06:14:11.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [229e3194]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1f3 01-13 06:14:10.79 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 | [1ec 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1ef 01-13 06:14:11.25 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{} +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +orderer.example.com | [1a7 01-13 06:14:10.17 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 +peer1.org1.example.com | [1ed 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org2.example.com | [1d8 01-13 06:14:11.56 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [1f4 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [1a8 01-13 06:14:10.17 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 | [1f0 01-13 06:14:11.25 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 | [1f5 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [1d9 01-13 06:14:11.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +explorer | errno: 1146, +peer1.org1.example.com | [1ee 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1f6 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [1a9 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [1f1 01-13 06:14:11.25 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 | [1da 01-13 06:14:11.69 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 | [1f7 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [1ef 01-13 06:14:05.88 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 | [1f2 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [1f8 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [1aa 01-13 06:14:10.17 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.org2.example.com | [1db 01-13 06:14:11.69 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 | [1f9 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [1f0 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +orderer.example.com | [1ab 01-13 06:14:10.17 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 +explorer | sqlState: '42S02', +peer0.org2.example.com | [1f3 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [1dc 01-13 06:14:11.69 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 | [1fa 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [1ac 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1fb 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [1f1 01-13 06:14:05.88 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 | [1f4 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | index: 0, +peer1.org2.example.com | [1dd 01-13 06:14:11.69 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 | [1fc 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [1f2 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1f5 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | [1de 01-13 06:14:11.69 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 | [1fd 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [1f6 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [1f3 01-13 06:14:05.88 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [1fe 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [1f7 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [1f4 01-13 06:14:05.88 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 | [1df 01-13 06:14:11.69 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 +explorer | [2018-01-13 06:14:36.474] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [1ff 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [1f8 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [1e0 01-13 06:14:11.69 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 | [1f5 01-13 06:14:05.88 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 | [200 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [1f9 01-13 06:14:11.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [1e1 01-13 06:14:11.69 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 | [1f6 01-13 06:14:05.88 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 | [201 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [1fa 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer1.org2.example.com | [1e2 01-13 06:14:11.69 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 | [1f7 01-13 06:14:05.88 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 | [202 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [1fb 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [203 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [1fc 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [1fd 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [1f8 01-13 06:14:05.88 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 | [1e3 01-13 06:14:11.69 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 | [1fe 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [204 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [1ff 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [1e4 01-13 06:14:11.69 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)(0xc421bb63a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org1.example.com | [1f9 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:38718 +peer0.org2.example.com | [200 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [205 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +peer0.org2.example.com | [201 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1e5 01-13 06:14:12.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]] +peer1.org1.example.com | [1fa 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4203b6ea0 +peer0.org1.example.com | [206 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [202 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1fb 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [1e6 01-13 06:14:12.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +peer0.org2.example.com | [203 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [207 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [204 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [1fc 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [208 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1e7 01-13 06:14:12.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer1.org1.example.com | [1fd 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [205 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [1e8 01-13 06:14:12.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer0.org1.example.com | [209 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1fe 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [206 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [1e9 01-13 06:14:12.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 | [1ff 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [20a 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer1.org2.example.com | [1ea 01-13 06:14:12.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] +peer0.org2.example.com | [207 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [20b 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [200 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42016ef50, header 0xc4203b72c0 +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer1.org2.example.com | [1eb 01-13 06:14:12.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] +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [208 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [20c 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [201 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org2.example.com | [1ec 01-13 06:14:12.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | -----END CERTIFICATE----- +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [20d 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [209 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [202 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b3bfca80b90c472d5dd547466b3dd98ec0a1422e64e4e0e215ded0ac248c3e1c +orderer.example.com | [1ad 01-13 06:14:10.17 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 | [1ed 01-13 06:14:12.06 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 | [20e 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1ee 01-13 06:14:12.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 | [203 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b3bfca80b90c472d5dd547466b3dd98ec0a1422e64e4e0e215ded0ac248c3e1c channel id: +explorer | -------------------- +peer0.org1.example.com | [20f 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [20a 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [1ef 01-13 06:14:12.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{} +peer0.org1.example.com | [210 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [204 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b3bfca80b90c472d5dd547466b3dd98ec0a1422e64e4e0e215ded0ac248c3e1c channel id: version: 1.1.0 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [20b 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [1f0 01-13 06:14:12.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 +peer0.org1.example.com | [211 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [20c 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [205 01-13 06:14:11.00 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.1.0,txid=b3bfca80b90c472d5dd547466b3dd98ec0a1422e64e4e0e215ded0ac248c3e1c,syscc=true,proposal=0xc42016ef50,canname=cscc:1.1.0 +peer0.org1.example.com | [212 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [1f1 01-13 06:14:12.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 = [] +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [20d 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [206 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org1.example.com | [213 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [1f2 01-13 06:14:12.07 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [20e 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [207 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [214 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org2.example.com | [1f3 01-13 06:14:12.07 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 | [208 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [215 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [20f 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1f4 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer0.org1.example.com | [216 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1f5 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [209 01-13 06:14:11.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b3bfca80]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [210 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [1f6 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [217 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [20a 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org2.example.com | [1f7 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [211 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer0.org1.example.com | [218 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +explorer | at ontimeout (timers.js:386:11) +peer1.org2.example.com | [1f8 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [212 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [20b 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [1f9 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org1.example.com | [219 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1fa 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [213 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [20c 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b3bfca80]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [1fb 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org1.example.com | [21a 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [214 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [1fc 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org2.example.com | [1fd 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [20d 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3bfca80]Move state message TRANSACTION +peer0.org1.example.com | [21b 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [215 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [1fe 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [20e 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b3bfca80]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [1ae 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [216 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [21c 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [1ff 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +explorer | errno: 1146, +peer1.org1.example.com | [20f 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [1af 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [217 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [200 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org1.example.com | [210 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3bfca80]sending state message TRANSACTION +orderer.example.com | [1b0 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [21d 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [201 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | sqlState: '42S02', +peer0.org2.example.com | [218 01-13 06:14:11.26 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [211 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3bfca80]Received message TRANSACTION from shim +peer1.org2.example.com | [202 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [1b1 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [21e 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [219 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [203 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +explorer | index: 0, +peer1.org1.example.com | [212 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3bfca80]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [1b2 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [21f 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [21a 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [204 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [213 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b3bfca80]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [220 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [1b3 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [21b 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +explorer | [2018-01-13 06:14:36.478] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org1.example.com | [214 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [221 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [1b4 01-13 06:14:10.17 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 | [205 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [21c 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [1b5 01-13 06:14:10.17 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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [215 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org2.example.com | [206 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [222 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [216 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | [1b6 01-13 06:14:10.17 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 +peer0.org2.example.com | [21d 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [223 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [207 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [1b7 01-13 06:14:10.17 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 | [217 01-13 06:14:11.01 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 | [21e 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [1b8 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [224 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [218 01-13 06:14:11.01 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 | [208 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [21f 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [225 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [1b9 01-13 06:14:10.17 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 | [209 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [219 01-13 06:14:11.01 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 | [220 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [226 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [1ba 01-13 06:14:10.17 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----- +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [20a 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [21a 01-13 06:14:11.01 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 | [227 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [221 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [21b 01-13 06:14:11.01 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 | [20b 01-13 06:14:12.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [228 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [222 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at emitOne (events.js:96:13) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [229 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [21c 01-13 06:14:11.01 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 | [20c 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [223 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [22a 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [21d 01-13 06:14:11.01 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [20d 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [224 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [21e 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [22b 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [20e 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [225 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [21f 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [20f 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [22c 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [220 01-13 06:14:11.01 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)(0xc421943cc0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [226 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [210 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +explorer | -------------------- +peer1.org1.example.com | [221 01-13 06:14:11.01 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 | [22d 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [227 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [222 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [22e 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer1.org2.example.com | [211 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [223 01-13 06:14:11.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer0.org2.example.com | [228 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [22f 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [224 01-13 06:14:11.01 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 | [212 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [229 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [225 01-13 06:14:11.02 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 | [230 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [22a 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer1.org2.example.com | [213 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [226 01-13 06:14:11.02 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 | [22b 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [231 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer1.org1.example.com | [227 01-13 06:14:11.02 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 | [22c 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [232 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [228 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [214 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer1.org1.example.com | [229 01-13 06:14:11.02 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 | [233 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [22d 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [215 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [22a 01-13 06:14:11.02 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] +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [22e 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [234 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | vA2BLfriqQ== +peer1.org1.example.com | [22b 01-13 06:14:11.02 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 | [216 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [22f 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +explorer | at next (native) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [22c 01-13 06:14:11.02 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 | [235 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [22d 01-13 06:14:11.02 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 | [230 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [1bb 01-13 06:14:10.17 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 | [217 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [231 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [236 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [22e 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org2.example.com | [218 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [232 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [237 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [22f 01-13 06:14:11.02 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" > +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [219 01-13 06:14:12.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [233 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [230 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [21a 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [238 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer1.org1.example.com | [231 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [234 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [239 01-13 06:14:10.81 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 +explorer | errno: 1146, +peer1.org2.example.com | [21b 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [232 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [23a 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [233 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [235 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [23b 01-13 06:14:10.81 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 | [234 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [21c 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [236 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [23c 01-13 06:14:10.81 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 +explorer | sqlState: '42S02', +peer1.org1.example.com | [235 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer0.org2.example.com | [237 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [23d 01-13 06:14:10.81 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 | [21d 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [236 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | index: 0, +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org1.example.com | [23e 01-13 06:14:10.81 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 | [237 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [21e 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [238 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [23f 01-13 06:14:10.81 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 | [238 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org2.example.com | [239 01-13 06:14:11.27 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 | [240 01-13 06:14:10.81 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 | [239 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer0.org2.example.com | [23a 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [21f 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | [2018-01-13 06:14:37.479] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [241 01-13 06:14:10.82 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 | [23a 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [23b 01-13 06:14:11.27 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 | [220 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org1.example.com | [242 01-13 06:14:10.82 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{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +peer1.org1.example.com | [23b 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [23c 01-13 06:14:11.27 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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer1.org2.example.com | [221 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=12078 +peer0.org2.example.com | [23d 01-13 06:14:11.27 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 | [23c 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | ] +peer0.org2.example.com | [23e 01-13 06:14:11.27 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 | [23d 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [222 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [243 01-13 06:14:10.82 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=12078] for tx ID: [] to index +peer0.org2.example.com | [23f 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [1bc 01-13 06:14:10.17 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 | [223 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [23e 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [244 01-13 06:14:10.82 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=12078] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [240 01-13 06:14:11.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [1bd 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [245 01-13 06:14:10.82 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=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [241 01-13 06:14:11.28 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 | [224 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [246 01-13 06:14:10.82 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 | [242 01-13 06:14:11.28 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{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +peer1.org1.example.com | [23f 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [247 01-13 06:14:10.83 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 | txId= locPointer=offset=38, bytesLength=12078 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [1be 01-13 06:14:10.17 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 | [225 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | ] +peer1.org1.example.com | [240 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [248 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [226 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [243 01-13 06:14:11.28 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=12078] for tx ID: [] to index +peer0.org1.example.com | [249 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +orderer.example.com | [1bf 01-13 06:14:10.17 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 | [241 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [244 01-13 06:14:11.28 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=12078] for tx number:[0] ID: [] to blockNumTranNum index +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [24a 01-13 06:14:10.83 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 | [245 01-13 06:14:11.28 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=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [242 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [1c0 01-13 06:14:10.17 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 | [227 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [24b 01-13 06:14:10.83 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 | [246 01-13 06:14:11.28 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 | [243 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [1c1 01-13 06:14:10.17 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 | [228 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [24c 01-13 06:14:10.83 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 | [247 01-13 06:14:11.28 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 | [244 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [1c2 01-13 06:14:10.17 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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [229 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [248 01-13 06:14:11.28 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 | [24d 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [245 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [1c3 01-13 06:14:10.17 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 | [22a 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [249 01-13 06:14:11.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [24e 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +orderer.example.com | [1c4 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [24a 01-13 06:14:11.28 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 | [22b 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [246 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | -------------------- +peer0.org2.example.com | [24b 01-13 06:14:11.28 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 | [24f 01-13 06:14:10.83 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 | [22c 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [1c5 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org2.example.com | [24c 01-13 06:14:11.29 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 | [250 01-13 06:14:10.83 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 | [247 01-13 06:14:11.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [22d 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [1c6 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [251 01-13 06:14:10.83 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 | [24d 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [248 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [22e 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [252 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [24e 01-13 06:14:11.29 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 | [249 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [253 01-13 06:14:10.83 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 = [18ee522b-ebeb-46b9-959a-3689f334a0f2] +peer1.org2.example.com | [22f 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [24f 01-13 06:14:11.29 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 | [24a 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [230 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [254 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer0.org2.example.com | [250 01-13 06:14:11.29 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 | [24b 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [255 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [18ee522b-ebeb-46b9-959a-3689f334a0f2] +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [231 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [251 01-13 06:14:11.29 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] +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [24c 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [252 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [256 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [232 01-13 06:14:12.10 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [24d 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [257 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [253 01-13 06:14:11.29 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 = [6d9cf37d-1900-4fb6-a9a7-5d9d4e8ab749] +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +explorer | at next (native) +peer1.org2.example.com | [233 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [258 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [24e 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [254 01-13 06:14:11.29 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 +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org2.example.com | [234 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [259 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [24f 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [255 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [6d9cf37d-1900-4fb6-a9a7-5d9d4e8ab749] +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [235 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [25a 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [250 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +peer1.org2.example.com | [236 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [25b 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [256 01-13 06:14:11.29 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 | [251 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +peer0.org1.example.com | [25c 01-13 06:14:10.84 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 | [237 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [252 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [257 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [253 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [25d 01-13 06:14:10.84 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 | [258 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +explorer | sqlState: '42S02', +peer1.org1.example.com | [254 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [238 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | oQmWQsjpiQ== +peer0.org1.example.com | [25e 01-13 06:14:10.84 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 | [255 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [239 01-13 06:14:12.11 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 | [259 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | index: 0, +peer0.org1.example.com | [25f 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [23a 01-13 06:14:12.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [256 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [25a 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [1c7 01-13 06:14:10.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [260 01-13 06:14:10.84 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 | [23b 01-13 06:14:12.11 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 [] +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [257 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [25b 01-13 06:14:11.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [261 01-13 06:14:10.84 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 | [23c 01-13 06:14:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +explorer | [2018-01-13 06:14:37.531] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [25c 01-13 06:14:11.29 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 | [258 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [23d 01-13 06:14:12.12 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 | [262 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [23e 01-13 06:14:12.12 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 | [259 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [23f 01-13 06:14:12.12 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 | [263 01-13 06:14:10.84 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 | [264 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [240 01-13 06:14:12.12 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 | [25d 01-13 06:14:11.29 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 | [25a 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [265 01-13 06:14:10.84 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 | [241 01-13 06:14:12.43 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] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [25e 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org2.example.com | [242 01-13 06:14:12.69 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{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +peer0.org1.example.com | [266 01-13 06:14:10.84 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 | [25b 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [25f 01-13 06:14:11.30 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 | txId= locPointer=offset=38, bytesLength=12078 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [25c 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [267 01-13 06:14:10.84 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 | [260 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | ] +peer1.org2.example.com | [243 01-13 06:14:12.69 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=12078] for tx ID: [] to index +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org1.example.com | [268 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [25d 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [244 01-13 06:14:12.69 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=12078] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [261 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer1.org1.example.com | [25e 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [269 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [245 01-13 06:14:12.69 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=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [262 01-13 06:14:11.30 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 | [25f 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org2.example.com | [246 01-13 06:14:12.69 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 | [263 01-13 06:14:11.30 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 | [26a 01-13 06:14:10.84 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 | [260 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [247 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer1.org1.example.com | [261 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [26b 01-13 06:14:10.84 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 | [248 01-13 06:14:12.70 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 | [264 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer0.org1.example.com | [26c 01-13 06:14:10.84 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 | [249 01-13 06:14:12.70 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 | [265 01-13 06:14:11.30 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 | [262 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +explorer | -------------------- +peer0.org1.example.com | [26d 01-13 06:14:10.84 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 | [24a 01-13 06:14:12.70 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 | [266 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer1.org1.example.com | [263 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [26e 01-13 06:14:10.84 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 | [24b 01-13 06:14:12.70 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 | [24c 01-13 06:14:12.70 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 | [267 01-13 06:14:11.30 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 | [264 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | -----END CERTIFICATE----- +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [24d 01-13 06:14:12.70 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 | [26f 01-13 06:14:10.84 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 | [268 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [1c8 01-13 06:14:10.18 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [265 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [270 01-13 06:14:10.84 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 | [269 01-13 06:14:11.30 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 | [24e 01-13 06:14:12.70 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 | [266 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [1c9 01-13 06:14:10.18 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) +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [24f 01-13 06:14:12.70 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 | [271 01-13 06:14:10.84 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 | [26a 01-13 06:14:11.30 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 | [267 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [1ca 01-13 06:14:10.18 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 | [272 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | [26b 01-13 06:14:11.30 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 | [250 01-13 06:14:12.70 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 | [268 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [1cb 01-13 06:14:10.18 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 | [273 01-13 06:14:10.84 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 | [26c 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [251 01-13 06:14:12.70 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] +orderer.example.com | [1cc 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [269 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [274 01-13 06:14:10.84 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 | [26d 01-13 06:14:11.30 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 +orderer.example.com | [1cd 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [252 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org1.example.com | [26a 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org2.example.com | [26e 01-13 06:14:11.30 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 | [275 01-13 06:14:10.84 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 | [253 01-13 06:14:12.70 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 = [270e3b03-a18e-4df3-a2b4-fc3012720eb1] +peer1.org1.example.com | [26b 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [276 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [1ce 01-13 06:14:10.18 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 +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [26f 01-13 06:14:11.30 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 | [254 01-13 06:14:12.70 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 | [26c 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [277 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [1cf 01-13 06:14:10.18 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 +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [270 01-13 06:14:11.30 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 | [255 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [270e3b03-a18e-4df3-a2b4-fc3012720eb1] +peer0.org1.example.com | [278 01-13 06:14:10.84 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 | [26d 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org2.example.com | [271 01-13 06:14:11.30 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 | [26e 01-13 06:14:11.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [1d0 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org1.example.com | [279 01-13 06:14:10.84 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 | [256 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [272 01-13 06:14:11.30 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 | [26f 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [1d1 01-13 06:14:10.18 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.org1.example.com | [27a 01-13 06:14:10.84 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 | [257 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | errno: 1146, +peer0.org2.example.com | [273 01-13 06:14:11.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [1d2 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer1.org1.example.com | [270 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [258 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org1.example.com | [27b 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [274 01-13 06:14:11.30 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 | [271 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [1d3 01-13 06:14:10.18 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 +explorer | sqlState: '42S02', +peer0.org1.example.com | [27c 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [259 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [1d4 01-13 06:14:10.18 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 +explorer | index: 0, +peer0.org2.example.com | [275 01-13 06:14:11.30 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 | [272 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [25a 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [27d 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [1d5 01-13 06:14:10.18 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 +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org2.example.com | [276 01-13 06:14:11.30 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 | [25b 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [273 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [1d6 01-13 06:14:10.18 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.org1.example.com | [27e 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [25c 01-13 06:14:12.70 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 | [277 01-13 06:14:11.30 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 +explorer | [2018-01-13 06:14:38.480] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | [1d7 01-13 06:14:10.18 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.org1.example.com | [27f 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [25d 01-13 06:14:12.70 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 | [274 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [1d8 01-13 06:14:10.18 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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [278 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [25e 01-13 06:14:12.70 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 | [280 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [275 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [1d9 01-13 06:14:10.18 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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [279 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [276 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | [1da 01-13 06:14:10.18 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 +peer0.org1.example.com | [281 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [27a 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [277 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | [1db 01-13 06:14:10.18 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.org2.example.com | [25f 01-13 06:14:12.70 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 | [278 01-13 06:14:11.04 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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [282 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [1dc 01-13 06:14:10.18 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 | [279 01-13 06:14:11.04 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 | [27b 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [260 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [1dd 01-13 06:14:10.18 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 | [27a 01-13 06:14:11.04 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 | [27c 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [283 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [1de 01-13 06:14:10.18 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 | [27b 01-13 06:14:11.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [261 01-13 06:14:12.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [1df 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [27d 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [27c 01-13 06:14:11.04 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 | [284 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [1e0 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [27d 01-13 06:14:11.04 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] +orderer.example.com | [1e1 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [27e 01-13 06:14:11.04 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{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +peer1.org2.example.com | [262 01-13 06:14:12.70 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 | [27e 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [1e2 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | txId= locPointer=offset=38, bytesLength=12078 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [285 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [1e3 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [263 01-13 06:14:12.70 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 | [27f 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | ] +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [1e4 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [286 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [27f 01-13 06:14:11.04 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=12078] for tx ID: [] to index +peer1.org2.example.com | [264 01-13 06:14:12.70 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 | [280 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [280 01-13 06:14:11.04 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=12078] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [1e5 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [265 01-13 06:14:12.70 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 | [281 01-13 06:14:11.04 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=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [281 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [287 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [282 01-13 06:14:11.05 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 | [266 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [1e6 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [288 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [282 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | -------------------- +peer1.org1.example.com | [283 01-13 06:14:11.05 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 | [267 01-13 06:14:12.71 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 | [284 01-13 06:14:11.05 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 | [283 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [1e7 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [289 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [285 01-13 06:14:11.05 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 | [268 01-13 06:14:12.71 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 | [286 01-13 06:14:11.05 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 | [28a 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [284 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [1e8 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [287 01-13 06:14:11.05 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 | [28b 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [269 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [1e9 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [285 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [1ea 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [26a 01-13 06:14:12.71 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 | [28c 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [288 01-13 06:14:11.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +orderer.example.com | [1eb 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [26b 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [286 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [289 01-13 06:14:11.05 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 | [1ec 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [28d 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [287 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [26c 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [1ed 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +explorer | at next (native) +peer1.org1.example.com | [28a 01-13 06:14:11.05 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 | [288 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [28e 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [26d 01-13 06:14:12.71 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 +orderer.example.com | [1ee 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [28b 01-13 06:14:11.05 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 | [26e 01-13 06:14:12.71 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 | [289 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [28f 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | [1ef 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [28c 01-13 06:14:11.05 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 | [26f 01-13 06:14:12.71 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 | [28a 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [1f0 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [28d 01-13 06:14:11.06 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 | [290 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [270 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [1f1 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [28e 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [28b 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [291 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [1f2 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [271 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [28c 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [1f3 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [28f 01-13 06:14:11.06 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 = [dd6730ce-68ae-4bd6-a80a-bc839b33c3d3] +peer0.org1.example.com | [292 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [272 01-13 06:14:12.71 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 | [28d 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [1f4 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +explorer | errno: 1146, +peer1.org1.example.com | [290 01-13 06:14:11.06 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 | [273 01-13 06:14:12.71 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 | [293 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [1f5 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [28e 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [1f6 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [274 01-13 06:14:12.71 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 | [294 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [291 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [dd6730ce-68ae-4bd6-a80a-bc839b33c3d3] +orderer.example.com | [1f7 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [28f 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | sqlState: '42S02', +peer1.org2.example.com | [275 01-13 06:14:12.71 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 | [295 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [292 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [1f8 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [276 01-13 06:14:12.71 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 | [296 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [290 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +explorer | index: 0, +orderer.example.com | [1f9 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [297 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [293 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [277 01-13 06:14:12.71 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 | [291 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [1fa 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [294 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [298 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [1fb 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [292 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [278 01-13 06:14:12.71 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 +explorer | [2018-01-13 06:14:38.579] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [299 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [1fc 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [293 01-13 06:14:11.31 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 | [295 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [279 01-13 06:14:12.71 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 | [29a 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [1fd 01-13 06:14:10.19 UTC] [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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [27a 01-13 06:14:12.71 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 | [296 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [1fe 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [294 01-13 06:14:11.31 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 | [29b 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [27b 01-13 06:14:12.71 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 | [297 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [1ff 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [29c 01-13 06:14:10.85 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 | [295 01-13 06:14:11.31 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 | [27c 01-13 06:14:12.71 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 | [298 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [29d 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [200 01-13 06:14:10.19 UTC] [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.org1.example.com | [299 01-13 06:14:11.06 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 | [296 01-13 06:14:11.31 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 | [27d 01-13 06:14:12.71 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 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [201 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [29e 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [29a 01-13 06:14:11.06 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 | [297 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [202 01-13 06:14:10.19 UTC] [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 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [27e 01-13 06:14:12.71 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 | [29b 01-13 06:14:11.06 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 | [298 01-13 06:14:11.31 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 | [29f 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [203 01-13 06:14:10.19 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 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [27f 01-13 06:14:12.71 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 | [29c 01-13 06:14:11.06 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 | [2a0 01-13 06:14:10.85 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 | [299 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [204 01-13 06:14:10.19 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 | [280 01-13 06:14:12.71 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 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [2a1 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org1.example.com | [29d 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [205 01-13 06:14:10.19 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 | [281 01-13 06:14:12.71 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 | [29a 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [2a2 01-13 06:14:10.86 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 | [29e 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [206 01-13 06:14:10.19 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 | [282 01-13 06:14:12.71 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 | [29b 01-13 06:14:11.31 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 | [2a3 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [207 01-13 06:14:10.19 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.org1.example.com | [29f 01-13 06:14:11.06 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 | [283 01-13 06:14:12.71 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 | [2a4 01-13 06:14:10.87 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 | [29c 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [2a0 01-13 06:14:11.06 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 | [284 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [208 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [2a5 01-13 06:14:10.87 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 | [29d 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +explorer | -------------------- +peer1.org1.example.com | [2a1 01-13 06:14:11.06 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 | [285 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [209 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [2a6 01-13 06:14:10.87 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 | [29e 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [2a2 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [20a 01-13 06:14:10.19 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 | [286 01-13 06:14:12.71 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [2a7 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +orderer.example.com | [20b 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [29f 01-13 06:14:11.31 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 | [287 01-13 06:14:12.71 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [2a8 01-13 06:14:10.87 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 | [2a3 01-13 06:14:11.06 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 | [2a0 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [20c 01-13 06:14:10.19 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 | [288 01-13 06:14:12.71 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 | [2a9 01-13 06:14:10.87 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 | [2a4 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [20d 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [2aa 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org2.example.com | [289 01-13 06:14:12.71 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 | [2a1 01-13 06:14:11.31 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org1.example.com | [2a5 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org1.example.com | [2ab 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func4 -> DEBU Deploying system CC, for chain +orderer.example.com | [20e 01-13 06:14:10.19 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 | [28a 01-13 06:14:12.71 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 | [2a2 01-13 06:14:11.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [2a6 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org1.example.com | [2ac 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [28b 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [2a3 01-13 06:14:11.33 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [20f 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [2a7 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org1.example.com | [2ad 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4e6838e1-a5d5-456b-9860-316246ac46d4] +orderer.example.com | [210 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [2a4 01-13 06:14:11.33 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 | [2a8 01-13 06:14:11.06 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 | [28c 01-13 06:14:12.71 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 | [2ae 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=4e6838e1-a5d5-456b-9860-316246ac46d4,syscc=true,proposal=0x0,canname=cscc:1.1.0 +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | [211 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [2a5 01-13 06:14:11.33 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 | [2a9 01-13 06:14:11.06 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 | [2af 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer1.org2.example.com | [28d 01-13 06:14:12.71 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 +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [212 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer1.org1.example.com | [2aa 01-13 06:14:11.06 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 | [2a6 01-13 06:14:11.33 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 | [2b0 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [213 01-13 06:14:10.19 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 | [28e 01-13 06:14:12.71 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 +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [2b1 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer1.org1.example.com | [2ab 01-13 06:14:11.06 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 | [28f 01-13 06:14:12.71 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 | [2a7 01-13 06:14:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +orderer.example.com | [214 01-13 06:14:10.19 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 [] +peer0.org1.example.com | [2b2 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6838e1]Inside sendExecuteMessage. Message INIT +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [2a8 01-13 06:14:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer1.org1.example.com | [2ac 01-13 06:14:11.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [215 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [2b3 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [290 01-13 06:14:12.71 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 +explorer | errno: 1146, +peer0.org2.example.com | [2a9 01-13 06:14:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +peer0.org1.example.com | [2b4 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6838e1]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2ad 01-13 06:14:11.07 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 | [291 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [216 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer0.org2.example.com | [2aa 01-13 06:14:11.33 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [2b5 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6838e1]Move state message INIT +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [292 01-13 06:14:12.71 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 +orderer.example.com | [217 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org2.example.com | [2ab 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func4 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [2ae 01-13 06:14:11.07 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 | [2b6 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e6838e1]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2ac 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [293 01-13 06:14:12.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +explorer | sqlState: '42S02', +orderer.example.com | [218 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [2b7 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2ad 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bae9f017-4bfd-4cd6-8a2b-8e1f669f0375] +explorer | index: 0, +peer1.org1.example.com | [2af 01-13 06:14:11.07 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 | [294 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [219 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [2b8 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6838e1]sending state message INIT +peer0.org2.example.com | [2ae 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=bae9f017-4bfd-4cd6-8a2b-8e1f669f0375,syscc=true,proposal=0x0,canname=cscc:1.1.0 +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [2b0 01-13 06:14:11.07 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 | [2b9 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Received message INIT from shim +orderer.example.com | [21a 01-13 06:14:10.19 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 | [295 01-13 06:14:12.72 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 | [2af 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org1.example.com | [2ba 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6838e1]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | [2018-01-13 06:14:39.482] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org1.example.com | [2b1 01-13 06:14:11.07 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 | [2b0 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [2bb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [296 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [21b 01-13 06:14:10.19 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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [2b2 01-13 06:14:11.07 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 | [2b1 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org1.example.com | [2bc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4e6838e1]Received INIT, initializing chaincode +peer1.org2.example.com | [297 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [2b2 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bae9f017]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2bd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [2b3 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [21c 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org2.example.com | [2b3 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [298 01-13 06:14:12.72 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 | [2be 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Init get response status: 200 +peer1.org1.example.com | [2b4 01-13 06:14:11.07 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 +orderer.example.com | [21d 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +peer0.org2.example.com | [2b4 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bae9f017]sendExecuteMsg trigger event INIT +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [2bf 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2b5 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bae9f017]Move state message INIT +peer1.org1.example.com | [2b5 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [21e 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [2c0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Move state message COMPLETED +peer0.org2.example.com | [2b6 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bae9f017]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [299 01-13 06:14:12.72 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 | [2b6 01-13 06:14:11.07 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 | [2c1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6838e1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [2b7 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [29a 01-13 06:14:12.72 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 | [2c2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]send state message COMPLETED +peer1.org1.example.com | [2b7 01-13 06:14:11.07 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 | [2b8 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bae9f017]sending state message INIT +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [29b 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [21f 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +peer0.org2.example.com | [2b9 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bae9f017]Received message INIT from shim +peer0.org1.example.com | [2c3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6838e1]Received message COMPLETED from shim +peer1.org1.example.com | [2b8 01-13 06:14:11.07 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 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [2ba 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bae9f017]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [220 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [2c4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e6838e1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [29c 01-13 06:14:12.72 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 | [2bb 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2b9 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [221 01-13 06:14:10.19 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----- +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [2bc 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bae9f017]Received INIT, initializing chaincode +peer1.org1.example.com | [2ba 01-13 06:14:11.07 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 | [29d 01-13 06:14:12.72 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 | [2c5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e6838e1-a5d5-456b-9860-316246ac46d4]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2bd 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [2bb 01-13 06:14:11.07 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [29e 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [2c6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4e6838e1-a5d5-456b-9860-316246ac46d4, channelID:businesschannel +peer0.org2.example.com | [2be 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bae9f017]Init get response status: 200 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [2bc 01-13 06:14:11.07 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 | [29f 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [2bf 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bae9f017]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2c0 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bae9f017]Move state message COMPLETED +peer0.org2.example.com | [2c1 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bae9f017]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2bd 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [2a0 01-13 06:14:12.72 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 | [2c2 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bae9f017]send state message COMPLETED +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [2c7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [2c3 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bae9f017]Received message COMPLETED from shim +peer1.org2.example.com | [2a1 01-13 06:14:12.72 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org1.example.com | [2be 01-13 06:14:11.07 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 +explorer | -------------------- +peer0.org1.example.com | [2c8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org2.example.com | [2a2 01-13 06:14:12.72 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 | [2c4 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bae9f017]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2bf 01-13 06:14:11.07 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [2c9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [4e6838e1-a5d5-456b-9860-316246ac46d4] +peer0.org2.example.com | [2c5 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bae9f017-4bfd-4cd6-8a2b-8e1f669f0375]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2c6 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bae9f017-4bfd-4cd6-8a2b-8e1f669f0375, channelID:businesschannel +peer0.org2.example.com | [2c7 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2c8 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [2c9 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [bae9f017-4bfd-4cd6-8a2b-8e1f669f0375] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [2a3 01-13 06:14:12.73 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 | [2c0 01-13 06:14:11.07 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 | [2ca 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [2ca 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [2c1 01-13 06:14:11.07 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 | [2cb 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d882ef31-0d41-4bca-bbff-cfd2119d3156] +peer1.org2.example.com | [2a4 01-13 06:14:12.73 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [2cb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [27896b2c-3f01-4ed0-8a53-da7aa0bd25bb] +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org2.example.com | [2cc 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d882ef31-0d41-4bca-bbff-cfd2119d3156,syscc=true,proposal=0x0,canname=lscc:1.1.0 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [2a5 01-13 06:14:12.73 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 | [2c2 01-13 06:14:11.07 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 | [2cd 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org1.example.com | [2cc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=27896b2c-3f01-4ed0-8a53-da7aa0bd25bb,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer1.org2.example.com | [2a6 01-13 06:14:12.73 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +explorer | at next (native) +peer1.org1.example.com | [2c3 01-13 06:14:11.07 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 | [2cd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [2ce 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [2a7 01-13 06:14:12.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org1.example.com | [2c4 01-13 06:14:11.07 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 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org2.example.com | [2a8 01-13 06:14:12.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org1.example.com | [2ce 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org1.example.com | [2c5 01-13 06:14:11.07 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 | [2a9 01-13 06:14:12.73 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 | [2cf 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer1.org1.example.com | [2c6 01-13 06:14:11.07 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 | [2aa 01-13 06:14:12.73 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +explorer | errno: 1146, +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer0.org2.example.com | [2d0 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d882ef31]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2c7 01-13 06:14:11.07 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 | [2cf 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [2ab 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func4 -> DEBU Deploying system CC, for chain +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [2d1 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [2ac 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2d0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [27896b2c]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2c8 01-13 06:14:11.07 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 +explorer | sqlState: '42S02', +peer1.org2.example.com | [2ad 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c5211131-8e2b-4bbe-869d-7e55dd972e5d] +peer0.org2.example.com | [2d2 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d882ef31]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2d1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | index: 0, +peer1.org2.example.com | [2ae 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=c5211131-8e2b-4bbe-869d-7e55dd972e5d,syscc=true,proposal=0x0,canname=cscc:1.1.0 +orderer.example.com | [222 01-13 06:14:10.19 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 0xc42011c6c8 gate 1515824050199157902 evaluation starts +peer1.org1.example.com | [2c9 01-13 06:14:11.07 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 +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org2.example.com | [2d3 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d882ef31]Move state message INIT +peer1.org2.example.com | [2af 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org1.example.com | [2d2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [27896b2c]sendExecuteMsg trigger event INIT +explorer | [2018-01-13 06:14:39.619] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | [223 01-13 06:14:10.19 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 0xc42011c6c8 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [2d4 01-13 06:14:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d882ef31]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2b0 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [2ca 01-13 06:14:11.07 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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [2b1 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer0.org2.example.com | [2d5 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2d3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27896b2c]Move state message INIT +orderer.example.com | [224 01-13 06:14:10.19 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 0xc42011c6c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [2cb 01-13 06:14:11.07 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 | [2b2 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c5211131]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2d4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27896b2c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [2d6 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d882ef31]sending state message INIT +orderer.example.com | [225 01-13 06:14:10.19 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 0xc42011c6c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer1.org2.example.com | [2b3 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [2cc 01-13 06:14:11.07 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 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [226 01-13 06:14:10.19 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 0xc42011c6c8 principal evaluation fails +peer1.org2.example.com | [2b4 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c5211131]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2d5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [2d7 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d882ef31]Received message INIT from shim +peer1.org1.example.com | [2cd 01-13 06:14:11.07 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 +orderer.example.com | [227 01-13 06:14:10.19 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 0xc42011c6c8 gate 1515824050199157902 evaluation fails +peer1.org2.example.com | [2b5 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5211131]Move state message INIT +peer0.org1.example.com | [2d6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27896b2c]sending state message INIT +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [2d8 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d882ef31]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [2b6 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c5211131]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [2ce 01-13 06:14:11.07 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 | [2d7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Received message INIT from shim +orderer.example.com | [228 01-13 06:14:10.20 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 +peer1.org2.example.com | [2b7 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [2d9 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2d8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27896b2c]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [2b8 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5211131]sending state message INIT +peer1.org1.example.com | [2cf 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [2b9 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5211131]Received message INIT from shim +peer0.org2.example.com | [2da 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d882ef31]Received INIT, initializing chaincode +peer0.org1.example.com | [2d9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [229 01-13 06:14:10.20 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [2ba 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5211131]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2d0 01-13 06:14:11.07 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 | [2da 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [27896b2c]Received INIT, initializing chaincode +peer0.org2.example.com | [2db 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d882ef31]Init get response status: 200 +explorer | -------------------- +peer1.org2.example.com | [2bb 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [22a 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org1.example.com | [2d1 01-13 06:14:11.07 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 | [2db 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Init get response status: 200 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [2dc 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d882ef31]Init succeeded. Sending COMPLETED +orderer.example.com | [22b 01-13 06:14:10.20 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 0xc42011c6d8 gate 1515824050200322719 evaluation starts +peer1.org2.example.com | [2bc 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c5211131]Received INIT, initializing chaincode +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [2dc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2d2 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [22c 01-13 06:14:10.20 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 0xc42011c6d8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [2bd 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [2dd 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d882ef31]Move state message COMPLETED +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [2dd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Move state message COMPLETED +peer1.org2.example.com | [2be 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5211131]Init get response status: 200 +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [22d 01-13 06:14:10.20 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 0xc42011c6d8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [2d3 01-13 06:14:11.07 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 | [2bf 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5211131]Init succeeded. Sending COMPLETED +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org2.example.com | [2de 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d882ef31]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2de 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27896b2c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2c0 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5211131]Move state message COMPLETED +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +orderer.example.com | [22e 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org1.example.com | [2d4 01-13 06:14:11.07 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 | [2df 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]send state message COMPLETED +peer0.org2.example.com | [2df 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d882ef31]send state message COMPLETED +peer1.org2.example.com | [2c1 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5211131]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at ontimeout (timers.js:386:11) +peer1.org2.example.com | [2c2 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5211131]send state message COMPLETED +orderer.example.com | [22f 01-13 06:14:10.20 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 0xc42011c6d8 principal matched by identity 0 +peer0.org2.example.com | [2e0 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d882ef31]Received message COMPLETED from shim +peer1.org1.example.com | [2d5 01-13 06:14:11.07 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 | [2e0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27896b2c]Received message COMPLETED from shim +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [2c3 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5211131]Received message COMPLETED from shim +peer0.org2.example.com | [2e1 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d882ef31]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [230 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 2d 96 0e 7b dc 0b 3b 5b b9 6d 48 de 3f d1 9e |.-..{..;[.mH.?..| +peer1.org1.example.com | [2d6 01-13 06:14:11.07 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | 00000010 8f 0c c0 7d 36 ae 5d 62 3c 3a 55 83 70 c7 27 ea |...}6.]b<:U.p.'.| +peer0.org1.example.com | [2e1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27896b2c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [2c4 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c5211131]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2e2 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d882ef31-0d41-4bca-bbff-cfd2119d3156]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2d7 01-13 06:14:11.07 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 | [2e2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27896b2c-3f01-4ed0-8a53-da7aa0bd25bb]HandleMessage- COMPLETED. Notify +orderer.example.com | [231 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 df 74 0c 9e ee 81 1d 37 76 7d a9 |0E.!..t.....7v}.| +explorer | errno: 1146, +peer1.org2.example.com | [2c5 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c5211131-8e2b-4bbe-869d-7e55dd972e5d]HandleMessage- COMPLETED. Notify +orderer.example.com | 00000010 a7 e1 d4 ad 01 97 bd 1b ad b9 c9 b5 eb 50 c3 6e |.............P.n| +peer1.org1.example.com | [2d8 01-13 06:14:11.07 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 | [2e3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:27896b2c-3f01-4ed0-8a53-da7aa0bd25bb, channelID:businesschannel +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org2.example.com | [2e3 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d882ef31-0d41-4bca-bbff-cfd2119d3156, channelID:businesschannel +peer1.org1.example.com | [2d9 01-13 06:14:11.07 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 | [2c6 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c5211131-8e2b-4bbe-869d-7e55dd972e5d, channelID:businesschannel +orderer.example.com | 00000020 f8 6e 73 7c f4 02 20 21 89 30 4c c0 57 4f 0c 1a |.ns|.. !.0L.WO..| +explorer | sqlState: '42S02', +peer0.org1.example.com | [2e4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [2da 01-13 06:14:11.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +explorer | index: 0, +peer1.org2.example.com | [2c7 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2e4 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 00000030 fe e1 f8 9a 89 36 f3 60 e3 3a ff f5 d6 ce 14 4c |.....6.`.:.....L| +peer0.org1.example.com | [2e5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [2db 01-13 06:14:11.08 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 | [2e5 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [2c8 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +explorer | [2018-01-13 06:14:40.482] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org1.example.com | [2dc 01-13 06:14:11.08 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 | [2e6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [27896b2c-3f01-4ed0-8a53-da7aa0bd25bb] +orderer.example.com | 00000040 3b 30 51 13 12 21 d7 |;0Q..!.| +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [2e6 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [d882ef31-0d41-4bca-bbff-cfd2119d3156] +peer1.org2.example.com | [2c9 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [c5211131-8e2b-4bbe-869d-7e55dd972e5d] +orderer.example.com | [232 01-13 06:14:10.20 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 0xc42011c6d8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [2e7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [2dd 01-13 06:14:11.08 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [233 01-13 06:14:10.20 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 0xc42011c6d8 gate 1515824050200322719 evaluation succeeds +peer1.org2.example.com | [2ca 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [2e7 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2e8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333] +orderer.example.com | [234 01-13 06:14:10.20 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 | [2de 01-13 06:14:11.08 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [2cb 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d12a71bc-503d-490f-882a-feaa64ff76a8] +orderer.example.com | [235 01-13 06:14:10.20 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 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [2e9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333,syscc=true,proposal=0x0,canname=escc:1.1.0 +peer1.org1.example.com | [2df 01-13 06:14:11.09 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 | [2e0 01-13 06:14:11.09 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 | [2cc 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=d12a71bc-503d-490f-882a-feaa64ff76a8,syscc=true,proposal=0x0,canname=lscc:1.1.0 +peer0.org2.example.com | [2e8 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [47bcebbd-da03-444c-81ea-9c04f3b7e148] +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [2ea 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [236 01-13 06:14:10.20 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 | [2e1 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [2cd 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [2eb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [237 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [2e9 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=47bcebbd-da03-444c-81ea-9c04f3b7e148,syscc=true,proposal=0x0,canname=escc:1.1.0 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [2ce 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [238 01-13 06:14:10.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 +peer1.org1.example.com | [2e2 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [2ea 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [2ec 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [239 01-13 06:14:10.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 +explorer | -------------------- +peer1.org2.example.com | [2cf 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [2eb 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [2e3 01-13 06:14:11.09 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 | [2d0 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d12a71bc]Inside sendExecuteMessage. Message INIT +orderer.example.com | [23a 01-13 06:14:10.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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org1.example.com | [2e4 01-13 06:14:11.09 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 | [2ed 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a5ff9b4]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2ec 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [23b 01-13 06:14:10.20 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" +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [2e5 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +orderer.example.com | [23c 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2ee 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [2e6 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +orderer.example.com | [23d 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2ed 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [47bcebbd]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2ef 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a5ff9b4]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2d1 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [2e7 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func4 -> DEBU Deploying system CC, for chain +orderer.example.com | [23e 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2ee 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [2d2 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d12a71bc]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2e8 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [23f 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2f0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a5ff9b4]Move state message INIT +explorer | at next (native) +peer1.org1.example.com | [2e9 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [d25a8be3-3130-4347-9586-d1f27e898219] +orderer.example.com | [240 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [2d3 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d12a71bc]Move state message INIT +peer0.org2.example.com | [2ef 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [47bcebbd]sendExecuteMsg trigger event INIT +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [2ea 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=d25a8be3-3130-4347-9586-d1f27e898219,syscc=true,proposal=0x0,canname=cscc:1.1.0 +peer0.org1.example.com | [2f1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a5ff9b4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2d4 01-13 06:14:12.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d12a71bc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | [241 01-13 06:14:10.20 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 | [2eb 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +peer0.org2.example.com | [2f0 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47bcebbd]Move state message INIT +peer1.org2.example.com | [2d5 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [2f2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [2ec 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2f1 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [47bcebbd]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [242 01-13 06:14:10.20 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 | [2ed 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +peer1.org2.example.com | [2d6 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d12a71bc]sending state message INIT +peer0.org1.example.com | [2f3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a5ff9b4]sending state message INIT +explorer | errno: 1146, +orderer.example.com | [243 01-13 06:14:10.20 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 | [2d7 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d12a71bc]Received message INIT from shim +peer1.org1.example.com | [2ee 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d25a8be3]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2f2 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org1.example.com | [2f4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Received message INIT from shim +peer1.org1.example.com | [2ef 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [2f3 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47bcebbd]sending state message INIT +explorer | sqlState: '42S02', +orderer.example.com | [244 01-13 06:14:10.20 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 | [2d8 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d12a71bc]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [2f5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a5ff9b4]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2f0 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d25a8be3]sendExecuteMsg trigger event INIT +explorer | index: 0, +peer0.org2.example.com | [2f4 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47bcebbd]Received message INIT from shim +orderer.example.com | [245 01-13 06:14:10.20 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 | [2d9 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2f6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2f1 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d25a8be3]Move state message INIT +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | [246 01-13 06:14:10.20 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 | [2da 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d12a71bc]Received INIT, initializing chaincode +peer0.org2.example.com | [2f5 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [47bcebbd]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2f2 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d25a8be3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | [2018-01-13 06:14:40.668] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [2f7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8a5ff9b4]Received INIT, initializing chaincode +peer1.org2.example.com | [2db 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d12a71bc]Init get response status: 200 +orderer.example.com | [247 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2f6 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2f3 01-13 06:14:11.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [2dc 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d12a71bc]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2f8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [2f4 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d25a8be3]sending state message INIT +orderer.example.com | [248 01-13 06:14:10.20 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" +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [2f9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Init get response status: 200 +peer0.org2.example.com | [2f7 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [47bcebbd]Received INIT, initializing chaincode +peer1.org2.example.com | [2dd 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d12a71bc]Move state message COMPLETED +peer1.org1.example.com | [2f5 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25a8be3]Received message INIT from shim +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [249 01-13 06:14:10.20 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 | [2de 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d12a71bc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2fa 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2f6 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d25a8be3]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [2f8 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | [24a 01-13 06:14:10.20 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 | [2df 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d12a71bc]send state message COMPLETED +peer1.org1.example.com | [2f7 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [2f9 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47bcebbd]Init get response status: 200 +peer0.org1.example.com | [2fb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Move state message COMPLETED +peer1.org1.example.com | [2f8 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d25a8be3]Received INIT, initializing chaincode +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [2e0 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d12a71bc]Received message COMPLETED from shim +orderer.example.com | [24b 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [2fa 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47bcebbd]Init succeeded. Sending COMPLETED +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [2fc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a5ff9b4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2e1 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d12a71bc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2f9 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [2fd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]send state message COMPLETED +orderer.example.com | [24c 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2fb 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47bcebbd]Move state message COMPLETED +peer1.org2.example.com | [2e2 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d12a71bc-503d-490f-882a-feaa64ff76a8]HandleMessage- COMPLETED. Notify +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [2fa 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25a8be3]Init get response status: 200 +peer0.org1.example.com | [2fe 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a5ff9b4]Received message COMPLETED from shim +orderer.example.com | [24d 01-13 06:14:10.20 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 | [2e3 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d12a71bc-503d-490f-882a-feaa64ff76a8, channelID:businesschannel +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [2fc 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [47bcebbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2fb 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25a8be3]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [2e4 01-13 06:14:12.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [24e 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [2fd 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47bcebbd]send state message COMPLETED +peer0.org1.example.com | [2ff 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a5ff9b4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [2fc 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25a8be3]Move state message COMPLETED +peer1.org2.example.com | [2e5 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | [24f 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [2fe 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47bcebbd]Received message COMPLETED from shim +peer0.org1.example.com | [300 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2fd 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d25a8be3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | -------------------- +peer1.org2.example.com | [2e6 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [d12a71bc-503d-490f-882a-feaa64ff76a8] +orderer.example.com | [250 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [301 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333, channelID:businesschannel +peer1.org1.example.com | [2fe 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25a8be3]send state message COMPLETED +peer0.org2.example.com | [2ff 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [47bcebbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [302 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [2e7 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [251 01-13 06:14:10.20 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 | [2ff 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d25a8be3]Received message COMPLETED from shim +peer1.org1.example.com | [300 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d25a8be3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [301 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d25a8be3-3130-4347-9586-d1f27e898219]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [302 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d25a8be3-3130-4347-9586-d1f27e898219, channelID:businesschannel +peer1.org1.example.com | [303 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [304 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [305 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [d25a8be3-3130-4347-9586-d1f27e898219] +peer1.org1.example.com | [306 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [307 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [83af2472-4b00-4c0f-85ea-43d7598edb3c] +peer1.org1.example.com | [308 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=83af2472-4b00-4c0f-85ea-43d7598edb3c,syscc=true,proposal=0x0,canname=lscc:1.1.0 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [300 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [47bcebbd-da03-444c-81ea-9c04f3b7e148]HandleMessage- COMPLETED. Notify +orderer.example.com | [252 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [2e8 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [59920d83-41a7-449a-a632-6dc019eea64e] +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [309 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org1.example.com | [30a 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [30b 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [301 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:47bcebbd-da03-444c-81ea-9c04f3b7e148, channelID:businesschannel +peer0.org2.example.com | [302 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [303 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [304 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [47bcebbd-da03-444c-81ea-9c04f3b7e148] +peer0.org2.example.com | [305 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [306 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [928ddab2-9ffa-4315-abf8-afe034ea9a4c] +peer0.org2.example.com | [307 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=928ddab2-9ffa-4315-abf8-afe034ea9a4c,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [308 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [309 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [30a 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [30b 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [928ddab2]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [30c 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [30d 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [928ddab2]sendExecuteMsg trigger event INIT +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org2.example.com | [30e 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [928ddab2]Move state message INIT +peer0.org2.example.com | [30f 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [928ddab2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [310 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [311 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [928ddab2]sending state message INIT +peer1.org2.example.com | [2e9 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=59920d83-41a7-449a-a632-6dc019eea64e,syscc=true,proposal=0x0,canname=escc:1.1.0 +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:41.487] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [253 01-13 06:14:10.20 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 | [30c 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [83af2472]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [303 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [312 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [928ddab2]Received message INIT from shim +peer1.org2.example.com | [2ea 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [254 01-13 06:14:10.20 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 | [30d 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [313 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [928ddab2]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [304 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333] +peer1.org2.example.com | [2eb 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [255 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [314 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [256 01-13 06:14:10.20 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 | [30e 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [83af2472]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2ec 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [2ed 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [59920d83]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [2ee 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [2ef 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [59920d83]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2f0 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59920d83]Move state message INIT +peer1.org2.example.com | [2f1 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59920d83]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2f2 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2f3 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59920d83]sending state message INIT +peer1.org2.example.com | [2f4 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59920d83]Received message INIT from shim +peer1.org2.example.com | [2f5 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59920d83]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [2f6 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [2f7 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [59920d83]Received INIT, initializing chaincode +peer1.org2.example.com | [2f8 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [2f9 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59920d83]Init get response status: 200 +peer1.org2.example.com | [2fa 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59920d83]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [2fb 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59920d83]Move state message COMPLETED +peer1.org2.example.com | [2fc 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59920d83]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2fd 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59920d83]send state message COMPLETED +peer1.org2.example.com | [2fe 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59920d83]Received message COMPLETED from shim +orderer.example.com | [257 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [315 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [928ddab2]Received INIT, initializing chaincode +peer1.org1.example.com | [30f 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83af2472]Move state message INIT +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [2ff 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59920d83]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [258 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [316 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [928ddab2]Init get response status: 200 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [305 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [310 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83af2472]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [259 01-13 06:14:10.20 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 | [300 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59920d83-41a7-449a-a632-6dc019eea64e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [306 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [018ab8c8-44d2-49db-80d0-145ce5535978] +peer1.org1.example.com | [311 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [317 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [928ddab2]Init succeeded. Sending COMPLETED +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [307 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=018ab8c8-44d2-49db-80d0-145ce5535978,syscc=true,proposal=0x0,canname=vscc:1.1.0 +orderer.example.com | [25a 01-13 06:14:10.20 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 | [301 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59920d83-41a7-449a-a632-6dc019eea64e, channelID:businesschannel +peer1.org2.example.com | [302 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [303 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [312 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83af2472]sending state message INIT +peer0.org1.example.com | [308 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [318 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [928ddab2]Move state message COMPLETED +orderer.example.com | [25b 01-13 06:14:10.20 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 | [304 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [59920d83-41a7-449a-a632-6dc019eea64e] +peer1.org1.example.com | [313 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83af2472]Received message INIT from shim +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [319 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [928ddab2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [309 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [30a 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [30b 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [018ab8c8]Inside sendExecuteMessage. Message INIT +orderer.example.com | [25c 01-13 06:14:10.20 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 | [25d 01-13 06:14:10.20 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.org1.example.com | [314 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83af2472]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [31a 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [928ddab2]send state message COMPLETED +peer1.org2.example.com | [305 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [30c 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [30d 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [018ab8c8]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [30e 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [018ab8c8]Move state message INIT +peer0.org1.example.com | [30f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [018ab8c8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [310 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [311 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [018ab8c8]sending state message INIT +peer0.org1.example.com | [312 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Received message INIT from shim +peer0.org1.example.com | [313 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [018ab8c8]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [314 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [315 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [018ab8c8]Received INIT, initializing chaincode +peer0.org1.example.com | [316 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Init get response status: 200 +peer0.org1.example.com | [317 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Init succeeded. Sending COMPLETED +orderer.example.com | [25e 01-13 06:14:10.20 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 | [25f 01-13 06:14:10.20 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +orderer.example.com | oQmWQsjpiQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [260 01-13 06:14:10.20 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 | [31b 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [928ddab2]Received message COMPLETED from shim +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [315 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [306 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [3261c785-856a-40fe-a358-3a62c04dcb41] +peer0.org1.example.com | [318 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Move state message COMPLETED +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [31c 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [928ddab2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [31d 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [928ddab2-9ffa-4315-abf8-afe034ea9a4c]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [316 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [83af2472]Received INIT, initializing chaincode +peer1.org1.example.com | [317 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83af2472]Init get response status: 200 +peer1.org1.example.com | [318 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83af2472]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [319 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83af2472]Move state message COMPLETED +peer1.org2.example.com | [307 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=3261c785-856a-40fe-a358-3a62c04dcb41,syscc=true,proposal=0x0,canname=vscc:1.1.0 +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org2.example.com | [31e 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:928ddab2-9ffa-4315-abf8-afe034ea9a4c, channelID:businesschannel +peer0.org2.example.com | [31f 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [319 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [018ab8c8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [308 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer1.org1.example.com | [31a 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83af2472]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [31b 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83af2472]send state message COMPLETED +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [320 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [31a 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]send state message COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [31c 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83af2472]Received message COMPLETED from shim +peer1.org1.example.com | [31d 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83af2472]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [309 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [31b 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [018ab8c8]Received message COMPLETED from shim +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer0.org2.example.com | [321 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [928ddab2-9ffa-4315-abf8-afe034ea9a4c] +peer1.org1.example.com | [31e 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83af2472-4b00-4c0f-85ea-43d7598edb3c]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [30a 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [31c 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [018ab8c8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | errno: 1146, +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [31f 01-13 06:14:11.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:83af2472-4b00-4c0f-85ea-43d7598edb3c, channelID:businesschannel +peer1.org2.example.com | [30b 01-13 06:14:12.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3261c785]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [31d 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [018ab8c8-44d2-49db-80d0-145ce5535978]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [31e 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:018ab8c8-44d2-49db-80d0-145ce5535978, channelID:businesschannel +peer0.org1.example.com | [31f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [320 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [321 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [018ab8c8-44d2-49db-80d0-145ce5535978] +peer0.org1.example.com | [322 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [323 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [815bf74a-5573-4e5d-a6c9-8f93f1691593] +peer0.org2.example.com | [322 01-13 06:14:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [320 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [30c 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [30d 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3261c785]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [324 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=815bf74a-5573-4e5d-a6c9-8f93f1691593,syscc=true,proposal=0x0,canname=qscc:1.1.0 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +explorer | sqlState: '42S02', +peer1.org1.example.com | [321 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [323 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [0b574541-ab2a-477b-97d1-8ce56126c72d] +peer1.org2.example.com | [30e 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3261c785]Move state message INIT +peer0.org1.example.com | [325 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +explorer | index: 0, +peer1.org1.example.com | [322 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [83af2472-4b00-4c0f-85ea-43d7598edb3c] +peer0.org2.example.com | [324 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=0b574541-ab2a-477b-97d1-8ce56126c72d,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | [30f 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3261c785]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer1.org1.example.com | [323 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [325 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [326 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [310 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer0.org2.example.com | [326 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [324 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [88abc0d1-c2ee-4f19-815b-67324787460f] +peer0.org1.example.com | [327 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org2.example.com | [311 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3261c785]sending state message INIT +explorer | [2018-01-13 06:14:41.715] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org2.example.com | [327 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [328 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [815bf74a]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [312 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3261c785]Received message INIT from shim +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer0.org1.example.com | [329 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [313 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3261c785]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [328 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0b574541]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [325 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=88abc0d1-c2ee-4f19-815b-67324787460f,syscc=true,proposal=0x0,canname=escc:1.1.0 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [32a 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [815bf74a]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [32b 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [815bf74a]Move state message INIT +peer1.org2.example.com | [314 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [32c 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [815bf74a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer0.org2.example.com | [329 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [32a 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0b574541]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [326 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [32d 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [315 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3261c785]Received INIT, initializing chaincode +peer0.org2.example.com | [32b 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b574541]Move state message INIT +peer1.org1.example.com | [327 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [32e 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [815bf74a]sending state message INIT +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [261 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [316 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3261c785]Init get response status: 200 +peer0.org2.example.com | [32c 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b574541]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [328 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [32f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Received message INIT from shim +orderer.example.com | [262 01-13 06:14:10.21 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 | [317 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3261c785]Init succeeded. Sending COMPLETED +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [329 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [88abc0d1]Inside sendExecuteMessage. Message INIT +orderer.example.com | [263 01-13 06:14:10.21 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 | [264 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [330 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [815bf74a]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [318 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3261c785]Move state message COMPLETED +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:14:42.489] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [32d 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [265 01-13 06:14:10.21 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 | [32a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [331 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [266 01-13 06:14:10.21 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 | [267 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [319 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3261c785]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [32e 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b574541]sending state message INIT +peer1.org1.example.com | [32b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [88abc0d1]sendExecuteMsg trigger event INIT +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [268 01-13 06:14:10.21 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 | [269 01-13 06:14:10.21 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 | [26a 01-13 06:14:10.21 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 | [26b 01-13 06:14:10.21 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 | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer0.org1.example.com | [332 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [815bf74a]Received INIT, initializing chaincode +peer1.org1.example.com | [32c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88abc0d1]Move state message INIT +peer1.org2.example.com | [31a 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3261c785]send state message COMPLETED +peer0.org2.example.com | [32f 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b574541]Received message INIT from shim +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [333 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [32d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88abc0d1]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [31b 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3261c785]Received message COMPLETED from shim +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +explorer | -------------------- +peer0.org1.example.com | [334 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Init get response status: 200 +peer1.org1.example.com | [32e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [330 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b574541]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [31c 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3261c785]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer0.org2.example.com | [331 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [32f 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88abc0d1]sending state message INIT +peer0.org1.example.com | [335 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Init succeeded. Sending COMPLETED +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [31d 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3261c785-856a-40fe-a358-3a62c04dcb41]HandleMessage- COMPLETED. Notify +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org2.example.com | [332 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0b574541]Received INIT, initializing chaincode +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [336 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Move state message COMPLETED +peer1.org1.example.com | [330 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88abc0d1]Received message INIT from shim +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer1.org2.example.com | [31e 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3261c785-856a-40fe-a358-3a62c04dcb41, channelID:businesschannel +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [333 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer1.org1.example.com | [331 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [88abc0d1]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [337 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [815bf74a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [31f 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer0.org1.example.com | [338 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]send state message COMPLETED +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [334 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b574541]Init get response status: 200 +orderer.example.com | vA2BLfriqQ== +peer1.org2.example.com | [320 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [339 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [815bf74a]Received message COMPLETED from shim +peer1.org1.example.com | [332 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +explorer | at next (native) +peer0.org2.example.com | [335 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b574541]Init succeeded. Sending COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [321 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [3261c785-856a-40fe-a358-3a62c04dcb41] +peer0.org1.example.com | [33a 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [815bf74a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [26c 01-13 06:14:10.21 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 | [336 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b574541]Move state message COMPLETED +peer1.org2.example.com | [322 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [333 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [88abc0d1]Received INIT, initializing chaincode +peer0.org1.example.com | [33b 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [815bf74a-5573-4e5d-a6c9-8f93f1691593]HandleMessage- COMPLETED. Notify +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [337 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b574541]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [33c 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:815bf74a-5573-4e5d-a6c9-8f93f1691593, channelID:businesschannel +peer1.org2.example.com | [323 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b639ae22-2de1-4c30-bda0-cc4f9f7886f7] +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [334 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [338 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b574541]send state message COMPLETED +peer0.org1.example.com | [33d 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [324 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=b639ae22-2de1-4c30-bda0-cc4f9f7886f7,syscc=true,proposal=0x0,canname=qscc:1.1.0 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [33e 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org2.example.com | [339 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b574541]Received message COMPLETED from shim +peer1.org1.example.com | [335 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88abc0d1]Init get response status: 200 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [325 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer0.org1.example.com | [33f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [815bf74a-5573-4e5d-a6c9-8f93f1691593] +peer0.org2.example.com | [33a 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b574541]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [336 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88abc0d1]Init succeeded. Sending COMPLETED +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [326 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [340 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | [33b 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b574541-ab2a-477b-97d1-8ce56126c72d]HandleMessage- COMPLETED. Notify +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +peer0.org1.example.com | [341 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [33c 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0b574541-ab2a-477b-97d1-8ce56126c72d, channelID:businesschannel +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [342 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [337 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88abc0d1]Move state message COMPLETED +peer1.org2.example.com | [327 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org2.example.com | [33d 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | index: 0, +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer0.org1.example.com | [343 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +peer0.org2.example.com | [33e 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [338 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [88abc0d1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org1.example.com | [344 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [328 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b639ae22]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [33f 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [0b574541-ab2a-477b-97d1-8ce56126c72d] +peer0.org1.example.com | [345 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +peer1.org1.example.com | [339 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [88abc0d1]send state message COMPLETED +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +explorer | [2018-01-13 06:14:42.767] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [340 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org1.example.com | [346 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer1.org2.example.com | [329 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [33a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [88abc0d1]Received message COMPLETED from shim +peer0.org2.example.com | [341 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [347 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]Transaction completed. Sending COMPLETED +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [348 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]Move state message COMPLETED +peer0.org2.example.com | [342 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer1.org1.example.com | [33b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88abc0d1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [349 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17d79eb8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [343 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [32a 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b639ae22]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [34a 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]send state message COMPLETED +peer1.org1.example.com | [33c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [88abc0d1-c2ee-4f19-815b-67324787460f]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [344 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [26d 01-13 06:14:10.21 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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [34b 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17d79eb8]Received message COMPLETED from shim +peer0.org2.example.com | [345 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +peer1.org2.example.com | [32b 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b639ae22]Move state message INIT +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [33d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:88abc0d1-c2ee-4f19-815b-67324787460f, channelID:businesschannel +peer0.org1.example.com | [34c 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17d79eb8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [346 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +orderer.example.com | [26e 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [32c 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b639ae22]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [34d 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [347 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27fb1aeb]Transaction completed. Sending COMPLETED +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [33e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [26f 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [34e 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e, channelID: +peer0.org2.example.com | [348 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27fb1aeb]Move state message COMPLETED +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [33f 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [34f 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [349 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27fb1aeb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [32d 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at emitOne (events.js:96:13) +orderer.example.com | [270 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [350 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [34a 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27fb1aeb]send state message COMPLETED +peer1.org1.example.com | [340 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [88abc0d1-c2ee-4f19-815b-67324787460f] +peer1.org2.example.com | [32e 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b639ae22]sending state message INIT +peer0.org1.example.com | [351 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [34b 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27fb1aeb]Received message COMPLETED from shim +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [271 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [341 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [352 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40024) +peer1.org2.example.com | [32f 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b639ae22]Received message INIT from shim +peer0.org2.example.com | [34c 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27fb1aeb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [353 01-13 06:14:16.89 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 | [342 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [558730b2-d728-4615-baac-50703ca148b9] +orderer.example.com | [272 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [34d 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27fb1aebe8f60fca4220bac58fc7216fc9ab95fdf216433d5f015e1376d68f46]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [330 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b639ae22]Handling ChaincodeMessage of type: INIT(state:ready) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [354 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org1.example.com | [343 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=558730b2-d728-4615-baac-50703ca148b9,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org2.example.com | [34e 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:27fb1aebe8f60fca4220bac58fc7216fc9ab95fdf216433d5f015e1376d68f46, channelID: +peer0.org1.example.com | [355 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +orderer.example.com | [273 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [331 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [34f 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [356 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org1.example.com | [344 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +explorer | -------------------- +peer0.org2.example.com | [350 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [332 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b639ae22]Received INIT, initializing chaincode +orderer.example.com | [274 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [345 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [357 01-13 06:14:16.90 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 | [351 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [275 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [333 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [346 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [358 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org2.example.com | [352 01-13 06:14:11.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:58908) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [276 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [353 01-13 06:14:17.34 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 | [359 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer1.org2.example.com | [334 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b639ae22]Init get response status: 200 +peer1.org1.example.com | [347 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [558730b2]Inside sendExecuteMessage. Message INIT +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | [354 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | [277 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [335 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b639ae22]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [35a 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +peer1.org1.example.com | [348 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org2.example.com | [355 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +orderer.example.com | [278 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [35b 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [336 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b639ae22]Move state message COMPLETED +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [349 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [558730b2]sendExecuteMsg trigger event INIT +orderer.example.com | [279 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [35c 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [356 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org2.example.com | [337 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b639ae22]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [34a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [558730b2]Move state message INIT +peer0.org1.example.com | [35d 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4225d9bc0 env 0xc4226048d0 txn 0 +peer1.org2.example.com | [338 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b639ae22]send state message COMPLETED +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [27a 01-13 06:14:10.21 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 | [357 01-13 06:14:17.35 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 | [34b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [558730b2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [339 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b639ae22]Received message COMPLETED from shim +peer0.org1.example.com | [35e 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4226048d0 +peer1.org2.example.com | [33a 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b639ae22]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [34c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [35f 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer1.org2.example.com | [33b 01-13 06:14:12.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b639ae22-2de1-4c30-bda0-cc4f9f7886f7]HandleMessage- COMPLETED. Notify +orderer.example.com | [27b 01-13 06:14:10.21 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----- +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org2.example.com | [358 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org1.example.com | [360 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [33c 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b639ae22-2de1-4c30-bda0-cc4f9f7886f7, channelID:businesschannel +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [34d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [558730b2]sending state message INIT +peer0.org1.example.com | [361 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [33d 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [359 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +explorer | errno: 1146, +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [33e 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org2.example.com | [33f 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [b639ae22-2de1-4c30-bda0-cc4f9f7886f7] +peer0.org1.example.com | [362 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [35a 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +peer1.org1.example.com | [34e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [558730b2]Received message INIT from shim +peer1.org2.example.com | [340 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org1.example.com | [363 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [34f 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [558730b2]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer0.org2.example.com | [35b 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer1.org2.example.com | [341 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +explorer | sqlState: '42S02', +peer0.org1.example.com | [364 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [350 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [342 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [35c 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +explorer | index: 0, +peer0.org1.example.com | [365 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422621000, header channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer1.org2.example.com | [343 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +peer1.org1.example.com | [351 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [558730b2]Received INIT, initializing chaincode +peer0.org2.example.com | [35d 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [366 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [352 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [558730b2]Init get response status: 200 +peer1.org2.example.com | [344 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [35e 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +explorer | [2018-01-13 06:14:43.490] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [345 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +peer1.org1.example.com | [353 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [558730b2]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [367 01-13 06:14:16.92 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 | [346 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +peer0.org2.example.com | [35f 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421da1480 env 0xc421a34930 txn 0 +peer1.org2.example.com | [347 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [229e3194]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [354 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [558730b2]Move state message COMPLETED +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [368 01-13 06:14:16.92 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 | [348 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [229e3194]Move state message COMPLETED +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [369 01-13 06:14:16.92 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 | [36a 01-13 06:14:16.92 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 | [36c 01-13 06:14:16.93 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 | [355 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [558730b2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [349 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [229e3194]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [360 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a34930 +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [36d 01-13 06:14:16.93 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [34a 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [229e3194]send state message COMPLETED +peer1.org1.example.com | [356 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [558730b2]send state message COMPLETED +peer0.org2.example.com | [361 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer1.org2.example.com | [34b 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [229e3194]Received message COMPLETED from shim +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [36e 01-13 06:14:16.93 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 | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [362 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [36f 01-13 06:14:16.93 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 | [34c 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [229e3194]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer1.org1.example.com | [357 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [558730b2]Received message COMPLETED from shim +explorer | -------------------- +peer0.org1.example.com | [370 01-13 06:14:16.93 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 | [34d 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [229e3194a3e71ae97a64a52dc6d90dfe5d21fa641bd7737c2c4e4008db4536c0]HandleMessage- COMPLETED. Notify +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [358 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [558730b2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [359 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [558730b2-d728-4615-baac-50703ca148b9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [363 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [34e 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:229e3194a3e71ae97a64a52dc6d90dfe5d21fa641bd7737c2c4e4008db4536c0, channelID: +orderer.example.com | [27c 01-13 06:14:10.21 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----- +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [371 01-13 06:14:16.93 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 | [35a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:558730b2-d728-4615-baac-50703ca148b9, channelID:businesschannel +peer0.org2.example.com | [364 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer1.org2.example.com | [34f 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [372 01-13 06:14:16.93 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 | [35b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [350 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [373 01-13 06:14:16.93 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 | [35c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org2.example.com | [365 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [351 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [374 01-13 06:14:16.93 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 | [35d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [558730b2-d728-4615-baac-50703ca148b9] +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [366 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [352 01-13 06:14:12.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:57046) +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [35e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at next (native) +peer0.org1.example.com | [375 01-13 06:14:16.93 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 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [367 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4218d6000, header channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer1.org1.example.com | [35f 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4caec11a-7033-4d5f-bfec-aa5873c5ee88] +peer0.org1.example.com | [376 01-13 06:14:16.93 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 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [377 01-13 06:14:16.93 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 | [368 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [378 01-13 06:14:16.93 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 | [360 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=4caec11a-7033-4d5f-bfec-aa5873c5ee88,syscc=true,proposal=0x0,canname=qscc:1.1.0 +peer1.org2.example.com | [353 01-13 06:14:18.74 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 | [369 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [361 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [354 01-13 06:14:18.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org1.example.com | [362 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [36a 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org1.example.com | [379 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer1.org1.example.com | [363 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org2.example.com | [355 01-13 06:14:18.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +explorer | sqlState: '42S02', +peer0.org2.example.com | [36b 01-13 06:14:17.37 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 | [37a 01-13 06:14:16.94 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 | [364 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4caec11a]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [356 01-13 06:14:18.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +explorer | index: 0, +peer0.org2.example.com | [36c 01-13 06:14:17.37 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 | [37b 01-13 06:14:16.94 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 | [357 01-13 06:14:18.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer1.org1.example.com | [365 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [36d 01-13 06:14:17.37 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 | [37c 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | [2018-01-13 06:14:43.807] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer1.org1.example.com | [366 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4caec11a]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [358 01-13 06:14:18.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [37d 01-13 06:14:16.94 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 | [367 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4caec11a]Move state message INIT +peer0.org2.example.com | [36e 01-13 06:14:17.37 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 | [359 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [37e 01-13 06:14:16.94 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 | [368 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4caec11a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [36f 01-13 06:14:17.37 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 | -----END CERTIFICATE----- +peer0.org1.example.com | [37f 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [35a 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +peer0.org2.example.com | [370 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [369 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [27d 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | [35b 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [380 01-13 06:14:16.94 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 | [371 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [36a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4caec11a]sending state message INIT +orderer.example.com | [27e 01-13 06:14:10.21 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) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [36b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4caec11a]Received message INIT from shim +peer1.org2.example.com | [35c 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +explorer | at emitOne (events.js:96:13) +orderer.example.com | [27f 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org2.example.com | [372 01-13 06:14:17.37 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 | [381 01-13 06:14:16.94 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 | [382 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [36c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4caec11a]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [35d 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42191b400 env 0xc42195a510 txn 0 +peer0.org2.example.com | [373 01-13 06:14:17.37 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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [383 01-13 06:14:16.94 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 | [384 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [36d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [36e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4caec11a]Received INIT, initializing chaincode +peer1.org2.example.com | [35e 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42195a510 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [280 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [374 01-13 06:14:17.37 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 | [36f 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +explorer | -------------------- +peer1.org2.example.com | [35f 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer0.org1.example.com | [385 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [281 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [375 01-13 06:14:17.37 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [360 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [386 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [370 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4caec11a]Init get response status: 200 +orderer.example.com | [282 01-13 06:14:10.21 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org1.example.com | [371 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4caec11a]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [361 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [376 01-13 06:14:17.37 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 | [387 01-13 06:14:16.94 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 | [372 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4caec11a]Move state message COMPLETED +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [377 01-13 06:14:17.37 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 | [362 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [283 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org1.example.com | [388 01-13 06:14:16.94 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 | [378 01-13 06:14:17.37 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 | [373 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4caec11a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [363 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | [379 01-13 06:14:17.37 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 | [374 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4caec11a]send state message COMPLETED +orderer.example.com | [284 01-13 06:14:10.21 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 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org1.example.com | [389 01-13 06:14:16.94 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 | [37a 01-13 06:14:17.37 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 | [375 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4caec11a]Received message COMPLETED from shim +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +orderer.example.com | [285 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org2.example.com | [364 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [36b 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer0.org2.example.com | [37b 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [376 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4caec11a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [365 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421d3b000, header channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer0.org1.example.com | [38b 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +orderer.example.com | [286 01-13 06:14:10.21 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 +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [366 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [377 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4caec11a-7033-4d5f-bfec-aa5873c5ee88]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [38a 01-13 06:14:16.94 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 | [367 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | [287 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org1.example.com | [38c 01-13 06:14:16.94 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 | [37c 01-13 06:14:17.37 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 | [368 01-13 06:14:18.80 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 | [378 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4caec11a-7033-4d5f-bfec-aa5873c5ee88, channelID:businesschannel +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | [38d 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [288 01-13 06:14:10.21 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 +explorer | errno: 1146, +peer0.org2.example.com | [37d 01-13 06:14:17.37 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 | [38e 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [379 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +orderer.example.com | [289 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer1.org2.example.com | [369 01-13 06:14:18.80 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 | [37a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [38f 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [37e 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | sqlState: '42S02', +peer1.org2.example.com | [36a 01-13 06:14:18.80 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 | [28a 01-13 06:14:10.21 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 +peer1.org1.example.com | [37b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [4caec11a-7033-4d5f-bfec-aa5873c5ee88] +peer0.org2.example.com | [37f 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | index: 0, +peer0.org1.example.com | [390 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [36b 01-13 06:14:18.80 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 | [37c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +peer0.org2.example.com | [380 01-13 06:14:17.37 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 | [28b 01-13 06:14:10.21 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 +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org1.example.com | [391 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [37d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [381 01-13 06:14:17.37 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 | [36c 01-13 06:14:18.81 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 +explorer | [2018-01-13 06:14:44.491] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [36d 01-13 06:14:18.81 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 | [392 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [28c 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer1.org1.example.com | [37e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [37f 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +peer1.org2.example.com | [36e 01-13 06:14:18.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [382 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [393 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [28d 01-13 06:14:10.21 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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [380 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [383 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [36f 01-13 06:14:18.81 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 | [394 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [381 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +orderer.example.com | [28e 01-13 06:14:10.21 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 +peer1.org2.example.com | [370 01-13 06:14:18.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [384 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [382 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +orderer.example.com | [28f 01-13 06:14:10.21 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 +peer0.org1.example.com | [395 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [385 01-13 06:14:17.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" +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [383 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3bfca80]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [371 01-13 06:14:18.81 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 | [290 01-13 06:14:10.21 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 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [396 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [386 01-13 06:14:17.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" +peer1.org1.example.com | [384 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3bfca80]Move state message COMPLETED +peer1.org2.example.com | [372 01-13 06:14:18.81 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [385 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3bfca80]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +peer1.org1.example.com | [386 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3bfca80]send state message COMPLETED +peer0.org2.example.com | [387 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [373 01-13 06:14:18.81 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [291 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [387 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3bfca80]Received message COMPLETED from shim +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [388 01-13 06:14:17.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 | [292 01-13 06:14:10.21 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 +peer1.org2.example.com | [374 01-13 06:14:18.81 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 | [397 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [388 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b3bfca80]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [389 01-13 06:14:17.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 | [293 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [375 01-13 06:14:18.81 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 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [389 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b3bfca80b90c472d5dd547466b3dd98ec0a1422e64e4e0e215ded0ac248c3e1c]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [38a 01-13 06:14:17.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 | [398 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [38a 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b3bfca80b90c472d5dd547466b3dd98ec0a1422e64e4e0e215ded0ac248c3e1c, channelID: +orderer.example.com | [294 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [376 01-13 06:14:18.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org1.example.com | [38b 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [399 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [295 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [38b 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | at next (native) +peer1.org1.example.com | [38c 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [377 01-13 06:14:18.81 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 | [39a 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [39b 01-13 06:14:16.95 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 | [38c 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [38d 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [296 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [378 01-13 06:14:18.81 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 | [39c 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [38d 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [38e 01-13 06:14:11.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:38718) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | [297 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [38f 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [39d 01-13 06:14:16.95 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 | [38e 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [379 01-13 06:14:18.81 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer1.org1.example.com | [390 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [298 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [39e 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [391 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4227536e0 env 0xc42273efc0 txn 0 +peer1.org2.example.com | [37a 01-13 06:14:18.82 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 | [38f 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [299 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +explorer | errno: 1146, +peer0.org1.example.com | [39f 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [392 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42273efc0 +orderer.example.com | [29a 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [37b 01-13 06:14:18.82 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 | [37c 01-13 06:14:18.82 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 | [390 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3a0 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +orderer.example.com | [29b 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [393 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer0.org2.example.com | [391 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [37e 01-13 06:14:18.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +peer0.org1.example.com | [3a1 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | sqlState: '42S02', +orderer.example.com | [29c 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [394 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [392 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [3a2 01-13 06:14:16.95 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 | [37d 01-13 06:14:18.82 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +explorer | index: 0, +peer1.org1.example.com | [395 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [393 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [29d 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [3a3 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [37f 01-13 06:14:18.83 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org2.example.com | [394 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [396 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +orderer.example.com | [29e 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [380 01-13 06:14:18.83 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [3a4 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | [2018-01-13 06:14:44.857] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [395 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [397 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [29f 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [381 01-13 06:14:18.83 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [3a5 01-13 06:14:16.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.org2.example.com | [396 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [2a0 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org1.example.com | [398 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [3a6 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [382 01-13 06:14:18.83 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 | [2a1 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [397 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [383 01-13 06:14:18.83 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 | [398 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [3a7 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [2a2 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [399 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4227ac000, header channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +peer1.org2.example.com | [384 01-13 06:14:18.83 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 | [399 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [3a8 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2a3 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [385 01-13 06:14:18.83 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 | [39a 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [39a 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [3a9 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2a4 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org2.example.com | [386 01-13 06:14:18.83 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 | [39b 01-13 06:14:16.92 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 | [39b 01-13 06:14:17.38 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 | [3aa 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [387 01-13 06:14:18.83 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 | [3ab 01-13 06:14:16.96 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 | [39c 01-13 06:14:16.92 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 | [39c 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2a5 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [388 01-13 06:14:18.83 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 | [3ac 01-13 06:14:16.96 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 | [39d 01-13 06:14:16.93 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 | [2a6 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [39d 01-13 06:14:17.38 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 | [389 01-13 06:14:18.83 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [3ad 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [2a7 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [39e 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [39e 01-13 06:14:16.93 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 | [38a 01-13 06:14:18.84 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 | [3ae 01-13 06:14:16.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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [39f 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [38b 01-13 06:14:18.84 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 | [39f 01-13 06:14:16.93 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 | [3af 01-13 06:14:16.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 +orderer.example.com | [2a8 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [3a0 01-13 06:14:17.38 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 | [38c 01-13 06:14:18.84 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 | [3b0 01-13 06:14:16.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.org2.example.com | [3a1 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [3a0 01-13 06:14:16.93 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 +explorer | -------------------- +orderer.example.com | [2a9 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [38d 01-13 06:14:18.84 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 | [3a2 01-13 06:14:17.38 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 | [3b1 01-13 06:14:16.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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [3a1 01-13 06:14:16.93 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 | [2aa 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3b2 01-13 06:14:16.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.org2.example.com | [3a3 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [38e 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [2ab 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3a2 01-13 06:14:16.93 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 | [3a4 01-13 06:14:17.38 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 | [3b3 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [2ac 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org2.example.com | [38f 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [3a3 01-13 06:14:16.93 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 | [3b4 01-13 06:14:16.97 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 | [2ad 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [390 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [3a5 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [2ae 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [3b5 01-13 06:14:16.97 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 | [391 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [3a4 01-13 06:14:16.93 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 | [2af 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org1.example.com | [3b6 01-13 06:14:16.97 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 | [392 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [2b0 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [3a6 01-13 06:14:17.38 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 | [3b7 01-13 06:14:16.97 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 | [2b1 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [393 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3a5 01-13 06:14:16.93 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 | [3b8 01-13 06:14:16.97 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 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +orderer.example.com | [2b2 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [3a7 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [394 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [3b9 01-13 06:14:16.97 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 | [2b3 01-13 06:14:10.22 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 +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [3a6 01-13 06:14:16.93 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 | [3ba 01-13 06:14:16.97 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 | [2b4 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [3a8 01-13 06:14:17.38 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 | [3bb 01-13 06:14:16.97 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 | [395 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [2b5 01-13 06:14:10.22 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 +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [3a7 01-13 06:14:16.93 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 | [3bc 01-13 06:14:16.97 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 | [2b6 01-13 06:14:10.22 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 +peer1.org2.example.com | [396 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [3a9 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3bd 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [2b7 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [3a8 01-13 06:14:16.93 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 | [3aa 01-13 06:14:17.38 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 | [3be 01-13 06:14:16.97 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 | [2b8 01-13 06:14:10.22 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 +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org2.example.com | [397 01-13 06:14:18.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [3a9 01-13 06:14:16.93 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 | [3ab 01-13 06:14:17.38 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 | [3bf 01-13 06:14:16.97 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 | [2b9 01-13 06:14:10.22 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 +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [398 01-13 06:14:18.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [3aa 01-13 06:14:16.93 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 | [3c0 01-13 06:14:16.97 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 | [2ba 01-13 06:14:10.22 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.8:50072 +peer1.org2.example.com | [399 01-13 06:14:18.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +explorer | errno: 1146, +peer0.org2.example.com | [3ac 01-13 06:14:17.38 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 | [3c1 01-13 06:14:16.97 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 | [3ab 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +orderer.example.com | [2bb 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [3c2 01-13 06:14:16.97 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 | [3c3 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org1.example.com | [3c4 01-13 06:14:16.97 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 | [39a 01-13 06:14:18.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3ad 01-13 06:14:17.38 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 | [3c5 01-13 06:14:16.97 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 | [3ac 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [2bc 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | sqlState: '42S02', +peer0.org2.example.com | [3ae 01-13 06:14:17.38 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 | [3c6 01-13 06:14:16.97 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 | [39b 01-13 06:14:18.85 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 | [3ad 01-13 06:14:16.93 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 | [2bd 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3c7 01-13 06:14:16.97 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 | [3af 01-13 06:14:17.38 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 +explorer | index: 0, +peer0.org1.example.com | [3c8 01-13 06:14:16.97 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 | [3ae 01-13 06:14:16.93 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 | [39c 01-13 06:14:18.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2be 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org2.example.com | [3b0 01-13 06:14:17.38 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 | [3c9 01-13 06:14:16.97 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 | [3af 01-13 06:14:16.93 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 | [2bf 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +explorer | [2018-01-13 06:14:45.493] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [39d 01-13 06:14:18.85 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 | [3ca 01-13 06:14:16.97 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 | [3b0 01-13 06:14:16.93 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 | [3b1 01-13 06:14:17.38 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 | [2c0 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [3cb 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [39e 01-13 06:14:18.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [3b1 01-13 06:14:16.93 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 | [3cc 01-13 06:14:16.97 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 | [3b2 01-13 06:14:17.38 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 | [3cd 01-13 06:14:16.97 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 | [2c1 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [39f 01-13 06:14:18.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3b2 01-13 06:14:16.93 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 | [3ce 01-13 06:14:16.97 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 | [3b3 01-13 06:14:17.38 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 | [2c2 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [3a0 01-13 06:14:18.86 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 | [3b3 01-13 06:14:16.93 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 | [3cf 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [3b4 01-13 06:14:17.38 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 | [2c3 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [3a1 01-13 06:14:18.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [3b4 01-13 06:14:16.93 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 | [3d0 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [2c4 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [3b5 01-13 06:14:17.38 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 | [3a2 01-13 06:14:18.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [3b5 01-13 06:14:16.93 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 | [2c5 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [3d1 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [3b6 01-13 06:14:17.38 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 | [3d2 01-13 06:14:16.97 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 | [3a3 01-13 06:14:18.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3b6 01-13 06:14:16.93 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 | [3b7 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [2c6 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [3d3 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [3b8 01-13 06:14:17.38 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 | [3a4 01-13 06:14:18.87 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 | [3b7 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [3b9 01-13 06:14:17.38 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 | [2c7 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [3d4 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [3a5 01-13 06:14:18.87 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 | [3ba 01-13 06:14:17.38 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 | [3b8 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [2c8 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [3d5 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [3bb 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [3b9 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [3a6 01-13 06:14:18.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [2c9 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3bc 01-13 06:14:17.38 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 | [3d6 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [3ba 01-13 06:14:16.94 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 | [3bd 01-13 06:14:17.38 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 | [2ca 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [3a7 01-13 06:14:18.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3d7 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [3be 01-13 06:14:17.38 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [2cb 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [3bf 01-13 06:14:17.38 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 | [3bb 01-13 06:14:16.94 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 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [3a8 01-13 06:14:18.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2cc 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +explorer | -------------------- +peer0.org2.example.com | [3c0 01-13 06:14:17.38 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 | [3d9 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [3bc 01-13 06:14:16.94 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 | [3a9 01-13 06:14:18.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [2cd 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org2.example.com | [3c1 01-13 06:14:17.38 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 | [3bd 01-13 06:14:16.94 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 | [3aa 01-13 06:14:18.88 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 | [3da 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +orderer.example.com | [2ce 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [3c2 01-13 06:14:17.38 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [3c3 01-13 06:14:17.38 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 | [3db 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [3c4 01-13 06:14:17.38 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 | [3ab 01-13 06:14:18.88 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 | [3be 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [3c5 01-13 06:14:17.38 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [3bf 01-13 06:14:16.94 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 | [3c6 01-13 06:14:17.38 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 | [3dc 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [3ac 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [3c0 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [3c7 01-13 06:14:17.38 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 | [3ad 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [3dd 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer0.org2.example.com | [3c8 01-13 06:14:17.38 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 | [3c1 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [3ae 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [3de 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [3c9 01-13 06:14:17.38 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 | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [3af 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [3c2 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3df 01-13 06:14:17.04 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 | [3ca 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [3b0 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [3cb 01-13 06:14:17.38 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 | [3c3 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [3e0 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +explorer | at next (native) +peer0.org2.example.com | [3cc 01-13 06:14:17.38 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 | [3c4 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [3b1 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [3cd 01-13 06:14:17.38 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 | [3c5 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [3b2 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [3e1 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4225d9bc0 env 0xc4226048d0 txn 0 +peer0.org2.example.com | [3ce 01-13 06:14:17.38 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 | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [3c6 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [3cf 01-13 06:14:17.38 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 | [3e2 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [3b3 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org1.example.com | [3c7 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [3d0 01-13 06:14:17.38 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org2.example.com | [3b4 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [3e3 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [3c8 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [3d1 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer1.org2.example.com | [3b5 01-13 06:14:18.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3e4 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +explorer | errno: 1146, +peer1.org1.example.com | [3c9 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [3d2 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer0.org1.example.com | [3e5 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org1.example.com | [3e6 01-13 06:14:17.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] +peer1.org2.example.com | [3b6 01-13 06:14:18.90 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 | [3ca 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [3d3 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer1.org2.example.com | [3b7 01-13 06:14:18.90 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 +explorer | sqlState: '42S02', +peer0.org1.example.com | [3e7 01-13 06:14:17.05 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 | [3d4 01-13 06:14:17.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [3b8 01-13 06:14:18.90 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 +explorer | index: 0, +peer1.org1.example.com | [3cb 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [3e8 01-13 06:14:17.05 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 | [3b9 01-13 06:14:18.90 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 | -----END CERTIFICATE----- +peer0.org2.example.com | [3d5 01-13 06:14:17.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [3cc 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [3ba 01-13 06:14:18.90 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 | [3e9 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +orderer.example.com | [2cf 01-13 06:14:10.23 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----- +explorer | [2018-01-13 06:14:45.909] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [3d6 01-13 06:14:17.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [3cd 01-13 06:14:16.94 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 | [3bb 01-13 06:14:18.90 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 | [3ea 01-13 06:14:17.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] +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [3d7 01-13 06:14:17.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [3bc 01-13 06:14:18.90 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 | [3eb 01-13 06:14:17.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{} +peer1.org1.example.com | [3ce 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [3bd 01-13 06:14:18.90 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 | [3d8 01-13 06:14:17.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [3ec 01-13 06:14:17.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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [3be 01-13 06:14:18.90 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 | [3cf 01-13 06:14:16.94 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 | [3d9 01-13 06:14:17.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [3bf 01-13 06:14:18.90 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 | [3ed 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer1.org2.example.com | [3c0 01-13 06:14:18.90 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 | [3c1 01-13 06:14:18.90 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 | [3ee 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [3da 01-13 06:14:17.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [3c2 01-13 06:14:18.90 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 | [3d0 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [3ef 01-13 06:14:17.05 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" > +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [3db 01-13 06:14:17.40 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 | [3c3 01-13 06:14:18.90 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 | [3f0 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [3d1 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3dc 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [3c4 01-13 06:14:18.90 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 | [3f1 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [3c5 01-13 06:14:18.90 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 | [3f2 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [3dd 01-13 06:14:17.41 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 | [3d2 01-13 06:14:16.94 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 | [3f3 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [3c6 01-13 06:14:18.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [3f4 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [3de 01-13 06:14:17.41 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 | [3d3 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [3c7 01-13 06:14:18.90 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 | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [3f5 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3df 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +explorer | -------------------- +peer1.org2.example.com | [3c8 01-13 06:14:18.90 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 | [3d4 01-13 06:14:16.94 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 | [3f6 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer0.org2.example.com | [3e0 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [3c9 01-13 06:14:18.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [3f7 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [3d5 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3ca 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [3e1 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421da1480 env 0xc421a34930 txn 0 +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org1.example.com | [3f8 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [3cb 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [3e2 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org1.example.com | [3f9 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [3d6 01-13 06:14:16.94 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 | [3cc 01-13 06:14:18.91 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 | [3fa 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [3e3 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [3cd 01-13 06:14:18.91 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 | [3fb 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [3d7 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [2d0 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50072, hangup +peer0.org2.example.com | [3e4 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [3fc 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [3ce 01-13 06:14:18.91 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 | [3d8 01-13 06:14:16.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 | [3fd 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [3cf 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [2d2 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [3fe 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3d9 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | [3e5 01-13 06:14:17.41 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 | [3ff 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [2d1 01-13 06:14:10.23 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 +peer1.org2.example.com | [3d0 01-13 06:14:18.91 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 | [3da 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org1.example.com | [400 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [3e6 01-13 06:14:17.41 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 | [3d1 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [2d3 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [3db 01-13 06:14:16.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 | [401 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [3e7 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +orderer.example.com | [2d5 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.8:50070 because channel businesschannel not found +peer1.org2.example.com | [3d2 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [3dc 01-13 06:14:16.95 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 | [402 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [3d3 01-13 06:14:18.91 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 | [3e8 01-13 06:14:17.41 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 | [3dd 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | [2d4 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [403 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3e9 01-13 06:14:17.41 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 | [3d4 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [3de 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [2d6 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [404 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [3ea 01-13 06:14:17.41 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 | [3d5 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [405 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3df 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | [2d7 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3eb 01-13 06:14:17.41 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 | [3e0 01-13 06:14:16.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 | [406 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [2d8 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [3d6 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org2.example.com | [3ec 01-13 06:14:17.41 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 | [407 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [3e1 01-13 06:14:16.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 +explorer | errno: 1146, +orderer.example.com | [2da 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3d7 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [408 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [3ed 01-13 06:14:17.41 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 = [] +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +orderer.example.com | [2db 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [3d8 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [409 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [3e2 01-13 06:14:16.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.org2.example.com | [3ee 01-13 06:14:17.41 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [2dc 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [3d9 01-13 06:14:18.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +explorer | sqlState: '42S02', +peer1.org1.example.com | [3e3 01-13 06:14:16.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 | [40a 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2dd 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [3da 01-13 06:14:18.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [3ef 01-13 06:14:17.41 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 | [3e4 01-13 06:14:16.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 +explorer | index: 0, +peer0.org1.example.com | [40b 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2de 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [3f0 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [3db 01-13 06:14:18.92 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [3e5 01-13 06:14:16.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 | [40c 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [2d9 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50070 +peer0.org2.example.com | [3f1 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [3dc 01-13 06:14:18.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [3e6 01-13 06:14:16.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 | [40d 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3f2 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | [2018-01-13 06:14:46.494] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | [2df 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [3f3 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [3dd 01-13 06:14:18.95 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 | [40e 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [3e7 01-13 06:14:16.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 +orderer.example.com | [2e0 01-13 06:14:10.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.8:50070 +peer0.org2.example.com | [3f4 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [40f 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [3e8 01-13 06:14:16.97 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 | [2e1 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.8:50070, hangup +peer0.org2.example.com | [3f5 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [3de 01-13 06:14:18.95 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 | [410 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [3e9 01-13 06:14:16.97 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 | [3f6 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [2e2 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [411 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [3df 01-13 06:14:18.95 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 | [3f7 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [3ea 01-13 06:14:16.97 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 | [3f8 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [412 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [3f9 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [3e0 01-13 06:14:18.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +orderer.example.com | [2e3 01-13 06:14:10.23 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----- +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [3fa 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [3eb 01-13 06:14:16.97 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 | [3e1 01-13 06:14:18.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42191b400 env 0xc42195a510 txn 0 +peer0.org1.example.com | [413 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [3fb 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [3e2 01-13 06:14:18.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [414 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [3fc 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3ec 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [415 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [3fd 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [3e3 01-13 06:14:18.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [3ed 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [416 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [3fe 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3ee 01-13 06:14:16.97 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 | [417 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [3e4 01-13 06:14:18.96 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [3ff 01-13 06:14:17.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [418 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [3ef 01-13 06:14:16.97 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 | [400 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [3e5 01-13 06:14:18.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [419 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [401 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [41a 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [3e6 01-13 06:14:18.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] +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | [3f0 01-13 06:14:16.97 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 +explorer | -------------------- +peer0.org2.example.com | [402 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [3e7 01-13 06:14:18.96 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 | [3f1 01-13 06:14:16.97 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 | [41b 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer0.org2.example.com | [403 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [3e8 01-13 06:14:18.96 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 | [3f2 01-13 06:14:16.97 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 | [3f3 01-13 06:14:16.97 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [41c 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [3e9 01-13 06:14:18.96 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 | [404 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [3f4 01-13 06:14:16.97 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 | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [3f5 01-13 06:14:16.97 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 | [41d 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [3ea 01-13 06:14:18.96 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 | [3f6 01-13 06:14:16.97 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 | [405 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [41e 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [3f7 01-13 06:14:16.97 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 | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org2.example.com | [406 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [3eb 01-13 06:14:18.96 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{} +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [3f8 01-13 06:14:16.97 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 | [41f 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer0.org2.example.com | [407 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [3ec 01-13 06:14:18.96 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 | [3f9 01-13 06:14:16.97 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 | [420 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer1.org1.example.com | [3fa 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [3ed 01-13 06:14:18.96 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 | [408 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [3fb 01-13 06:14:16.97 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 | [421 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | vA2BLfriqQ== +peer1.org2.example.com | [3ee 01-13 06:14:18.96 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org1.example.com | [3fc 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +explorer | at next (native) +peer0.org1.example.com | [422 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [409 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +orderer.example.com | [2e4 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [423 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [3fd 01-13 06:14:16.97 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 | [3ef 01-13 06:14:18.97 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 | [40a 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [3fe 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [3f0 01-13 06:14:18.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [424 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [3ff 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [40b 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [3f1 01-13 06:14:18.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [400 01-13 06:14:16.97 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 | [3f2 01-13 06:14:18.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [40c 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [425 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +explorer | errno: 1146, +peer1.org1.example.com | [401 01-13 06:14:16.97 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 | [3f3 01-13 06:14:18.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [40d 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [426 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [402 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org2.example.com | [3f4 01-13 06:14:18.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [3f5 01-13 06:14:18.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [403 01-13 06:14:16.97 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 | [40e 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | sqlState: '42S02', +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer1.org2.example.com | [3f6 01-13 06:14:18.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [427 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [404 01-13 06:14:16.97 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 | [3f7 01-13 06:14:18.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [428 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | index: 0, +peer1.org1.example.com | [405 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [3f8 01-13 06:14:18.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [406 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [429 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [40f 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org2.example.com | [3f9 01-13 06:14:18.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [407 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [42a 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [3fa 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [408 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [42b 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +explorer | [2018-01-13 06:14:46.951] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer1.org2.example.com | [3fb 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [409 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [410 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [42c 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [3fc 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [40a 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org2.example.com | [411 01-13 06:14:17.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [42d 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [3fd 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [40b 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +peer1.org2.example.com | [3fe 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [412 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [42e 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [40c 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org2.example.com | [3ff 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer0.org2.example.com | [413 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [42f 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [40d 01-13 06:14:16.98 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 +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org2.example.com | [414 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [400 01-13 06:14:19.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [40e 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [430 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer0.org2.example.com | [415 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [401 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [431 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [40f 01-13 06:14:17.00 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [416 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [432 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [410 01-13 06:14:17.00 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 | [402 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | -----END CERTIFICATE----- +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [433 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [417 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [403 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [411 01-13 06:14:17.00 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 | [434 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [2e5 01-13 06:14:10.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 Org2MSP validating identity +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [404 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [412 01-13 06:14:17.01 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 | [435 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [418 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +explorer | -------------------- +orderer.example.com | [2e6 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [436 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [413 01-13 06:14:17.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [405 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [419 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [437 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [414 01-13 06:14:17.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4227536e0 env 0xc42273efc0 txn 0 +orderer.example.com | [2e7 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [406 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [438 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [415 01-13 06:14:17.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [439 01-13 06:14:17.07 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 | [2e8 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [41a 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [416 01-13 06:14:17.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [407 01-13 06:14:19.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [43a 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [41b 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [2e9 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [417 01-13 06:14:17.02 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [43b 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | [41c 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [43c 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [2ea 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [418 01-13 06:14:17.02 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 | [408 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | [419 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [2eb 01-13 06:14:10.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 +peer0.org1.example.com | [43d 01-13 06:14:17.07 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 | [41d 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [43e 01-13 06:14:17.07 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 | [41a 01-13 06:14:17.03 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 | [409 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org1.example.com | [43f 01-13 06:14:17.07 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{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= +peer0.org2.example.com | [41e 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [2ec 01-13 06:14:10.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 +peer1.org1.example.com | [41b 01-13 06:14:17.03 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 | [40a 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | [2ed 01-13 06:14:10.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 +peer0.org2.example.com | [41f 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [41c 01-13 06:14:17.03 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 | ] +peer1.org2.example.com | [40b 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [420 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [421 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [440 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx ID: [] to index +peer1.org1.example.com | [41d 01-13 06:14:17.03 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] +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org2.example.com | [40c 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [2ee 01-13 06:14:10.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 +peer0.org1.example.com | [441 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [422 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [41e 01-13 06:14:17.03 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{} +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [40d 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [442 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26080], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [41f 01-13 06:14:17.03 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 +explorer | errno: 1146, +peer0.org2.example.com | [423 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [2ef 01-13 06:14:10.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----- +peer0.org1.example.com | [443 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [40e 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [424 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [444 01-13 06:14:17.08 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 | [420 01-13 06:14:17.03 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +explorer | sqlState: '42S02', +peer1.org2.example.com | [40f 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [445 01-13 06:14:17.08 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 | [421 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +explorer | index: 0, +peer0.org2.example.com | [425 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [446 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [410 01-13 06:14:19.02 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [422 01-13 06:14:17.03 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 | [426 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [447 01-13 06:14:17.08 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 | [411 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +explorer | [2018-01-13 06:14:47.495] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [448 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [423 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [449 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [427 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [424 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [44a 01-13 06:14:17.08 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 | [412 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [425 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [428 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [44b 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [413 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [426 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [44c 01-13 06:14:17.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 [1] with [1] transactions +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [429 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [414 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [427 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [44d 01-13 06:14:17.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 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [415 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [42a 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [428 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [44e 01-13 06:14:17.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 [1] +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org2.example.com | [42b 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [429 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [44f 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [416 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [450 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [451 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [452 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [42a 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +peer0.org2.example.com | [42c 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [453 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [42b 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [417 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [454 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [42d 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [42c 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | -------------------- +peer0.org1.example.com | [455 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [418 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +peer0.org2.example.com | [42e 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [42d 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [456 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +peer1.org2.example.com | [419 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [42e 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [42f 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [457 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [430 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [42f 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +peer1.org2.example.com | [41a 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [431 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [458 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [432 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +orderer.example.com | oQmWQsjpiQ== +peer1.org1.example.com | [430 01-13 06:14:17.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [41b 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org1.example.com | [459 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [431 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [433 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | at next (native) +peer1.org2.example.com | [41c 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [45a 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [432 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org2.example.com | [41d 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [2f0 01-13 06:14:10.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----- +peer0.org2.example.com | [434 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [433 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [45b 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421b12d80 env 0xc421c7a6c0 txn 0 +peer0.org2.example.com | [435 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [41e 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [436 01-13 06:14:17.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 +peer0.org1.example.com | [45c 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c7a6c0 +peer1.org1.example.com | [434 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [437 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [45d 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +peer1.org2.example.com | [41f 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +explorer | errno: 1146, +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [438 01-13 06:14:17.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 [] +peer0.org1.example.com | [45e 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [435 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org2.example.com | [420 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [439 01-13 06:14:17.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 +explorer | sqlState: '42S02', +peer1.org2.example.com | [421 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [45f 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [436 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [43a 01-13 06:14:17.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +explorer | index: 0, +peer0.org2.example.com | [43b 01-13 06:14:17.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 | [422 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [460 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer1.org1.example.com | [437 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org2.example.com | [43c 01-13 06:14:17.44 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 | [438 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [461 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [423 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +explorer | [2018-01-13 06:14:48.006] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [43d 01-13 06:14:17.45 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 | [439 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [462 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [43e 01-13 06:14:17.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 | [424 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [43f 01-13 06:14:17.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{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= +peer0.org1.example.com | [463 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4224de000, header channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +peer1.org1.example.com | [43a 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [425 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12093 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [464 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [43b 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | ] +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [426 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [465 01-13 06:14:17.09 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 | [43c 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [440 01-13 06:14:17.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=12192, bytesLength=12093] for tx ID: [] to index +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [466 01-13 06:14:17.09 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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org2.example.com | [427 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [441 01-13 06:14:17.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=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [43d 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org1.example.com | [467 01-13 06:14:17.09 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 | [442 01-13 06:14:17.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26080], isChainEmpty=[false], lastBlockNumber=[1] +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [428 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer1.org1.example.com | [43e 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [468 01-13 06:14:17.09 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 | [443 01-13 06:14:17.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer1.org2.example.com | [429 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [444 01-13 06:14:17.47 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 | [43f 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [469 01-13 06:14:17.09 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 | [445 01-13 06:14:17.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [440 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +explorer | -------------------- +peer0.org2.example.com | [446 01-13 06:14:17.47 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 | [42a 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [46a 01-13 06:14:17.09 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [2f1 01-13 06:14:10.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 +peer1.org1.example.com | [441 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [447 01-13 06:14:17.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [42b 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [2f2 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org1.example.com | [442 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [46b 01-13 06:14:17.09 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 | [42c 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [448 01-13 06:14:17.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [2f3 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [443 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [449 01-13 06:14:17.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org1.example.com | [46c 01-13 06:14:17.09 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 | [42d 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [2f4 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org1.example.com | [46d 01-13 06:14:17.09 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 | [44a 01-13 06:14:17.49 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 | [42e 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [444 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +orderer.example.com | [2f5 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | [46e 01-13 06:14:17.09 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 | [44b 01-13 06:14:17.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org2.example.com | [42f 01-13 06:14:19.03 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [445 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | [2f6 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [46f 01-13 06:14:17.09 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 | [446 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [44c 01-13 06:14:17.50 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 +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [430 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [2f7 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer1.org1.example.com | [447 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [470 01-13 06:14:17.09 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 +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [2f8 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org2.example.com | [44d 01-13 06:14:17.50 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 | [431 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [448 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +explorer | errno: 1146, +orderer.example.com | [2f9 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org1.example.com | [471 01-13 06:14:17.09 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 | [44e 01-13 06:14:17.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 [1] +peer1.org2.example.com | [432 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [449 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +orderer.example.com | [2fb 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [44f 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [472 01-13 06:14:17.09 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 | [44a 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [433 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +explorer | sqlState: '42S02', +peer0.org2.example.com | [450 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [473 01-13 06:14:17.09 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 | [44b 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +explorer | index: 0, +orderer.example.com | [2fc 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50074 +peer1.org2.example.com | [434 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [474 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [44c 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [435 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [451 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +explorer | [2018-01-13 06:14:48.496] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [475 01-13 06:14:17.09 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 | [436 01-13 06:14:19.04 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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [2fd 01-13 06:14:10.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.8:50074 +peer0.org2.example.com | [452 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [44d 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [437 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [476 01-13 06:14:17.09 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 | [2fa 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer1.org1.example.com | [44e 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [438 01-13 06:14:19.04 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 [] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [453 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [439 01-13 06:14:19.04 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 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [2fe 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer1.org1.example.com | [44f 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [477 01-13 06:14:17.09 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 | [43a 01-13 06:14:19.04 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 | [454 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [450 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [2ff 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer0.org1.example.com | [478 01-13 06:14:17.09 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 | [43b 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [451 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [455 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [479 01-13 06:14:17.09 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 | [43c 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +explorer | at emitOne (events.js:96:13) +orderer.example.com | [300 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [452 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [47a 01-13 06:14:17.09 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 | [43d 01-13 06:14:19.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [456 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [453 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [43e 01-13 06:14:19.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 [1] +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [47b 01-13 06:14:17.09 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 | [43f 01-13 06:14:19.05 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{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= +peer1.org1.example.com | [454 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [301 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [457 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12093 +orderer.example.com | [302 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [47c 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +explorer | -------------------- +peer1.org2.example.com | ] +peer1.org1.example.com | [455 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [303 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org2.example.com | [458 01-13 06:14:17.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [440 01-13 06:14:19.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx ID: [] to index +orderer.example.com | [304 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer1.org1.example.com | [456 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [47d 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [441 01-13 06:14:19.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [305 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org1.example.com | [457 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [459 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [47e 01-13 06:14:17.09 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 | [442 01-13 06:14:19.05 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=[26080], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [306 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer1.org1.example.com | [458 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [45a 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [443 01-13 06:14:19.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +orderer.example.com | [307 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [47f 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [444 01-13 06:14:19.06 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 | [45b 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421f69ec0 env 0xc421bbd4a0 txn 0 +orderer.example.com | [308 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [459 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [445 01-13 06:14:19.06 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 | [45c 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bbd4a0 +peer0.org1.example.com | [480 01-13 06:14:17.09 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 | [309 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +explorer | at next (native) +peer1.org2.example.com | [446 01-13 06:14:19.06 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 | [481 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [45a 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [45d 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +orderer.example.com | [30a 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org2.example.com | [447 01-13 06:14:19.06 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 | [482 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [30b 01-13 06:14:10.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 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org2.example.com | [45e 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [45b 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [30c 01-13 06:14:10.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 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [483 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [45f 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [30d 01-13 06:14:10.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 +peer1.org1.example.com | [45c 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [448 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [30e 01-13 06:14:10.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.org1.example.com | [484 01-13 06:14:17.09 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 | [45d 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [449 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [460 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +explorer | errno: 1146, +orderer.example.com | [30f 01-13 06:14:10.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 +peer0.org1.example.com | [485 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [45e 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [461 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [44a 01-13 06:14:19.06 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 | [310 01-13 06:14:10.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.org1.example.com | [486 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | sqlState: '42S02', +orderer.example.com | [311 01-13 06:14:10.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 +peer0.org2.example.com | [462 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [45f 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +explorer | index: 0, +peer1.org2.example.com | [44b 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +orderer.example.com | [312 01-13 06:14:10.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 +peer0.org2.example.com | [463 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422649000, header channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +peer0.org1.example.com | [487 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | [313 01-13 06:14:10.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 +peer1.org1.example.com | [460 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [44c 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org1.example.com | [488 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | [2018-01-13 06:14:49.051] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [464 01-13 06:14:17.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | [314 01-13 06:14:10.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 | [461 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [44d 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [315 01-13 06:14:10.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 | [465 01-13 06:14:17.52 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 | [489 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [316 01-13 06:14:10.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 | [462 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [44e 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [466 01-13 06:14:17.52 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 | [317 01-13 06:14:10.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 +peer0.org1.example.com | [48a 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [463 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [44f 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [318 01-13 06:14:10.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 +peer0.org2.example.com | [467 01-13 06:14:17.52 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 | [48b 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [450 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [464 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [319 01-13 06:14:10.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 +peer0.org1.example.com | [48c 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [468 01-13 06:14:17.53 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 | [451 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [31a 01-13 06:14:10.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 | [465 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [452 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [48d 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [31b 01-13 06:14:10.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/Org2MSP +peer1.org1.example.com | [466 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [469 01-13 06:14:17.53 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 | [453 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [48e 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [31c 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [467 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [46a 01-13 06:14:17.53 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 | [454 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [48f 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [468 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [31d 01-13 06:14:10.25 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 | [46b 01-13 06:14:17.53 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [455 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [490 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [469 01-13 06:14:17.09 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 | [46c 01-13 06:14:17.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [31e 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [456 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [491 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [46a 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [46d 01-13 06:14:17.53 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 | [457 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [31f 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [46b 01-13 06:14:17.09 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 [] +explorer | -------------------- +peer0.org1.example.com | [492 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [46e 01-13 06:14:17.53 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 | [46c 01-13 06:14:17.09 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 | [320 01-13 06:14:10.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 +peer0.org1.example.com | [493 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [46d 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [458 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [46f 01-13 06:14:17.53 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 | [494 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [46e 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [321 01-13 06:14:10.25 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [459 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [46f 01-13 06:14:17.09 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 | [495 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [470 01-13 06:14:17.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [322 01-13 06:14:10.25 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [470 01-13 06:14:17.09 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 | [496 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [45a 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [323 01-13 06:14:10.25 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 +peer0.org2.example.com | [471 01-13 06:14:17.53 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 | [471 01-13 06:14:17.10 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] +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [45b 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4229aa500 env 0xc42282f890 txn 0 +peer0.org1.example.com | [497 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [324 01-13 06:14:10.25 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.org1.example.com | [472 01-13 06:14:17.11 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{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= +peer0.org2.example.com | [472 01-13 06:14:17.53 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 | [45c 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42282f890 +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [325 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 +peer0.org1.example.com | [498 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [473 01-13 06:14:17.53 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 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | ] +peer1.org2.example.com | [45d 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +orderer.example.com | [326 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [499 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [473 01-13 06:14:17.11 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=12093] for tx ID: [] to index +peer0.org2.example.com | [474 01-13 06:14:17.53 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 | [45e 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [327 01-13 06:14:10.25 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 +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [474 01-13 06:14:17.11 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=12093] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [49a 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [45f 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [475 01-13 06:14:17.53 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 | [475 01-13 06:14:17.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=[26080], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [328 01-13 06:14:10.25 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 +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [460 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer0.org1.example.com | [49b 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [476 01-13 06:14:17.53 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 | [476 01-13 06:14:17.12 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 | [461 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [329 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org2.example.com | [477 01-13 06:14:17.53 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 | [477 01-13 06:14:17.12 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 | [49c 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [32a 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [462 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [478 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | [49d 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [32b 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [479 01-13 06:14:17.12 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 | [463 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4229ca000, header channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +peer0.org2.example.com | [478 01-13 06:14:17.53 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 | [49e 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | errno: 1146, +peer1.org1.example.com | [47a 01-13 06:14:17.12 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 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [479 01-13 06:14:17.53 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 | [464 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [49f 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org1.example.com | [47b 01-13 06:14:17.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 +orderer.example.com | [32d 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [47a 01-13 06:14:17.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | sqlState: '42S02', +peer0.org1.example.com | [4a0 01-13 06:14:17.10 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 | [465 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [32e 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [47c 01-13 06:14:17.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)=[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 | [47b 01-13 06:14:17.53 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | index: 0, +peer1.org2.example.com | [466 01-13 06:14:19.06 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 | [4a1 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [32f 01-13 06:14:10.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 | [47c 01-13 06:14:17.53 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 | [47d 01-13 06:14:17.12 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 | [467 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org1.example.com | [4a2 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [330 01-13 06:14:10.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 | [47d 01-13 06:14:17.53 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 | [468 01-13 06:14:19.06 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 | [47e 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +explorer | [2018-01-13 06:14:49.497] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | [331 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [4a3 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [47e 01-13 06:14:17.54 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 | [469 01-13 06:14:19.06 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 | [47f 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org1.example.com | [4a4 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [46a 01-13 06:14:19.06 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 | [47f 01-13 06:14:17.54 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 | [332 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [480 01-13 06:14:17.12 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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [4a5 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [46b 01-13 06:14:19.06 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 | [480 01-13 06:14:17.54 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 | [333 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [481 01-13 06:14:17.13 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 | [481 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [4a6 01-13 06:14:17.11 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 | [46c 01-13 06:14:19.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [334 01-13 06:14:10.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 | [482 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [482 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [46d 01-13 06:14:19.06 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 | [335 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [4a7 01-13 06:14:17.11 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 | [483 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [336 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org2.example.com | [46e 01-13 06:14:19.06 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 | [4a8 01-13 06:14:17.11 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 | [483 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [484 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [337 01-13 06:14:10.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 | [4a9 01-13 06:14:17.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 | [484 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [46f 01-13 06:14:19.06 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 | [4aa 01-13 06:14:17.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 +explorer | at emitOne (events.js:96:13) +orderer.example.com | [338 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [485 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [485 01-13 06:14:17.54 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 | [4ab 01-13 06:14:17.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 +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [339 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [470 01-13 06:14:19.06 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 | [4ac 01-13 06:14:17.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 +peer0.org2.example.com | [486 01-13 06:14:17.54 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 | [33a 01-13 06:14:10.26 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 | [486 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [4ad 01-13 06:14:17.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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [471 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [33b 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [487 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [4ae 01-13 06:14:17.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 +peer0.org2.example.com | [487 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [472 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [33c 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org1.example.com | [4af 01-13 06:14:17.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 +explorer | -------------------- +peer1.org1.example.com | [488 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [488 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [33d 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [4b0 01-13 06:14:17.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 | [473 01-13 06:14:19.07 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [489 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [33e 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [4b1 01-13 06:14:17.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 +orderer.example.com | [33f 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [489 01-13 06:14:17.54 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 | [48a 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [4b2 01-13 06:14:17.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 +orderer.example.com | [340 01-13 06:14:10.26 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 | [474 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [48b 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [48a 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [4b3 01-13 06:14:17.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 +orderer.example.com | [341 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [48c 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [4b4 01-13 06:14:17.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 +orderer.example.com | [342 01-13 06:14:10.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.org2.example.com | [475 01-13 06:14:19.07 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 | [48b 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [48d 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [4b5 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [343 01-13 06:14:10.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/] +peer1.org2.example.com | [476 01-13 06:14:19.07 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 | [48c 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [4b6 01-13 06:14:17.12 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 | [48e 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4218d0a40 env 0xc4218d3d70 txn 0 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [477 01-13 06:14:19.07 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 | [48d 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [344 01-13 06:14:10.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.org1.example.com | [4b7 01-13 06:14:17.12 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 | [48f 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218d3d70 +peer1.org2.example.com | [478 01-13 06:14:19.07 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 | [345 01-13 06:14:10.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 +peer0.org1.example.com | [4b8 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at next (native) +peer0.org2.example.com | [48e 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [490 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +peer1.org2.example.com | [479 01-13 06:14:19.07 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 | [346 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer0.org1.example.com | [4b9 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [491 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | [347 01-13 06:14:10.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 +peer0.org2.example.com | [48f 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [4ba 01-13 06:14:17.12 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 | [47a 01-13 06:14:19.07 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 | [348 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org1.example.com | [492 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [490 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [4bb 01-13 06:14:17.12 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 | [349 01-13 06:14:10.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 | [47b 01-13 06:14:19.07 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 | [493 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer0.org1.example.com | [4bc 01-13 06:14:17.12 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 | [491 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +orderer.example.com | [34a 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org1.example.com | [4bd 01-13 06:14:17.12 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 | [492 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [34b 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org1.example.com | [4be 01-13 06:14:17.12 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 | [494 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [47c 01-13 06:14:19.07 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 | [34c 01-13 06:14:10.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)(0xc42027e140)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org1.example.com | [4bf 01-13 06:14:17.12 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 | [495 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | errno: 1146, +peer1.org2.example.com | [47d 01-13 06:14:19.07 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 | [493 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [34d 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +peer0.org1.example.com | [4c0 01-13 06:14:17.12 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 +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [496 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422497000, header channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +peer0.org2.example.com | [494 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [47e 01-13 06:14:19.07 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 | [4c1 01-13 06:14:17.12 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 | [34e 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +peer0.org2.example.com | [495 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [497 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +explorer | sqlState: '42S02', +peer1.org2.example.com | [47f 01-13 06:14:19.07 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 | txId= locPointer=offset=38, bytesLength=12078 +peer0.org1.example.com | [4c2 01-13 06:14:17.12 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 | [496 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | index: 0, +peer1.org1.example.com | [498 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | ] +peer1.org2.example.com | [480 01-13 06:14:19.07 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 | [4c3 01-13 06:14:17.13 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 | [499 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org2.example.com | [481 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [497 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [34f 01-13 06:14:10.27 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] +peer1.org1.example.com | [49a 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +explorer | [2018-01-13 06:14:50.123] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [4c4 01-13 06:14:17.13 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 | [482 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [498 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [350 01-13 06:14:10.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 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [49b 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [483 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [499 01-13 06:14:17.54 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 | [4c5 01-13 06:14:17.13 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 | [484 01-13 06:14:19.07 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 | [351 01-13 06:14:10.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] +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [49c 01-13 06:14:17.13 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 | [4c6 01-13 06:14:17.13 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 | [49a 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [485 01-13 06:14:19.07 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 | [352 01-13 06:14:10.27 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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [49d 01-13 06:14:17.13 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 | [486 01-13 06:14:19.07 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 | [4c7 01-13 06:14:17.13 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 | [353 01-13 06:14:10.27 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.org2.example.com | [49b 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [49e 01-13 06:14:17.13 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 | [487 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [4c8 01-13 06:14:17.13 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 | [49c 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [354 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +peer1.org1.example.com | [49f 01-13 06:14:17.13 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 | [488 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [49d 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [4c9 01-13 06:14:17.14 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 | [4a0 01-13 06:14:17.13 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 | [355 01-13 06:14:10.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) +peer0.org1.example.com | [4ca 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [49e 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [4a1 01-13 06:14:17.13 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 | [489 01-13 06:14:19.07 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 | [4cb 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at emitOne (events.js:96:13) +orderer.example.com | [356 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources +peer1.org1.example.com | [4a2 01-13 06:14:17.13 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 | [49f 01-13 06:14:17.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [48a 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [4cc 01-13 06:14:17.14 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 | [357 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [48b 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [4a0 01-13 06:14:17.54 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 | [4cd 01-13 06:14:17.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 | [4a3 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [358 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [48c 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [4a1 01-13 06:14:17.54 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 | [4a4 01-13 06:14:17.13 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 | [4ce 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [359 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [48d 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +explorer | -------------------- +peer1.org1.example.com | [4a5 01-13 06:14:17.13 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 | [4a2 01-13 06:14:17.55 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 | [48e 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [35a 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [4cf 01-13 06:14:17.14 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 | [4a3 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [4a6 01-13 06:14:17.13 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 | [48f 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [35b 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [4a4 01-13 06:14:17.55 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 | [4a7 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [4d0 01-13 06:14:17.14 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 | [490 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [35c 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9181A6C6911B49E372FD06CDEDC6004E +peer0.org2.example.com | [4a5 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [4a8 01-13 06:14:17.13 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 | [4d1 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [35d 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C7584D9F5C910254C0E507B54C0C077B0F5949366477FCBBE9E79100F42A67E6 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [491 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [4a6 01-13 06:14:17.55 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 | [4a9 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [35e 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [4d2 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org2.example.com | [492 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [4a7 01-13 06:14:17.55 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 | [35f 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [4aa 01-13 06:14:17.13 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 | [4d3 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [493 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [4a8 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | [4ab 01-13 06:14:17.13 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 | [360 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +peer0.org2.example.com | [4a9 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org1.example.com | [4d4 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [494 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [4ac 01-13 06:14:17.13 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 | [4aa 01-13 06:14:17.55 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 | [361 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [4ab 01-13 06:14:17.55 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 | [495 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [4d5 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [362 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [4ac 01-13 06:14:17.55 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 | [4ad 01-13 06:14:17.13 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 | [496 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [4d6 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [4ad 01-13 06:14:17.55 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 | [363 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9181A6C6911B49E372FD06CDEDC6004E +peer1.org2.example.com | [497 01-13 06:14:19.07 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 | [4ae 01-13 06:14:17.13 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 | [4d7 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [4ae 01-13 06:14:17.55 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 +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org1.example.com | [4af 01-13 06:14:17.13 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 | [4af 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [364 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 78A6982FF623198D906ED27BD541CB5BBD789750B7F42B02F08259AE9B659D8B +peer1.org2.example.com | [498 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [4d8 01-13 06:14:17.15 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [4b0 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [4b0 01-13 06:14:17.13 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 | [4d9 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [365 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xed, 0xa, 0xd, 0x70, 0xa7, 0xd7, 0x8e, 0xfb, 0x28, 0x9b, 0xde, 0x48, 0xda, 0x96, 0x5, 0x97, 0xbe, 0x42, 0xdb, 0x4c, 0xa, 0xe, 0xd8, 0xf8, 0x2, 0x37, 0x7c, 0xf3, 0x82, 0x2c, 0x7e, 0x90} txOffsets= +peer1.org2.example.com | [499 01-13 06:14:19.07 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 | [4b1 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +explorer | errno: 1146, +peer0.org1.example.com | [4da 01-13 06:14:17.16 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 | [4b1 01-13 06:14:17.13 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 | [4b2 01-13 06:14:17.55 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 | txId= locPointer=offset=70, bytesLength=13001 +peer0.org2.example.com | [4b3 01-13 06:14:17.55 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 | [49a 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [4db 01-13 06:14:17.16 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 | [4b2 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +orderer.example.com | ] +peer0.org2.example.com | [4b4 01-13 06:14:17.55 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 | [4dc 01-13 06:14:17.16 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 | [49b 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | sqlState: '42S02', +peer1.org1.example.com | [4b3 01-13 06:14:17.13 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 | [4b5 01-13 06:14:17.55 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 | [49c 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [366 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24014], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org1.example.com | [4dd 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [4b6 01-13 06:14:17.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | index: 0, +peer1.org1.example.com | [4b4 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [49d 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [4de 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421b12d80 env 0xc421c7a6c0 txn 0 +orderer.example.com | [367 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 +peer0.org2.example.com | [4b7 01-13 06:14:17.55 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 | [4b5 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [49e 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [368 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org2.example.com | [4b8 01-13 06:14:17.55 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 | [4df 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [4b6 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +explorer | [2018-01-13 06:14:50.499] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [49f 01-13 06:14:19.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [4b9 01-13 06:14:17.55 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 | [4b7 01-13 06:14:17.13 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 | [4e0 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [369 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [4ba 01-13 06:14:17.55 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 | [4a0 01-13 06:14:19.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 | [4b8 01-13 06:14:17.13 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 | [36a 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org1.example.com | [4e1 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [4bb 01-13 06:14:17.55 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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [4a1 01-13 06:14:19.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 | [4b9 01-13 06:14:17.13 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 | [4e2 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +orderer.example.com | [36b 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [4bc 01-13 06:14:17.55 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 | [4e3 01-13 06:14:17.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] +peer0.org2.example.com | [4bd 01-13 06:14:17.55 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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [4a2 01-13 06:14:19.08 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 | [4ba 01-13 06:14:17.14 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 | [4be 01-13 06:14:17.55 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 | [36c 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [4e4 01-13 06:14:17.16 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 | [4bf 01-13 06:14:17.55 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 | [4a3 01-13 06:14:19.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [36d 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [4c0 01-13 06:14:17.55 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 | [4bb 01-13 06:14:17.14 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 | [4e5 01-13 06:14:17.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 | [4a4 01-13 06:14:19.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [36e 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [4bc 01-13 06:14:17.14 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 | [4c1 01-13 06:14:17.55 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 | [4e6 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [4a5 01-13 06:14:19.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [4bd 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [4c2 01-13 06:14:17.55 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 +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [4e7 01-13 06:14:17.16 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 | [4a6 01-13 06:14:19.08 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 | [4be 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [4c3 01-13 06:14:17.55 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [4e8 01-13 06:14:17.16 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{} +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [4bf 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [4a7 01-13 06:14:19.08 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [4c4 01-13 06:14:17.56 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 | [4e9 01-13 06:14:17.16 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [4a8 01-13 06:14:19.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org1.example.com | [4c0 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [4ea 01-13 06:14:17.16 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 | [4a9 01-13 06:14:19.08 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 | [4c5 01-13 06:14:17.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | -------------------- +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [4aa 01-13 06:14:19.08 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 | [4eb 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org1.example.com | [4c1 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [4c6 01-13 06:14:17.56 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [4ab 01-13 06:14:19.09 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 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer1.org1.example.com | [4c2 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [4c7 01-13 06:14:17.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [4ec 01-13 06:14:17.16 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 | [4ac 01-13 06:14:19.09 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 | [4c3 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [4ad 01-13 06:14:19.09 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 | [4ed 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [4ae 01-13 06:14:19.09 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 | [4ee 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [4af 01-13 06:14:19.09 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 | [4b0 01-13 06:14:19.09 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 | [4c8 01-13 06:14:17.56 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 | [4b1 01-13 06:14:19.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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer0.org1.example.com | [4ef 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [4c9 01-13 06:14:17.56 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 | [4b2 01-13 06:14:19.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 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [4f0 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org2.example.com | [4ca 01-13 06:14:17.56 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 | [4b3 01-13 06:14:19.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 +peer0.org1.example.com | [4f1 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [4c4 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [4b4 01-13 06:14:19.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 +peer0.org1.example.com | [4f2 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org1.example.com | [4c5 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer0.org2.example.com | [4cb 01-13 06:14:17.56 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 | [4b5 01-13 06:14:19.14 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 | [4f3 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at next (native) +peer1.org1.example.com | [4c6 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [4b6 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer0.org2.example.com | [4cc 01-13 06:14:17.56 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 | [4f4 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [4c7 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [4b7 01-13 06:14:19.14 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 | [4f5 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [4cd 01-13 06:14:17.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [4c8 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [4b8 01-13 06:14:19.14 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 | [4f6 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [4ce 01-13 06:14:17.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [4c9 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4b9 01-13 06:14:19.14 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 | [4f7 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +orderer.example.com | [36f 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cba0 gate 1515824050456576228 evaluation starts +peer1.org2.example.com | [4ba 01-13 06:14:19.14 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 | [4cf 01-13 06:14:17.57 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 | [4f8 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [370 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 signed by 0 principal evaluation starts (used [false]) +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [4bb 01-13 06:14:19.14 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 | [4f9 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [371 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [4d0 01-13 06:14:17.57 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 | [4bc 01-13 06:14:19.14 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 +explorer | errno: 1146, +peer0.org1.example.com | [4fa 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4bd 01-13 06:14:19.14 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 | [4ca 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [372 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer0.org2.example.com | [4d1 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [4fb 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4be 01-13 06:14:19.14 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 | [4cb 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [373 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 principal evaluation fails +peer0.org1.example.com | [4fc 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [4bf 01-13 06:14:19.14 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 | [4d2 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [374 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cba0 gate 1515824050456576228 evaluation fails +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [4cc 01-13 06:14:17.14 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 | [4fd 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [4c0 01-13 06:14:19.14 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 | [4d3 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +explorer | sqlState: '42S02', +orderer.example.com | [375 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [4cd 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [4fe 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4c1 01-13 06:14:19.14 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 +explorer | index: 0, +orderer.example.com | [376 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [4ce 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [4d4 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [4cf 01-13 06:14:17.14 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 | [4ff 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [4c2 01-13 06:14:19.14 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 | [377 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org2.example.com | [4d5 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +explorer | [2018-01-13 06:14:51.256] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer1.org1.example.com | [4d0 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [500 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [4c3 01-13 06:14:19.14 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 | [378 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cbb8 gate 1515824050457181626 evaluation starts +peer0.org2.example.com | [4d6 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [4d1 01-13 06:14:17.14 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 | [501 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4c4 01-13 06:14:19.14 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 | [379 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 signed by 0 principal evaluation starts (used [false]) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [4d7 01-13 06:14:17.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org1.example.com | [4d2 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [502 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4c5 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [4d8 01-13 06:14:17.59 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [4d3 01-13 06:14:17.14 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 | [503 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [37a 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [4d9 01-13 06:14:17.60 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [4c6 01-13 06:14:19.14 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 | [4d4 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [504 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [37b 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer0.org2.example.com | [4da 01-13 06:14:17.60 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 | [4c7 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [505 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [37c 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [4db 01-13 06:14:17.60 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [4d5 01-13 06:14:17.14 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 | [4c8 01-13 06:14:19.14 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 | [506 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [37d 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 principal matched by identity 0 +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [4dc 01-13 06:14:17.60 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 | [4d6 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [4c9 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [507 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [37e 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 58 d9 3a 40 2c 79 1e b5 d6 0c 36 d4 47 50 76 ab |X.:@,y....6.GPv.| +peer0.org2.example.com | [4dd 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [4d7 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [508 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4ca 01-13 06:14:19.14 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 | 00000010 73 28 78 64 ca 10 e8 6c 49 84 4a 27 e7 1c 99 30 |s(xd...lI.J'...0| +peer0.org2.example.com | [4de 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421f69ec0 env 0xc421bbd4a0 txn 0 +peer1.org1.example.com | [4d8 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | -------------------- +peer0.org1.example.com | [509 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org2.example.com | [4cb 01-13 06:14:19.14 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 | [37f 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b8 10 b0 41 8c 07 78 69 b0 d1 07 |0E.!....A..xi...| +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [4df 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [50a 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [4d9 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [4e0 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | 00000010 fc 36 75 37 90 7a e8 2f 0f 15 24 41 ed a8 fa 1a |.6u7.z./..$A....| +peer0.org1.example.com | [50b 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [4cc 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [4e1 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [50c 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [4cd 01-13 06:14:19.14 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 | 00000020 bb ac 9f f7 5c 02 20 54 58 ab ff 72 c0 8e 48 fc |....\. TX..r..H.| +peer1.org1.example.com | [4da 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [4e2 01-13 06:14:17.61 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 | [50d 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [4ce 01-13 06:14:19.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 | [4db 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | 00000030 1e ba aa c4 d8 88 a9 5b 4c 30 ac c6 ce a5 a1 b2 |.......[L0......| +peer1.org1.example.com | [4dc 01-13 06:14:17.14 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 | [50e 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [4e3 01-13 06:14:17.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] +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [4cf 01-13 06:14:19.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 | [4dd 01-13 06:14:17.14 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 | 00000040 25 b7 d3 16 be 6d 3a |%....m:| +peer0.org2.example.com | [4e4 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [4de 01-13 06:14:17.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.org2.example.com | [4d0 01-13 06:14:19.14 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 | [50f 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [4e5 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [380 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 principal evaluation succeeds for identity 0 +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [4df 01-13 06:14:17.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.org2.example.com | [4d1 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [510 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [4e6 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [4e0 01-13 06:14:17.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 +orderer.example.com | [381 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cbb8 gate 1515824050457181626 evaluation succeeds +peer1.org2.example.com | [4d2 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [4e7 01-13 06:14:17.61 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 | [4e1 01-13 06:14:17.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 +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [511 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [382 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [4e2 01-13 06:14:17.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 +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [4e8 01-13 06:14:17.61 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 | [4d3 01-13 06:14:19.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [512 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +explorer | errno: 1146, +peer1.org1.example.com | [4e3 01-13 06:14:17.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 +peer0.org2.example.com | [4e9 01-13 06:14:17.61 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 | [383 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org1.example.com | [4e4 01-13 06:14:17.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.org2.example.com | [4d4 01-13 06:14:19.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [513 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [4e5 01-13 06:14:17.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 +explorer | sqlState: '42S02', +orderer.example.com | [384 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +peer1.org2.example.com | [4d5 01-13 06:14:19.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [514 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [4e6 01-13 06:14:17.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 +peer0.org2.example.com | [4ea 01-13 06:14:17.61 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 = [] +explorer | index: 0, +peer1.org1.example.com | [4e7 01-13 06:14:17.17 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 | [4d6 01-13 06:14:19.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [385 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org2.example.com | [4eb 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [4e8 01-13 06:14:17.17 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 | [515 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [386 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [4d7 01-13 06:14:19.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +explorer | [2018-01-13 06:14:51.499] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org1.example.com | [4e9 01-13 06:14:17.17 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 | [4ec 01-13 06:14:17.61 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org1.example.com | [516 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [387 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [4ea 01-13 06:14:17.17 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 | [4d8 01-13 06:14:19.15 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [388 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42032b660) start: > stop: > from 172.18.0.8:50074 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [4eb 01-13 06:14:17.17 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 | [4ed 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [517 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [389 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [4ec 01-13 06:14:17.17 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 | [4d9 01-13 06:14:19.19 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [4ee 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [518 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [4ed 01-13 06:14:17.17 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 | [38a 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [4ef 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [519 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [4ee 01-13 06:14:17.17 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 | [38b 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes +peer0.org2.example.com | [4f0 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [4da 01-13 06:14:19.19 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [4ef 01-13 06:14:17.17 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 | [51a 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [4f1 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [38c 01-13 06:14:10.45 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]} +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [4f0 01-13 06:14:17.17 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 | [4f2 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [51b 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [4db 01-13 06:14:19.19 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 | [4f1 01-13 06:14:17.17 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 | [4f3 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [38d 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +peer1.org1.example.com | [4f2 01-13 06:14:17.17 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 | [51c 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [4f4 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [38e 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42032b660) for 172.18.0.8:50074 +peer1.org1.example.com | [4f3 01-13 06:14:17.17 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 | [4dc 01-13 06:14:19.19 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 | [51d 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [4f5 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +explorer | -------------------- +peer1.org1.example.com | [4f4 01-13 06:14:17.17 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 | [38f 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50074 for (0xc42032b660) +peer1.org2.example.com | [4dd 01-13 06:14:19.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [4f6 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [51e 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [4f5 01-13 06:14:17.17 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 | [4de 01-13 06:14:19.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4229aa500 env 0xc42282f890 txn 0 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [390 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50074 +peer0.org1.example.com | [51f 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [4f7 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [4df 01-13 06:14:19.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [4f6 01-13 06:14:17.17 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 | [4f8 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [391 01-13 06:14:10.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.8:50074 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [520 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [4f9 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4e0 01-13 06:14:19.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [4f7 01-13 06:14:17.17 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 | [4fa 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [392 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.8:50074, hangup +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [4e1 01-13 06:14:19.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [521 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [4fb 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at next (native) +orderer.example.com | [393 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org1.example.com | [4f8 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [4fc 01-13 06:14:17.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [522 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [4e2 01-13 06:14:19.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org2.example.com | [4fd 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [523 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [4f9 01-13 06:14:17.17 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 | [4e3 01-13 06:14:19.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] +orderer.example.com | [394 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50074: read: connection reset by peer +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [524 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [395 01-13 06:14:13.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [4fe 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4e4 01-13 06:14:19.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [4fa 01-13 06:14:17.17 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 | [396 01-13 06:14:13.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50084 +peer0.org1.example.com | [525 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | errno: 1146, +peer1.org2.example.com | [4e5 01-13 06:14:19.21 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 | [4ff 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [397 01-13 06:14:13.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.8:50084 +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [4fb 01-13 06:14:17.17 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 | [500 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [526 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [4e6 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +orderer.example.com | [398 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +explorer | sqlState: '42S02', +peer0.org2.example.com | [501 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [4fc 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [399 01-13 06:14:13.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.8:50086 +peer0.org1.example.com | [527 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +explorer | index: 0, +peer1.org2.example.com | [4e7 01-13 06:14:19.22 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 | [4fd 01-13 06:14:17.17 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 | [39a 01-13 06:14:13.09 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.8:50086 +peer0.org2.example.com | [502 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org1.example.com | [528 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [39b 01-13 06:14:13.09 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.org2.example.com | [4e8 01-13 06:14:19.22 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 | [503 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [4fe 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +explorer | [2018-01-13 06:14:52.311] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | [39c 01-13 06:14:13.09 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 | [529 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [4e9 01-13 06:14:19.22 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 | [504 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [39d 01-13 06:14:13.09 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 | [4ff 01-13 06:14:17.17 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 | [52a 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [505 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [4ea 01-13 06:14:19.22 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 | [39e 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer0.org1.example.com | [52b 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [506 01-13 06:14:17.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [39f 01-13 06:14:13.09 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 | [500 01-13 06:14:17.17 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 | [52c 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [3a0 01-13 06:14:13.09 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 == +peer0.org2.example.com | [507 01-13 06:14:17.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [501 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [3a1 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1515824053094826644 evaluation starts +peer0.org1.example.com | [52d 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [4eb 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [3a2 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [502 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [52e 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [503 01-13 06:14:17.18 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 | [4ec 01-13 06:14:19.22 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 | [508 01-13 06:14:17.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [504 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [3a3 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [52f 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [4ed 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [509 01-13 06:14:17.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [3a4 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer1.org1.example.com | [505 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [4ee 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [530 01-13 06:14:17.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [50a 01-13 06:14:17.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [4ef 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [3a5 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 principal evaluation fails +peer1.org1.example.com | [506 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +explorer | -------------------- +peer0.org1.example.com | [531 01-13 06:14:17.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [4f0 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [3a6 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1515824053094826644 evaluation fails +peer1.org1.example.com | [507 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [532 01-13 06:14:17.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [4f1 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [50b 01-13 06:14:17.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [3a7 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [508 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [533 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [4f2 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [50c 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [3a8 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [534 01-13 06:14:17.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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [509 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [4f3 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [535 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | [3a9 01-13 06:14:13.09 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 == +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [4f4 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [536 01-13 06:14:17.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 [] +peer0.org2.example.com | [50d 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org2.example.com | [4f5 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [537 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | [3aa 01-13 06:14:13.09 UTC] [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 1515824053095655929 evaluation starts +peer1.org1.example.com | [50a 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org2.example.com | [50e 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [4f6 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [538 01-13 06:14:17.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 | [3ab 01-13 06:14:13.09 UTC] [github.com/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]) +peer0.org2.example.com | [50f 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [4f7 01-13 06:14:19.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [539 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [50b 01-13 06:14:17.18 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 | [510 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [4f8 01-13 06:14:19.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [53a 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [50c 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [511 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [4f9 01-13 06:14:19.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [53b 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +orderer.example.com | [3ac 01-13 06:14:13.09 UTC] [github.com/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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [4fa 01-13 06:14:19.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [53c 01-13 06:14:17.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 [2] +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [512 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [50d 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [4fb 01-13 06:14:19.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [53d 01-13 06:14:17.25 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{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= +orderer.example.com | [3ad 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org2.example.com | [4fc 01-13 06:14:19.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [513 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [50e 01-13 06:14:17.19 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 | txId= locPointer=offset=70, bytesLength=12151 +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [4fd 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [3ae 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | ] +peer0.org2.example.com | [514 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [50f 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +explorer | errno: 1146, +peer0.org1.example.com | [53e 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26150, bytesLength=12151] for tx ID: [] to index +peer1.org2.example.com | [4fe 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [515 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [3af 01-13 06:14:13.09 UTC] [github.com/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 +peer0.org1.example.com | [53f 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26150, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [4ff 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [510 01-13 06:14:17.19 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 | [516 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [3b0 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3b 11 ce 2d a8 b7 10 d1 10 8c e1 e4 81 54 74 79 |;..-.........Tty| +peer0.org1.example.com | [540 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40096], isChainEmpty=[false], lastBlockNumber=[2] +explorer | sqlState: '42S02', +peer1.org1.example.com | [511 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [500 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [541 01-13 06:14:17.25 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 | 00000010 0a e5 c0 30 41 c7 50 0f 37 e7 a2 db 51 e0 c1 95 |...0A.P.7...Q...| +peer0.org2.example.com | [517 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [512 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4218d0a40 env 0xc4218d3d70 txn 0 +peer0.org1.example.com | [542 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +explorer | index: 0, +peer1.org2.example.com | [501 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [3b1 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a0 b2 3e 69 36 3b 27 7d 07 57 0c |0E.!...>i6;'}.W.| +peer0.org2.example.com | [518 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [543 01-13 06:14:17.26 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 | [513 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +orderer.example.com | 00000010 9f 23 1f 46 de 1d 77 fa 5e 86 6f a7 28 3f 23 b7 |.#.F..w.^.o.(?#.| +peer1.org2.example.com | [502 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [519 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [514 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [544 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +explorer | [2018-01-13 06:14:52.498] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | 00000020 26 2e c9 ff 24 02 20 6b 3c 9d 5d ae 40 25 7a ff |&...$. k<.].@%z.| +peer1.org2.example.com | [503 01-13 06:14:19.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [515 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [51a 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [545 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | 00000030 96 d9 c1 a5 df e3 6a 45 b3 f0 b0 87 ba a1 ad e6 |......jE........| +peer1.org1.example.com | [516 01-13 06:14:17.19 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 | [504 01-13 06:14:19.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [51b 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [546 01-13 06:14:17.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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | 00000040 82 67 16 27 a5 c1 60 |.g.'..`| +peer1.org2.example.com | [505 01-13 06:14:19.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [517 01-13 06:14:17.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 | [547 01-13 06:14:17.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 | [51c 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [3b2 01-13 06:14:13.09 UTC] [github.com/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 +peer1.org2.example.com | [506 01-13 06:14:19.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [548 01-13 06:14:17.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 | [51d 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [518 01-13 06:14:17.19 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 | [549 01-13 06:14:17.26 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 | [519 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [3b3 01-13 06:14:13.09 UTC] [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 1515824053095655929 evaluation succeeds +peer1.org2.example.com | [507 01-13 06:14:19.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [51e 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [51a 01-13 06:14:17.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 | [54a 01-13 06:14:17.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 [2] with [1] transactions +peer0.org2.example.com | [51f 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [508 01-13 06:14:19.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [3b4 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [51b 01-13 06:14:17.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] +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [54b 01-13 06:14:17.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 | [520 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [509 01-13 06:14:19.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [51c 01-13 06:14:17.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{} +orderer.example.com | [3b5 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [54c 01-13 06:14:17.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 [2] +peer0.org2.example.com | [521 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [50a 01-13 06:14:19.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [3b6 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +peer1.org1.example.com | [51d 01-13 06:14:17.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 +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [54d 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [50b 01-13 06:14:19.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [3b7 01-13 06:14:13.09 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [51e 01-13 06:14:17.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.org2.example.com | [522 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [54e 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [3b8 01-13 06:14:13.09 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 | [50c 01-13 06:14:19.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [51f 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [523 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [54f 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [3b9 01-13 06:14:13.09 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 | [524 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [550 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [50d 01-13 06:14:19.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [520 01-13 06:14:17.19 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" > +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [525 01-13 06:14:17.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [3ba 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [551 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [50e 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [521 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +explorer | -------------------- +peer0.org2.example.com | [526 01-13 06:14:17.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [3bb 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [522 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [552 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [50f 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [3bc 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [527 01-13 06:14:17.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [523 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [553 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [510 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [3bd 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [524 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [528 01-13 06:14:17.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [554 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [511 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [525 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [3be 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +peer1.org1.example.com | [526 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [529 01-13 06:14:17.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [555 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [512 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [527 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [52a 01-13 06:14:17.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [3bf 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org1.example.com | [556 01-13 06:14:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [528 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [513 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [3c0 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [52b 01-13 06:14:17.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [529 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [514 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [557 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40068 +orderer.example.com | [3c1 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [52a 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +explorer | at next (native) +peer0.org2.example.com | [52c 01-13 06:14:17.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [515 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [52b 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [3c2 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [558 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423164c60 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org2.example.com | [516 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [52c 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [52d 01-13 06:14:17.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [3c3 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [559 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [52d 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org2.example.com | [517 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [52e 01-13 06:14:17.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [3c4 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [52e 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [518 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [52f 01-13 06:14:17.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [52f 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [519 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [55a 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [530 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [3c5 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [530 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [55b 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org1.example.com | [531 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [51a 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [3c6 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +explorer | errno: 1146, +peer1.org1.example.com | [532 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [55c 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [3c7 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [531 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [533 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [532 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [51b 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [3c8 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 | [55d 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | sqlState: '42S02', +peer0.org2.example.com | [533 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [51c 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [534 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +explorer | index: 0, +orderer.example.com | [3c9 01-13 06:14:13.09 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 +peer0.org1.example.com | [55e 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4230cff40, header 0xc423164fc0 +peer0.org2.example.com | [534 01-13 06:14:17.70 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 | [51d 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [535 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [536 01-13 06:14:17.70 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 | [537 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer1.org1.example.com | [535 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [3ca 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org2.example.com | [538 01-13 06:14:17.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org1.example.com | [55f 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [51e 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [539 01-13 06:14:17.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 | [536 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [3cb 01-13 06:14:13.10 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] +peer0.org1.example.com | [560 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135 +explorer | [2018-01-13 06:14:53.359] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [53a 01-13 06:14:17.70 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 | [51f 01-13 06:14:19.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [3cc 01-13 06:14:13.10 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.org1.example.com | [561 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135 channel id: +peer0.org2.example.com | [53b 01-13 06:14:17.70 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 | [537 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [3cd 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org2.example.com | [520 01-13 06:14:19.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [53c 01-13 06:14:17.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 [2] +peer0.org1.example.com | [562 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer1.org1.example.com | [538 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [53d 01-13 06:14:17.70 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{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= +peer1.org2.example.com | [521 01-13 06:14:19.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [3ce 01-13 06:14:13.10 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 [] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [563 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135 channel id: version: 1.1.0 +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12151 +peer1.org1.example.com | [539 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [522 01-13 06:14:19.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [3cf 01-13 06:14:13.10 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 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | ] +peer0.org1.example.com | [564 01-13 06:14:19.91 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.1.0,txid=0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135,syscc=true,proposal=0xc4230cff40,canname=lscc:1.1.0 +orderer.example.com | [3d0 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [53a 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [523 01-13 06:14:19.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [53e 01-13 06:14:17.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=26150, bytesLength=12151] for tx ID: [] to index +peer0.org1.example.com | [565 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [3d1 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +peer1.org2.example.com | [524 01-13 06:14:19.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [53b 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [53f 01-13 06:14:17.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=26150, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [3d2 01-13 06:14:13.10 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 +peer1.org2.example.com | [525 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [566 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [540 01-13 06:14:17.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40096], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org1.example.com | [53c 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [3d3 01-13 06:14:13.10 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 +peer1.org2.example.com | [526 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [567 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [541 01-13 06:14:17.71 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 | [53d 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [3d4 01-13 06:14:13.10 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 [] +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [542 01-13 06:14:17.71 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 | [53e 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [527 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [543 01-13 06:14:17.71 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 | [3d5 01-13 06:14:13.10 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 == +peer0.org1.example.com | [568 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0eab6847]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [53f 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [544 01-13 06:14:17.71 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 | [528 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [3d6 01-13 06:14:13.10 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 0xc42000e378 gate 1515824053101140585 evaluation starts +peer0.org2.example.com | [545 01-13 06:14:17.71 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 | [540 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [529 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [569 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | -------------------- +peer0.org2.example.com | [546 01-13 06:14:17.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 +orderer.example.com | [3d7 01-13 06:14:13.10 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 0xc42000e378 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [56a 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [52a 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [3d8 01-13 06:14:13.10 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 0xc42000e378 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [541 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [547 01-13 06:14:17.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)=[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 | [56b 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0eab6847]sendExecuteMsg trigger event TRANSACTION +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [52b 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [548 01-13 06:14:17.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.org1.example.com | [542 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [3d9 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org2.example.com | [52c 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [56c 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eab6847]Move state message TRANSACTION +peer1.org1.example.com | [543 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [549 01-13 06:14:17.71 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 | [3da 01-13 06:14:13.10 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 0xc42000e378 principal matched by identity 0 +peer1.org2.example.com | [52d 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [56d 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eab6847]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [544 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [3db 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c c3 f4 b0 ae e6 51 cb f5 24 c3 f9 ab 62 1e 16 |L.....Q..$...b..| +peer0.org2.example.com | [54a 01-13 06:14:17.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org1.example.com | [56e 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [52e 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [545 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [54b 01-13 06:14:17.71 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 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org1.example.com | [56f 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eab6847]sending state message TRANSACTION +orderer.example.com | 00000010 98 1e a5 14 77 93 b9 55 8a f8 5a 95 41 bc e3 d4 |....w..U..Z.A...| +peer1.org2.example.com | [52f 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [54c 01-13 06:14:17.72 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 | [546 01-13 06:14:17.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [570 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]Received message TRANSACTION from shim +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +orderer.example.com | [3dc 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5e c4 6b 25 d4 74 88 f0 30 0a 19 |0D. K^.k%.t..0..| +peer1.org2.example.com | [530 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [54d 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [547 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [571 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eab6847]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | 00000010 7e 8b 7a 04 7c e4 6f e9 4d bb 5e ba e3 57 de b9 |~.z.|.o.M.^..W..| +peer1.org2.example.com | [531 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [54e 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [572 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0eab6847]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [548 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [532 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 00000020 49 4e a9 09 02 20 69 3a 03 c5 e6 05 46 07 6a af |IN... i:....F.j.| +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [573 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [549 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [533 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [54f 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | 00000030 00 87 17 09 de b2 ed 84 68 80 e3 46 52 54 31 b5 |........h..FRT1.| +peer0.org1.example.com | [574 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]Move state message COMPLETED +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [534 01-13 06:14:19.32 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 | [54a 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | 00000040 34 cc 08 ec 28 53 |4...(S| +peer0.org1.example.com | [575 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eab6847]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [550 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [535 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +explorer | errno: 1146, +peer1.org1.example.com | [54b 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [536 01-13 06:14:19.32 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 | [576 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]send state message COMPLETED +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org2.example.com | [551 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [537 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | [3dd 01-13 06:14:13.10 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 0xc42000e378 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [577 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eab6847]Received message COMPLETED from shim +peer1.org1.example.com | [54c 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +explorer | sqlState: '42S02', +peer1.org2.example.com | [538 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [3de 01-13 06:14:13.10 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 0xc42000e378 gate 1515824053101140585 evaluation succeeds +peer0.org2.example.com | [552 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [54d 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [578 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eab6847]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [539 01-13 06:14:19.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [3df 01-13 06:14:13.10 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 +explorer | index: 0, +peer1.org1.example.com | [54e 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [53a 01-13 06:14:19.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [3e0 01-13 06:14:13.10 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 +peer0.org2.example.com | [553 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [579 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [53b 01-13 06:14:19.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +orderer.example.com | [3e1 01-13 06:14:13.10 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 +peer1.org1.example.com | [54f 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [53c 01-13 06:14:19.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 [2] +peer0.org1.example.com | [57a 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135, channelID: +orderer.example.com | [3e2 01-13 06:14:13.10 UTC] [github.com/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" +explorer | [2018-01-13 06:14:53.503] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [53d 01-13 06:14:19.34 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{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= +peer0.org2.example.com | [554 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [550 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [57b 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [3e3 01-13 06:14:13.10 UTC] [github.com/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" +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12151 +peer1.org1.example.com | [551 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [3e4 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [555 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | ] +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [552 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [3e5 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [53e 01-13 06:14:19.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=26150, bytesLength=12151] for tx ID: [] to index +peer0.org2.example.com | [556 01-13 06:14:17.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [57c 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [3e6 01-13 06:14:13.10 UTC] [github.com/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" +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [553 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [53f 01-13 06:14:19.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=26150, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [57d 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [3e7 01-13 06:14:13.10 UTC] [github.com/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" +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [540 01-13 06:14:19.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=[40096], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [557 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:58968 +peer0.org1.example.com | [57e 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40068) +peer1.org1.example.com | [554 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [3e8 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [541 01-13 06:14:19.35 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 | [542 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +peer0.org1.example.com | [57f 01-13 06:14:21.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53662 +peer0.org2.example.com | [558 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bf19e0 +peer1.org1.example.com | [555 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [3e9 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [543 01-13 06:14:19.36 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 | [580 01-13 06:14:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423463f80 +peer0.org2.example.com | [559 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [3ea 01-13 06:14:13.10 UTC] [github.com/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 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [544 01-13 06:14:19.36 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 | [3eb 01-13 06:14:13.10 UTC] [github.com/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 +peer0.org1.example.com | [581 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [556 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [55a 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at emitOne (events.js:96:13) +orderer.example.com | [3ec 01-13 06:14:13.10 UTC] [github.com/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 | [545 01-13 06:14:19.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 | [582 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [557 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [55b 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [3ed 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [583 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org1.example.com | [558 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [55c 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [546 01-13 06:14:19.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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [3ee 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [584 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [55d 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [547 01-13 06:14:19.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}] +peer1.org1.example.com | [559 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [3ef 01-13 06:14:13.10 UTC] [github.com/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 | [585 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [55e 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202fe7d0, header 0xc421bf1d40 +peer1.org2.example.com | [548 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +explorer | -------------------- +orderer.example.com | [3f0 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [55a 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [586 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234bac80, header 0xc423502300 +peer1.org2.example.com | [549 01-13 06:14:19.36 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 | [55f 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [3f1 01-13 06:14:13.10 UTC] [github.com/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" +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [587 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer1.org1.example.com | [55b 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [54a 01-13 06:14:19.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 [2] with [1] transactions +peer0.org2.example.com | [560 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 477109c9f5e496bbf1427c5f0ff4424aef03f0936c64b30853a070a1bb9e7ffd +orderer.example.com | [3f2 01-13 06:14:13.10 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" +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [588 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 +peer1.org2.example.com | [54b 01-13 06:14:19.36 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 | [55c 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [561 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 477109c9f5e496bbf1427c5f0ff4424aef03f0936c64b30853a070a1bb9e7ffd channel id: +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [3f3 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [54c 01-13 06:14:19.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 [2] +peer0.org1.example.com | [589 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +peer0.org2.example.com | [562 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [3f4 01-13 06:14:13.10 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" +peer1.org1.example.com | [55d 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [563 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 477109c9f5e496bbf1427c5f0ff4424aef03f0936c64b30853a070a1bb9e7ffd channel id: version: 1.1.0 +peer1.org2.example.com | [54d 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [58a 01-13 06:14:21.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 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [55e 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [564 01-13 06:14:21.12 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.1.0,txid=477109c9f5e496bbf1427c5f0ff4424aef03f0936c64b30853a070a1bb9e7ffd,syscc=true,proposal=0xc4202fe7d0,canname=lscc:1.1.0 +orderer.example.com | [3f5 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [58b 01-13 06:14:21.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 = [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +peer1.org2.example.com | [54e 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [565 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org1.example.com | [55f 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [3f6 01-13 06:14:13.10 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 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org1.example.com | [58c 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel +peer1.org2.example.com | [54f 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [560 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [566 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [3f7 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [58d 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel version: 1.1.0 +explorer | at next (native) +peer1.org1.example.com | [561 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [567 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [3f8 01-13 06:14:13.10 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 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org1.example.com | [58e 01-13 06:14:21.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=qscc,version=1.1.0,txid=a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619,syscc=true,proposal=0xc4234bac80,canname=qscc:1.1.0 +peer1.org2.example.com | [550 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [562 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [3f9 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [568 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [477109c9]Inside sendExecuteMessage. Message TRANSACTION +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [58f 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org1.example.com | [563 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [551 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [569 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [3fa 01-13 06:14:13.10 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 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [590 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [552 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [564 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [3fb 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [56a 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [553 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [591 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [3fc 01-13 06:14:13.10 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 +peer0.org2.example.com | [56b 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [477109c9]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [565 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [554 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +explorer | errno: 1146, +peer1.org1.example.com | [566 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [592 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [56c 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [477109c9]Move state message TRANSACTION +orderer.example.com | [3fd 01-13 06:14:13.10 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.org1.example.com | [567 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [555 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [56d 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [477109c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [568 01-13 06:14:17.20 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 | [593 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [556 01-13 06:14:19.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [3fe 01-13 06:14:13.10 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 +explorer | sqlState: '42S02', +peer1.org1.example.com | [569 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [56e 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [594 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [56a 01-13 06:14:17.20 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 | [557 01-13 06:14:19.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +explorer | index: 0, +orderer.example.com | [3ff 01-13 06:14:13.10 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 +peer1.org1.example.com | [56b 01-13 06:14:17.20 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 | [56f 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [477109c9]sending state message TRANSACTION +peer1.org2.example.com | [558 01-13 06:14:19.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +peer0.org1.example.com | [595 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [400 01-13 06:14:13.10 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 +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [56c 01-13 06:14:17.20 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 | [56d 01-13 06:14:17.20 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 | [559 01-13 06:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��%��v�R[�}��:��[��J�3��LG�� message sent from �D8$B����*��?�) ��C^���æ����� +peer0.org2.example.com | [570 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [477109c9]Received message TRANSACTION from shim +explorer | [2018-01-13 06:14:54.427] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer1.org1.example.com | [56e 01-13 06:14:17.20 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 | [596 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Move state message TRANSACTION +orderer.example.com | [401 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [55a 01-13 06:14:20.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��%��v�R[�}��:��[��J�3��LG�� message sent from ؎��9�L�YOjfQ�/I��Udż p\y +peer0.org2.example.com | [571 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [477109c9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [56f 01-13 06:14:17.20 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 | [597 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [402 01-13 06:14:13.10 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 +peer1.org1.example.com | [570 01-13 06:14:17.20 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 | [572 01-13 06:14:21.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [477109c9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [598 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [55b 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:57106 +peer1.org1.example.com | [571 01-13 06:14:17.20 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{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [403 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [599 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]sending state message TRANSACTION +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 +peer0.org2.example.com | [573 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [477109c9]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [55c 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4226c90b0 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [59a 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53660 +peer1.org1.example.com | ] +orderer.example.com | [404 01-13 06:14:13.10 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 +peer1.org2.example.com | [55d 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [572 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26150, bytesLength=12151] for tx ID: [] to index +peer0.org2.example.com | [574 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [477109c9]Move state message COMPLETED +peer0.org1.example.com | [59b 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423502c60 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [405 01-13 06:14:13.10 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 +peer1.org1.example.com | [573 01-13 06:14:17.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26150, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [55e 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [59c 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [574 01-13 06:14:17.20 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=[40096], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [406 01-13 06:14:13.10 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 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [575 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [477109c9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [575 01-13 06:14:17.20 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 | [59e 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [55f 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +orderer.example.com | [407 01-13 06:14:13.10 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.org1.example.com | [576 01-13 06:14:17.21 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 | [576 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [477109c9]send state message COMPLETED +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [560 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [408 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [577 01-13 06:14:17.21 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 | [59f 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [577 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [477109c9]Received message COMPLETED from shim +orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [578 01-13 06:14:17.21 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 | [5a0 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [561 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [578 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [477109c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [5a1 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [579 01-13 06:14:17.21 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 | [562 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4226b9ae0, header 0xc4226c9440 +peer0.org2.example.com | [579 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [477109c9f5e496bbf1427c5f0ff4424aef03f0936c64b30853a070a1bb9e7ffd]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5a2 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234bb310, header 0xc423502fc0 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [57a 01-13 06:14:17.21 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 | [5a3 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [563 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [57b 01-13 06:14:17.21 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}] +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [57a 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:477109c9f5e496bbf1427c5f0ff4424aef03f0936c64b30853a070a1bb9e7ffd, channelID: +peer0.org1.example.com | [5a4 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9 +peer1.org2.example.com | [564 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 2a02688828f7d3c194c1e10275e29dc0a4feefef72ac6412f8fb8620e7cde1f2 +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer0.org1.example.com | [5a5 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9 channel id: +explorer | -------------------- +peer1.org1.example.com | [57c 01-13 06:14:17.21 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 | [57b 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [565 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2a02688828f7d3c194c1e10275e29dc0a4feefef72ac6412f8fb8620e7cde1f2 channel id: +peer0.org1.example.com | [5a6 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9 channel id: version: 1.1.0 +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [57c 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [5a7 01-13 06:14:21.62 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.1.0,txid=4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9,syscc=true,proposal=0xc4234bb310,canname=lscc:1.1.0 +peer1.org1.example.com | [57d 01-13 06:14:17.21 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 | [566 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [5a8 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [57d 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [57e 01-13 06:14:17.21 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 | [5a9 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [567 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2a02688828f7d3c194c1e10275e29dc0a4feefef72ac6412f8fb8620e7cde1f2 channel id: version: 1.1.0 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [57e 01-13 06:14:21.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:58968) +peer0.org1.example.com | [5aa 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [57f 01-13 06:14:17.21 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 | [568 01-13 06:14:21.63 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.1.0,txid=2a02688828f7d3c194c1e10275e29dc0a4feefef72ac6412f8fb8620e7cde1f2,syscc=true,proposal=0xc4226b9ae0,canname=lscc:1.1.0 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [5ab 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4a7a4eb2]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +peer0.org2.example.com | [57f 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering +peer1.org1.example.com | [580 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org2.example.com | [569 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [5ac 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [580 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org1.example.com | [581 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [5ad 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [581 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting +peer1.org2.example.com | [56a 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org1.example.com | [5ae 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4a7a4eb2]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer1.org1.example.com | [582 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [56b 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [582 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers +peer0.org1.example.com | [5af 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7a4eb2]Move state message TRANSACTION +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [583 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer0.org2.example.com | [583 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting +peer0.org1.example.com | [5b0 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7a4eb2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [56c 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2a026888]Inside sendExecuteMessage. Message TRANSACTION +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [584 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer0.org2.example.com | [584 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Canceled desc = context canceled ,at 1 attempt. Retrying in 1s +peer0.org1.example.com | [5b1 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [56d 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [585 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [585 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing +orderer.example.com | [409 01-13 06:14:13.10 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----- +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [5b2 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7a4eb2]sending state message TRANSACTION +peer1.org1.example.com | [586 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [56e 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [586 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [59d 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Received message TRANSACTION from shim +peer1.org1.example.com | [587 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [56f 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2a026888]sendExecuteMsg trigger event TRANSACTION +explorer | errno: 1146, +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [587 01-13 06:14:22.36 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting +peer0.org1.example.com | [5b3 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [588 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [570 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a026888]Move state message TRANSACTION +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [588 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:58998 +peer0.org1.example.com | [5b4 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a035035f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [571 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2a026888]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [589 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [5b5 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]Received message TRANSACTION from shim +explorer | sqlState: '42S02', +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer0.org2.example.com | [589 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b954d0 +peer1.org1.example.com | [58a 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [572 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5b6 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4a7a4eb2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | index: 0, +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [58a 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [58b 01-13 06:14:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org1.example.com | [5b7 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4a7a4eb2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [573 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a026888]sending state message TRANSACTION +peer1.org1.example.com | [58c 01-13 06:14:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [58b 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | [2018-01-13 06:14:54.504] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [574 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a026888]Received message TRANSACTION from shim +peer0.org1.example.com | [5b8 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer1.org1.example.com | [58d 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:38776 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [575 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a026888]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [5b9 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [58c 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [58e 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422f13950 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [576 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2a026888]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [58d 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer1.org1.example.com | [58f 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [5ba 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Move state message COMPLETED +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [58e 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [577 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a026888]Transaction completed. Sending COMPLETED +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org1.example.com | [5bb 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [590 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [58f 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4225d2eb0, header 0xc421b95830 +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer1.org2.example.com | [578 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a026888]Move state message COMPLETED +peer0.org1.example.com | [5bc 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]send state message COMPLETED +peer1.org1.example.com | [591 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [590 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [579 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a026888]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5bd 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Received message COMPLETED from shim +peer1.org1.example.com | [592 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [591 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [40a 01-13 06:14:13.11 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 | [57a 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a026888]send state message COMPLETED +peer0.org1.example.com | [5be 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [592 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer1.org1.example.com | [593 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at emitOne (events.js:96:13) +orderer.example.com | [40b 01-13 06:14:13.11 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.org2.example.com | [57b 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a026888]Received message COMPLETED from shim +peer0.org1.example.com | [5bf 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [594 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422f76320, header 0xc422f13cb0 +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [593 01-13 06:14:29.94 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 +orderer.example.com | [40c 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [57c 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2a026888]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5c0 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619, channelID:businesschannel +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [595 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [594 01-13 06:14:29.94 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 = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +orderer.example.com | [40d 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [57d 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2a02688828f7d3c194c1e10275e29dc0a4feefef72ac6412f8fb8620e7cde1f2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5c1 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [596 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b2d9387ddd8a7b5e09a0f50df6b05c0223bf965697106ddef5bd18454cf8e883 +orderer.example.com | [40e 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [595 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 channel id: businesschannel +peer1.org2.example.com | [57e 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2a02688828f7d3c194c1e10275e29dc0a4feefef72ac6412f8fb8620e7cde1f2, channelID: +peer0.org1.example.com | [5c2 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [597 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b2d9387ddd8a7b5e09a0f50df6b05c0223bf965697106ddef5bd18454cf8e883 channel id: +explorer | -------------------- +orderer.example.com | [40f 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [57f 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [596 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer0.org1.example.com | [5c3 01-13 06:14:21.63 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 | [598 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +orderer.example.com | [410 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [5c4 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +peer0.org2.example.com | [597 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 channel id: businesschannel version: 1.1.0 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [599 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b2d9387ddd8a7b5e09a0f50df6b05c0223bf965697106ddef5bd18454cf8e883 channel id: version: 1.1.0 +peer1.org2.example.com | [580 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [411 01-13 06:14:13.11 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 +peer0.org2.example.com | [598 01-13 06:14:29.94 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.1.0,txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053,syscc=true,proposal=0xc4225d2eb0,canname=lscc:1.1.0 +peer0.org1.example.com | [5c5 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [59a 01-13 06:14:20.57 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.1.0,txid=b2d9387ddd8a7b5e09a0f50df6b05c0223bf965697106ddef5bd18454cf8e883,syscc=true,proposal=0xc422f76320,canname=lscc:1.1.0 +peer1.org2.example.com | [581 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [599 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [5c7 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]Transaction completed. Sending COMPLETED +orderer.example.com | [412 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [582 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:57106) +peer1.org1.example.com | [59b 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [59a 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [583 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org1.example.com | [5c8 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]Move state message COMPLETED +peer1.org1.example.com | [59c 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [413 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [59b 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [59d 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [584 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +orderer.example.com | [414 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [5c9 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4a7a4eb2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [585 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [59c 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [67a5c483]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [59e 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2d9387d]Inside sendExecuteMessage. Message TRANSACTION +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org1.example.com | [5ca 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]send state message COMPLETED +peer0.org2.example.com | [59d 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [586 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [59f 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [415 01-13 06:14:13.11 UTC] [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 +explorer | at next (native) +peer0.org1.example.com | [5cb 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7a4eb2]Received message COMPLETED from shim +peer0.org2.example.com | [59e 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [587 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423329c00 env 0xc42335d950 txn 0 +peer1.org1.example.com | [5a0 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [416 01-13 06:14:13.11 UTC] [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----- +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [59f 01-13 06:14:29.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [67a5c483]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [5cc 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7a4eb2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5a1 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2d9387d]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [588 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42335d950 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org2.example.com | [5a0 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message TRANSACTION +peer0.org1.example.com | [5cd 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [5a2 01-13 06:14:20.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2d9387d]Move state message TRANSACTION +orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [589 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [5a1 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5a3 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2d9387d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5ce 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9, channelID: +peer1.org2.example.com | [58a 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [5a2 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5cf 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [58b 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [5a4 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +explorer | errno: 1146, +peer0.org2.example.com | [5a3 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message TRANSACTION +peer0.org1.example.com | [5d0 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [58c 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer0.org2.example.com | [5a4 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Received message TRANSACTION from shim +peer1.org1.example.com | [5a5 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2d9387d]sending state message TRANSACTION +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org1.example.com | [5d1 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [58d 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5a5 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67a5c483]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [5a6 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2d9387d]Received message TRANSACTION from shim +peer0.org1.example.com | [5d2 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53660) +peer0.org2.example.com | [5a6 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [67a5c483]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | sqlState: '42S02', +peer1.org2.example.com | [58e 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [5a7 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [67a5c483]Sending GET_STATE +peer0.org1.example.com | [5c6 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel chaincode id: name:"qscc" +explorer | index: 0, +peer1.org2.example.com | [58f 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422616a80, header channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +peer0.org2.example.com | [5a8 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message GET_STATE from shim +peer1.org1.example.com | [5a7 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2d9387d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org2.example.com | [5a9 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [5d3 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer1.org1.example.com | [5a8 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b2d9387d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +explorer | [2018-01-13 06:14:55.506] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [590 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [5aa 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [67a5c483]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [5d4 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel version: 1.1.0 +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [5a9 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2d9387d]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5ab 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [591 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [5d5 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619,syscc=true,proposal=0xc4234bac80,canname=escc:1.1.0 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org2.example.com | [5ac 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [592 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [5d6 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [5aa 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2d9387d]Move state message COMPLETED +peer0.org2.example.com | [5ad 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer1.org2.example.com | [593 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [5d7 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5ae 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]No state associated with key: +peer1.org2.example.com | [594 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer1.org1.example.com | [5ab 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2d9387d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | exp02. Sending RESPONSE with an empty payload +peer0.org2.example.com | [5af 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [67a5c483]handleGetState serial send RESPONSE +peer0.org2.example.com | [5b0 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Received message RESPONSE from shim +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | vA2BLfriqQ== +peer1.org2.example.com | [595 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [5ac 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2d9387d]send state message COMPLETED +peer0.org1.example.com | [5d8 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org2.example.com | [5b1 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67a5c483]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [596 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42335d950 envbytes 0xc422536380 +peer1.org1.example.com | [5ad 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2d9387d]Received message COMPLETED from shim +peer0.org2.example.com | [5b2 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [67a5c483]before send +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [597 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422536380 +peer0.org1.example.com | [5d9 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [417 01-13 06:14:13.11 UTC] [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 | [5b3 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [67a5c483]after send +peer1.org1.example.com | [5ae 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2d9387d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [5b4 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [67a5c483]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [5da 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [598 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [5af 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b2d9387ddd8a7b5e09a0f50df6b05c0223bf965697106ddef5bd18454cf8e883]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5b5 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [67a5c483]GetState received payload RESPONSE +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [599 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer0.org1.example.com | [5db 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [5b0 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b2d9387ddd8a7b5e09a0f50df6b05c0223bf965697106ddef5bd18454cf8e883, channelID: +peer0.org2.example.com | [5b6 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [67a5c483]Sending PUT_STATE +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [59a 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=27c66eef-1ac2-4c52-af9e-f2eb9a42abf6,syscc=true,proposal=0x0,canname=vscc:1.1.0 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [5b7 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message PUT_STATE from shim +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [5dc 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [5b1 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5b8 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [59b 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 chaindID businesschannel +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [5b9 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5dd 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Move state message TRANSACTION +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [5b2 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +explorer | -------------------- +peer0.org2.example.com | [5ba 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]state is ready +peer1.org2.example.com | [59c 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [5de 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer0.org2.example.com | [5bb 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [59d 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [5b3 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [5bc 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [67a5c483]enterBusyState trigger event RESPONSE +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [59e 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [5df 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [5bd 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message RESPONSE +peer1.org1.example.com | [5b4 01-13 06:14:20.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:38776) +peer1.org2.example.com | [59f 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [27c66eef]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5e0 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]sending state message TRANSACTION +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [5be 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [5b5 01-13 06:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\210\017\213\325\242\323\316\313\251(\210.\234t\355\325J\2307<\250x\344[)c\017U\032\017\2420" channel_MAC:"\311\222\272c\237\033_}\313B\265^\250\200\004%\007)0\307\316\225\275\024;\354\371\003\2634\010\r" properties: > , Envelope: 109 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found +peer1.org2.example.com | [5a0 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [5e1 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Received message TRANSACTION from shim +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [5bf 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5a1 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [27c66eef]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [5e2 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org2.example.com | [5c0 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message RESPONSE +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org1.example.com | [5b6 01-13 06:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\210\017\213\325\242\323\316\313\251(\210.\234t\355\325J\2307<\250x\344[)c\017U\032\017\2420" channel_MAC:"\311\222\272c\237\033_}\313B\265^\250\200\004%\007)0\307\316\225\275\024;\354\371\003\2634\010\r" properties: > , Envelope: 109 bytes, Signature: 70 bytes isn't valid +peer1.org2.example.com | [5a2 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27c66eef]Move state message TRANSACTION +peer0.org2.example.com | [5c1 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Received message RESPONSE from shim +peer0.org1.example.com | [5e3 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a035035f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org2.example.com | [5a3 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27c66eef]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5b7 01-13 06:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\210\017\213\325\242\323\316\313\251(\210.\234t\355\325J\2307<\250x\344[)c\017U\032\017\2420" channel_MAC:"\311\222\272c\237\033_}\313B\265^\250\200\004%\007)0\307\316\225\275\024;\354\371\003\2634\010\r" properties: > , Envelope: 109 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found +peer0.org2.example.com | [5c2 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67a5c483]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | at next (native) +peer0.org1.example.com | [5e4 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [5a4 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer0.org2.example.com | [5c3 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [67a5c483]before send +peer1.org1.example.com | [5b8 01-13 06:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\210\017\213\325\242\323\316\313\251(\210.\234t\355\325J\2307<\250x\344[)c\017U\032\017\2420" channel_MAC:"\311\222\272c\237\033_}\313B\265^\250\200\004%\007)0\307\316\225\275\024;\354\371\003\2634\010\r" properties: > , Envelope: 109 bytes, Signature: 70 bytes isn't valid +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org2.example.com | [5a5 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27c66eef]sending state message TRANSACTION +peer0.org1.example.com | [5e5 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org2.example.com | [5c4 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [67a5c483]after send +peer1.org1.example.com | [5b9 01-13 06:14:23.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��բ��˩(�.�t��J�7<�x�[)cU�0 message sent from �D8$B����*��?�) ��C^���æ����� +peer1.org2.example.com | [5a6 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27c66eef]Received message TRANSACTION from shim +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer1.org2.example.com | [5a7 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27c66eef]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [5c5 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [67a5c483]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [5ba 01-13 06:14:23.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer ��բ��˩(�.�t��J�7<�x�[)cU�0 message sent from ؎��9�L�YOjfQ�/I��Udż p\y +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [5a8 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [27c66eef]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [5e6 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5c6 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [67a5c483]Received RESPONSE. Successfully updated state +peer1.org2.example.com | [5a9 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [5bb 01-13 06:14:24.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | [5e7 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Move state message COMPLETED +orderer.example.com | [418 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [5aa 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [5c7 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified +peer0.org1.example.com | [5e8 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [5bc 01-13 06:14:24.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +peer1.org2.example.com | [5ab 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [419 01-13 06:14:13.11 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 +explorer | errno: 1146, +peer0.org2.example.com | [5c8 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [5bd 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [5ac 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [5e9 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]send state message COMPLETED +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +orderer.example.com | [41a 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [5c9 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Move state message COMPLETED +peer1.org2.example.com | [5ad 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [5ea 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Received message COMPLETED from shim +peer1.org1.example.com | [5be 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [5ae 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +explorer | sqlState: '42S02', +orderer.example.com | [41b 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [5ca 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67a5c483]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5eb 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5bf 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42318ace0 env 0xc422b03b90 txn 0 +peer1.org2.example.com | [5af 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [41c 01-13 06:14:13.11 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 +explorer | index: 0, +peer0.org2.example.com | [5cb 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]send state message COMPLETED +peer1.org1.example.com | [5c0 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422b03b90 +peer1.org2.example.com | [5b0 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4a0f0fbb-d464-4a8c-b2e2-b900fde73ee5] +orderer.example.com | [41d 01-13 06:14:13.11 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: +peer0.org1.example.com | [5ec 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619]HandleMessage- COMPLETED. Notify +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [5c1 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +peer1.org2.example.com | [5b1 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [41e 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [5ed 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619, channelID:businesschannel +peer0.org2.example.com | [5cc 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message COMPLETED from shim +peer1.org1.example.com | [5c2 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [5b2 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [4a0f0fbb-d464-4a8c-b2e2-b900fde73ee5] +explorer | [2018-01-13 06:14:55.531] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [5ee 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [41f 01-13 06:14:13.11 UTC] [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.org2.example.com | [5b3 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org1.example.com | [5c3 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [5ef 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [5b4 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc422b20320)} +peer1.org1.example.com | [5c4 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [420 01-13 06:14:13.11 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 | [5cd 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5f0 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [5b5 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [421 01-13 06:14:13.11 UTC] [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 | [5c5 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [5b6 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27c66eef]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5f1 01-13 06:14:21.64 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 [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [5ce 01-13 06:14:29.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053]HandleMessage- COMPLETED. Notify +orderer.example.com | [422 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [5b7 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27c66eef]Move state message COMPLETED +peer0.org1.example.com | [5f2 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53662) +peer1.org1.example.com | [5c6 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [5cf 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, channelID:businesschannel +orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [5b8 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27c66eef]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5f3 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40096 +peer1.org1.example.com | [5c7 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4224a0a80, header channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [5b9 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27c66eef]send state message COMPLETED +peer0.org2.example.com | [5d0 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [5c8 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [5f4 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228d24b0 +peer1.org2.example.com | [5ba 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27c66eef]Received message COMPLETED from shim +peer0.org2.example.com | [5d1 01-13 06:14:29.96 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=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053,syscc=false,proposal=0xc4225d2eb0,canname=exp02:1.0 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org1.example.com | [5c9 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [5f5 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [5bb 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27c66eef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at emitOne (events.js:96:13) +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [5d2 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2256 bytes from file system +peer0.org1.example.com | [5f6 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [5bc 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27c66eef-1ac2-4c52-af9e-f2eb9a42abf6]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [5ca 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [5d3 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org2.example.com | [5bd 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:27c66eef-1ac2-4c52-af9e-f2eb9a42abf6, channelID:businesschannel +peer0.org1.example.com | [5f7 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +peer0.org2.example.com | [5d4 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [5cb 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [5f8 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [5be 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5d5 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [5f9 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [5cc 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [5bf 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer0.org1.example.com | [5fa 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4232fd540, header 0xc4228d2810 +peer1.org1.example.com | [5cd 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +explorer | -------------------- +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +peer1.org2.example.com | [5c0 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422536380 +peer0.org2.example.com | [5d6 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org1.example.com | [5fb 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [5ce 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422b03b90 envbytes 0xc421d11600 +peer1.org2.example.com | [5c1 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42335d950 envbytes 0xc422536380 +peer0.org2.example.com | [5d7 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +orderer.example.com | oQmWQsjpiQ== +peer0.org1.example.com | [5fc 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +peer1.org1.example.com | [5cf 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421d11600 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [5c2 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423329c00 env 0xc42335d950 txn 0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [5d8 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org1.example.com | [5d0 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [5fd 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [5c3 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | [423 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [5d1 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer1.org2.example.com | [5c4 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [5d9 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [5d2 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=9ea1cf04-9bac-49c7-9fbb-749af11abb7f,syscc=true,proposal=0x0,canname=vscc:1.1.0 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [5c5 01-13 06:14:31.79 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 | [5fe 01-13 06:14:21.96 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 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [5d3 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 chaindID businesschannel +peer1.org2.example.com | [5c6 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [5d4 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [5da 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org2.example.com | [5c7 01-13 06:14:31.79 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 | [5ff 01-13 06:14:21.96 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 = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | [5d5 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [5c8 01-13 06:14:31.79 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 | CORE_CHAINCODE_ID_NAME=exp02:1.0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [5d6 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [5c9 01-13 06:14:31.79 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 | [600 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [5d7 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ea1cf04]Inside sendExecuteMessage. Message TRANSACTION +explorer | at ontimeout (timers.js:386:11) +peer0.org1.example.com | [601 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +peer1.org2.example.com | [5ca 01-13 06:14:31.79 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 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer1.org1.example.com | [5d8 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org1.example.com | [602 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel version: 1.1.0 +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer1.org2.example.com | [5cb 01-13 06:14:31.79 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 | [5d9 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ea1cf04]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org1.example.com | [603 01-13 06:14:21.96 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.1.0,txid=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95,syscc=true,proposal=0xc4232fd540,canname=lscc:1.1.0 +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer1.org2.example.com | [5cc 01-13 06:14:31.79 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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] marked as valid by state validator +peer1.org1.example.com | [5da 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ea1cf04]Move state message TRANSACTION +peer0.org1.example.com | [604 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [5db 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ea1cf04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5cd 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer0.org1.example.com | [605 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5dc 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5ce 01-13 06:14:31.79 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 | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer1.org1.example.com | [5dd 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ea1cf04]sending state message TRANSACTION +peer0.org1.example.com | [606 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org2.example.com | [5cf 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [5de 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ea1cf04]Received message TRANSACTION from shim +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | [607 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [424 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [5d0 01-13 06:14:31.79 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 | [5df 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ea1cf04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | errno: 1146, +orderer.example.com | [425 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [608 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [5e0 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9ea1cf04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [5d1 01-13 06:14:31.85 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 | [426 01-13 06:14:13.11 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.org1.example.com | [5e1 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [5d2 01-13 06:14:31.85 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{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org1.example.com | [609 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [5db 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-exp02-1.0) lock +orderer.example.com | [427 01-13 06:14:13.11 UTC] [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 | [5e2 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +explorer | sqlState: '42S02', +peer1.org2.example.com | txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 +orderer.example.com | [428 01-13 06:14:13.11 UTC] [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 +peer1.org1.example.com | [5e3 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [60a 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]sendExecuteMsg trigger event TRANSACTION +explorer | index: 0, +peer0.org2.example.com | [5dc 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-exp02-1.0) lock +peer1.org2.example.com | ] +orderer.example.com | [429 01-13 06:14:13.11 UTC] [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 | [5e4 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +orderer.example.com | [42a 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org1.example.com | [60b 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message TRANSACTION +peer1.org2.example.com | [5d3 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to index +peer0.org2.example.com | [5dd 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 +peer1.org1.example.com | [5e5 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [42b 01-13 06:14:13.11 UTC] [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 +explorer | [2018-01-13 06:14:56.506] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer1.org2.example.com | [5d4 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx number:[0] ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to blockNumTranNum index +peer0.org1.example.com | [60c 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5e6 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | [42c 01-13 06:14:13.11 UTC] [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 | [5de 01-13 06:14:29.96 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) +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [60d 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5d5 01-13 06:14:31.85 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=[45416], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [5e7 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org2.example.com | [5df 01-13 06:14:29.96 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) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [42d 01-13 06:14:13.11 UTC] [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 | [5d6 01-13 06:14:31.85 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 | [60e 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message TRANSACTION +peer0.org2.example.com | [5e0 01-13 06:14:29.96 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) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org1.example.com | [5e8 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [fefb2449-fe78-4c38-a7c7-ada320dc860c] +orderer.example.com | [42e 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [60f 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message TRANSACTION from shim +peer1.org2.example.com | [5d7 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [5e1 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 +peer1.org1.example.com | [5e9 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [42f 01-13 06:14:13.11 UTC] [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 +peer0.org1.example.com | [610 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5d8 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [5e2 01-13 06:14:29.96 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +orderer.example.com | [430 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | [611 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cbfac003]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [5d9 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [5ea 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [fefb2449-fe78-4c38-a7c7-ada320dc860c] +peer0.org1.example.com | [612 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [cbfac003]Sending GET_STATE +orderer.example.com | [431 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org2.example.com | [5e3 01-13 06:14:29.97 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [5da 01-13 06:14:31.85 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 | [432 01-13 06:14:13.11 UTC] [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 | [5eb 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [613 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message GET_STATE from shim +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [5db 01-13 06:14:31.86 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 | [5e4 01-13 06:14:29.97 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +orderer.example.com | [433 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org1.example.com | [614 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [5ec 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc421e10860)} +peer1.org2.example.com | [5dc 01-13 06:14:31.86 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 | [5e5 01-13 06:14:29.97 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +orderer.example.com | [434 01-13 06:14:13.11 UTC] [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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [5ed 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [615 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cbfac003]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [5dd 01-13 06:14:31.86 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}] +orderer.example.com | [435 01-13 06:14:13.11 UTC] [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 | FROM hyperledger/fabric-baseos:x86_64-0.4.2 +peer1.org1.example.com | [5ee 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ea1cf04]Transaction completed. Sending COMPLETED +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [436 01-13 06:14:13.11 UTC] [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.org2.example.com | [5de 01-13 06:14:31.86 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 | [616 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin +explorer | -------------------- +orderer.example.com | [437 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org1.example.com | [5ef 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ea1cf04]Move state message COMPLETED +peer1.org2.example.com | [5df 01-13 06:14:31.86 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 | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [617 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | [438 01-13 06:14:13.11 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 +peer1.org1.example.com | [5f0 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ea1cf04]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | [618 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [439 01-13 06:14:13.11 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [619 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]No state associated with key: +peer1.org2.example.com | [5e0 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | [5f1 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ea1cf04]send state message COMPLETED +orderer.example.com | [43a 01-13 06:14:13.11 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 | exp02. Sending RESPONSE with an empty payload +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [5f2 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ea1cf04]Received message COMPLETED from shim +peer1.org2.example.com | [5e1 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer0.org2.example.com | org.hyperledger.fabric.version="1.1.0" \ +orderer.example.com | [43b 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [61a 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]handleGetState serial send RESPONSE +peer1.org1.example.com | [5f3 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ea1cf04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5e2 01-13 06:14:31.86 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] +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [61b 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message RESPONSE from shim +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.4.2" +orderer.example.com | [43c 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/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 | [61c 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [5e3 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [5f4 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9ea1cf04-9bac-49c7-9fbb-749af11abb7f]HandleMessage- COMPLETED. Notify +orderer.example.com | [43d 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/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.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org1.example.com | [61d 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]before send +peer1.org2.example.com | [5e4 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +orderer.example.com | [43e 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [5f5 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9ea1cf04-9bac-49c7-9fbb-749af11abb7f, channelID:businesschannel +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [5e6 01-13 06:14:29.97 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 | [61e 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]after send +orderer.example.com | [43f 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [5f6 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [5e5 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +explorer | at next (native) +peer0.org2.example.com | [5e7 01-13 06:14:29.97 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +peer0.org1.example.com | [61f 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cbfac003]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [5f7 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +orderer.example.com | [440 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [5e6 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [5e8 01-13 06:14:29.97 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +peer0.org1.example.com | [620 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [cbfac003]GetState received payload RESPONSE +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [5f8 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421d11600 +peer0.org1.example.com | [621 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [cbfac003]Sending PUT_STATE +orderer.example.com | [441 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +peer0.org2.example.com | [5e9 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [5e7 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [622 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message PUT_STATE from shim +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [5f9 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422b03b90 envbytes 0xc421d11600 +orderer.example.com | [442 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [623 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [5e8 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [5ea 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [443 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [624 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5e9 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [5fb 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [625 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]state is ready +peer1.org1.example.com | [5fc 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org1.example.com | [626 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [5eb 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b317e0 env 0xc422c9a420 txn 0 +orderer.example.com | [444 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 | [5ea 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +explorer | errno: 1146, +peer0.org1.example.com | [627 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [5ec 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422c9a420 +peer1.org1.example.com | [5fd 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +orderer.example.com | [445 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [628 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message RESPONSE +peer0.org2.example.com | [5ed 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org2.example.com | [5eb 01-13 06:14:31.87 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [5fe 01-13 06:14:31.85 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 | [629 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [5ee 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | sqlState: '42S02', +orderer.example.com | [446 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [5ec 01-13 06:14:31.87 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [62a 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5ff 01-13 06:14:31.85 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 | [5ef 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | index: 0, +orderer.example.com | [447 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [62b 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message RESPONSE +peer0.org2.example.com | [5f0 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org2.example.com | [5ed 01-13 06:14:31.87 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [600 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | [448 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [62c 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message RESPONSE from shim +peer0.org2.example.com | [5f1 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [5ee 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:57154 +explorer | [2018-01-13 06:14:56.604] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [62d 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [601 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [449 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org2.example.com | [5f2 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [62e 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]before send +peer1.org2.example.com | [5ef 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224c1050 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org2.example.com | [5f3 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422cca000, header channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +peer0.org1.example.com | [62f 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]after send +orderer.example.com | [44a 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 | [5f0 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [602 01-13 06:14:31.85 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 | [5f4 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [630 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cbfac003]Received RESPONSE, communicated (state:ready) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [5f1 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [44b 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 | [603 01-13 06:14:31.85 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 | [631 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [cbfac003]Received RESPONSE. Successfully updated state +peer0.org2.example.com | [5f5 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [5f2 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer0.org2.example.com | [5f6 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [604 01-13 06:14:31.85 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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] marked as valid by state validator +orderer.example.com | [44c 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [632 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified +peer1.org2.example.com | [5f3 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5f7 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [605 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [633 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Transaction completed. Sending COMPLETED +orderer.example.com | [44d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [5f4 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [5f8 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer0.org1.example.com | [634 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Move state message COMPLETED +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org1.example.com | [606 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [44e 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org2.example.com | [5f9 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [5f5 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234c03c0, header 0xc4224c13e0 +peer0.org1.example.com | [635 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [5fa 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422c9a420 envbytes 0xc422592380 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [44f 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [636 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]send state message COMPLETED +peer0.org2.example.com | [5fb 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422592380 +peer1.org1.example.com | [607 01-13 06:14:31.85 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 | [5f6 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [637 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message COMPLETED from shim +peer0.org2.example.com | [5fc 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [450 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [5f7 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712 +peer1.org1.example.com | [608 01-13 06:14:31.85 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 | [5fd 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer0.org1.example.com | [638 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at Socket.emit (events.js:188:7) +peer1.org2.example.com | [5f8 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712] +orderer.example.com | [451 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 | [5fe 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=c5c0b078-7246-4b3e-ae7f-8492b440291a,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [5fa 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42318ace0 env 0xc422b03b90 txn 0 +peer0.org1.example.com | [639 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95]HandleMessage- COMPLETED. Notify +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [5ff 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 chaindID businesschannel +orderer.example.com | [452 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +peer1.org1.example.com | [609 01-13 06:14:31.87 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] +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [5f9 01-13 06:14:37.20 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 | [600 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [63a 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +orderer.example.com | [453 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [60a 01-13 06:14:31.87 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{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +peer0.org2.example.com | [601 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | -------------------- +peer1.org2.example.com | [5fa 01-13 06:14:37.20 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 = [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712] +peer0.org1.example.com | [63b 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [602 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org1.example.com | txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [454 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org2.example.com | [5fb 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712 channel id: businesschannel +peer0.org1.example.com | [63c 01-13 06:14:21.97 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=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95,syscc=false,proposal=0xc4232fd540,canname=exp02:1.0 +peer0.org2.example.com | [603 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c5c0b078]Inside sendExecuteMessage. Message TRANSACTION +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org1.example.com | ] +peer1.org2.example.com | [5fc 01-13 06:14:37.20 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.1.0,txid=0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712,syscc=true,proposal=0xc4234c03c0,canname=lscc:1.1.0 +orderer.example.com | [455 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [604 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [63d 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2256 bytes from file system +peer1.org1.example.com | [60b 01-13 06:14:31.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to index +peer1.org2.example.com | [5fd 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [456 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 | [605 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c5c0b078]sendExecuteMsg trigger event TRANSACTION +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [60c 01-13 06:14:31.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx number:[0] ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to blockNumTranNum index +peer1.org2.example.com | [5fe 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [63e 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +orderer.example.com | [457 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [606 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5c0b078]Move state message TRANSACTION +peer1.org1.example.com | [60d 01-13 06:14:31.88 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=[45416], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | [458 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org2.example.com | [5ff 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [63f 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [60e 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [459 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [45a 01-13 06:14:13.12 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 | [45b 01-13 06:14:13.12 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.org1.example.com | [60f 01-13 06:14:31.88 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 | [610 01-13 06:14:31.88 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 | [611 01-13 06:14:31.88 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 | [612 01-13 06:14:31.88 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 | [613 01-13 06:14:31.88 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 | [614 01-13 06:14:31.88 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 | [615 01-13 06:14:31.88 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 | [616 01-13 06:14:31.88 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 | [617 01-13 06:14:31.88 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 | [618 01-13 06:14:31.88 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 | [619 01-13 06:14:31.88 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 | [61a 01-13 06:14:31.88 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 | [61b 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [61c 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +peer1.org1.example.com | [61d 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [61e 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [61f 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [620 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [621 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [622 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [623 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [624 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [625 01-13 06:14:31.88 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [626 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [627 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [628 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4224edfa0 env 0xc4224fd020 txn 0 +peer1.org1.example.com | [629 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224fd020 +peer0.org1.example.com | [640 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [607 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c5c0b078]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [45c 01-13 06:14:13.12 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 | [600 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]Inside sendExecuteMessage. Message TRANSACTION +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | [62a 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +peer0.org1.example.com | [641 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org2.example.com | [608 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +orderer.example.com | [45d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [601 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [609 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5c0b078]sending state message TRANSACTION +peer0.org1.example.com | [642 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [62b 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [602 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [62c 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [45e 01-13 06:14:13.12 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 +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [643 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | [60a 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5c0b078]Received message TRANSACTION from shim +peer1.org1.example.com | [62d 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer1.org2.example.com | [603 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [45f 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [644 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | [60b 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5c0b078]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [604 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Move state message TRANSACTION +peer0.org1.example.com | [645 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | [62e 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | errno: 1146, +orderer.example.com | [460 01-13 06:14:13.12 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 | [461 01-13 06:14:13.12 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 | [462 01-13 06:14:13.12 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 | [463 01-13 06:14:13.12 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 | [464 01-13 06:14:13.12 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 | [60c 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c5c0b078]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [60d 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [605 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [606 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [607 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]sending state message TRANSACTION +peer1.org2.example.com | [608 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Received message TRANSACTION from shim +peer1.org2.example.com | [609 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [60a 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e5d1aa3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [60b 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0e5d1aa3]Sending GET_STATE +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +orderer.example.com | [465 01-13 06:14:13.12 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 | [466 01-13 06:14:13.12 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 | [467 01-13 06:14:13.12 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 [] +peer1.org1.example.com | [62f 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [60c 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message GET_STATE from shim +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [60e 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [468 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [60d 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [630 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422ffca80, header channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +explorer | sqlState: '42S02', +peer0.org2.example.com | [60f 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [469 01-13 06:14:13.12 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.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | [60e 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0e5d1aa3]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [631 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +explorer | index: 0, +peer0.org2.example.com | [610 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [46a 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [60f 01-13 06:14:37.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [632 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | [611 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [46b 01-13 06:14:13.12 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' +peer1.org1.example.com | [633 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | [2018-01-13 06:14:57.513] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org2.example.com | [612 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [610 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e5d1aa3] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [634 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [46c 01-13 06:14:13.12 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 | [613 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [635 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer1.org2.example.com | [611 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [46d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org2.example.com | [614 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [9e5876f9-88e7-4fa4-9bb1-7fb24b82123d] +peer1.org2.example.com | [612 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e5d1aa3]Got state. Sending RESPONSE +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [615 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [636 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [46e 01-13 06:14:13.12 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 | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [613 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0e5d1aa3]handleGetState serial send RESPONSE +peer0.org2.example.com | [616 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [9e5876f9-88e7-4fa4-9bb1-7fb24b82123d] +peer1.org1.example.com | [637 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4224fd020 envbytes 0xc422fff000 +peer0.org1.example.com | [646 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [46f 01-13 06:14:13.12 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 | [617 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [614 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Received message RESPONSE from shim +peer1.org1.example.com | [638 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422fff000 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [470 01-13 06:14:13.12 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 | [647 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock +peer0.org2.example.com | [618 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc4227a7cc0)} +peer1.org1.example.com | [639 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [615 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [648 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +peer0.org2.example.com | [619 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [471 01-13 06:14:13.12 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 +peer1.org1.example.com | [63a 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer1.org2.example.com | [616 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0e5d1aa3]before send +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [472 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [617 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0e5d1aa3]after send +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [649 01-13 06:14:21.98 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.org2.example.com | [61a 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5c0b078]Transaction completed. Sending COMPLETED +orderer.example.com | [473 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [63b 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=90d03ce7-4954-4172-bed0-2d4ea7f66060,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org2.example.com | [619 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0e5d1aa3]GetState received payload RESPONSE +peer0.org2.example.com | [61b 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5c0b078]Move state message COMPLETED +orderer.example.com | [474 01-13 06:14:13.12 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [64a 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +peer1.org2.example.com | [61a 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [63c 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 chaindID businesschannel +orderer.example.com | [475 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [61c 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5c0b078]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [64b 01-13 06:14:21.98 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 | [64c 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +peer1.org1.example.com | [63d 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [61d 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5c0b078]send state message COMPLETED +explorer | -------------------- +orderer.example.com | [476 01-13 06:14:13.12 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 | [64d 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +peer1.org1.example.com | [63e 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [618 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0e5d1aa3]Received RESPONSE, communicated (state:ready) +orderer.example.com | [477 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608B5C7E6D20522...45B3F0B087BAA1ADE682671627A5C160 +peer0.org2.example.com | [61e 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5c0b078]Received message COMPLETED from shim +peer0.org1.example.com | [64e 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +peer1.org1.example.com | [63f 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [61b 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Move state message COMPLETED +orderer.example.com | [478 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 8EDE745573BD5D18153BBFFA44D84BC12F26100DB4E5D9D6464224B1F98739C7 +peer0.org2.example.com | [61f 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c5c0b078]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [64f 01-13 06:14:21.98 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 | [640 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90d03ce7]Inside sendExecuteMessage. Message TRANSACTION +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [61c 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [479 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org2.example.com | [620 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c5c0b078-7246-4b3e-ae7f-8492b440291a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [650 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org1.example.com | [641 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [47a 01-13 06:14:13.12 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [61d 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]send state message COMPLETED +peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 +peer0.org2.example.com | [621 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c5c0b078-7246-4b3e-ae7f-8492b440291a, channelID:businesschannel +orderer.example.com | [47b 01-13 06:14:13.12 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 | [61e 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message COMPLETED from shim +peer0.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org1.example.com | [642 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90d03ce7]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [622 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [47c 01-13 06:14:13.12 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 | [61f 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [47d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +peer0.org2.example.com | [623 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer1.org2.example.com | [620 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [643 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90d03ce7]Move state message TRANSACTION +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +orderer.example.com | [47e 01-13 06:14:13.12 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 | [621 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712, channelID:businesschannel +peer0.org2.example.com | [624 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422592380 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +orderer.example.com | [47f 01-13 06:14:13.12 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.org2.example.com | [622 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [644 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90d03ce7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [625 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422c9a420 envbytes 0xc422592380 +peer1.org2.example.com | [623 01-13 06:14:37.21 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 +explorer | at next (native) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ +peer1.org1.example.com | [645 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [624 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712 channel id: businesschannel version: 1.0 +peer0.org2.example.com | [626 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b317e0 env 0xc422c9a420 txn 0 +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [646 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90d03ce7]sending state message TRANSACTION +peer1.org2.example.com | [625 01-13 06:14:37.21 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=0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712,syscc=false,proposal=0xc4234c03c0,canname=exp02:1.0 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV +peer1.org1.example.com | [647 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90d03ce7]Received message TRANSACTION from shim +peer0.org2.example.com | [627 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [626 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712,syscc=true,proposal=0xc4234c03c0,canname=lscc:1.1.0 +peer0.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [648 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90d03ce7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [627 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org2.example.com | [628 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +peer1.org1.example.com | [649 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90d03ce7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [628 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR +peer0.org2.example.com | [629 01-13 06:14:31.83 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 | [651 01-13 06:14:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA +peer1.org2.example.com | [629 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [64a 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY +peer1.org2.example.com | [62a 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [62a 01-13 06:14:31.83 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 | [652 01-13 06:14:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +peer1.org1.example.com | [64b 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 +explorer | errno: 1146, +peer1.org2.example.com | [62b 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [64c 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X +peer0.org2.example.com | [62b 01-13 06:14:31.84 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 | [62c 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [64d 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [653 01-13 06:14:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [62c 01-13 06:14:31.84 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 | [64e 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [62d 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [480 01-13 06:14:13.13 UTC] [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 0xc42011ce10 gate 1515824053130235231 evaluation starts +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [64f 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org2.example.com | [62d 01-13 06:14:31.84 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 | [654 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53668 +peer1.org2.example.com | [62e 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Move state message TRANSACTION +explorer | sqlState: '42S02', +peer1.org1.example.com | [650 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [481 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [62e 01-13 06:14:31.84 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 | [655 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422592240 +peer1.org1.example.com | [651 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [fd11be12-2a03-438b-ab83-61405e82f570] +explorer | index: 0, +peer1.org2.example.com | [62f 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [62f 01-13 06:14:31.84 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 | [656 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [652 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [630 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [482 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [630 01-13 06:14:31.84 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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] marked as valid by state validator +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:14:57.694] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org1.example.com | [657 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [483 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org2.example.com | [631 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]sending state message TRANSACTION +peer0.org2.example.com | [631 01-13 06:14:31.84 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 | [653 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [fd11be12-2a03-438b-ab83-61405e82f570] +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [658 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org2.example.com | [632 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Received message TRANSACTION from shim +orderer.example.com | [484 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 principal evaluation fails +peer1.org1.example.com | [654 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org2.example.com | [632 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [659 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [655 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc421e10860)} +peer1.org2.example.com | [633 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [633 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [485 01-13 06:14:13.13 UTC] [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 0xc42011ce10 gate 1515824053130235231 evaluation fails +peer1.org1.example.com | [656 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org1.example.com | [65a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [634 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e5d1aa3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [634 01-13 06:14:31.85 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 | [657 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90d03ce7]Transaction completed. Sending COMPLETED +orderer.example.com | [486 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [635 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0e5d1aa3]Sending GET_STATE +peer0.org1.example.com | [65b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422666820, header 0xc4225927b0 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [635 01-13 06:14:31.85 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 | [658 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90d03ce7]Move state message COMPLETED +peer1.org2.example.com | [636 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message GET_STATE from shim +orderer.example.com | [487 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [65c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer1.org1.example.com | [659 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90d03ce7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [637 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [65a 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90d03ce7]send state message COMPLETED +orderer.example.com | [488 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +peer0.org2.example.com | [636 01-13 06:14:31.86 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{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +peer1.org1.example.com | [65b 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90d03ce7]Received message COMPLETED from shim +peer0.org1.example.com | [65d 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 +explorer | at emitOne (events.js:96:13) +peer1.org2.example.com | [638 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0e5d1aa3]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [65c 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90d03ce7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [489 01-13 06:14:13.13 UTC] [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 0xc42011ce20 gate 1515824053131304696 evaluation starts +peer0.org2.example.com | txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [65d 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [90d03ce7-4954-4172-bed0-2d4ea7f66060]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [639 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [65e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +orderer.example.com | [48a 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | ] +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [63a 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e5d1aa3] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [65e 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:90d03ce7-4954-4172-bed0-2d4ea7f66060, channelID:businesschannel +peer0.org1.example.com | [65f 01-13 06:14:22.70 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 | [637 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to index +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [48b 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [63b 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [65f 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [660 01-13 06:14:22.70 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 = [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +explorer | -------------------- +peer0.org2.example.com | [638 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx number:[0] ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to blockNumTranNum index +orderer.example.com | [48c 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer1.org1.example.com | [660 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, error Chaincode exp02 is already instantiated +peer1.org2.example.com | [63c 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e5d1aa3]Got state. Sending RESPONSE +peer0.org1.example.com | [661 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel +peer0.org2.example.com | [639 01-13 06:14:31.86 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=[45416], isChainEmpty=[false], lastBlockNumber=[3] +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [48d 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 principal evaluation fails +peer1.org2.example.com | [63d 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0e5d1aa3]handleGetState serial send RESPONSE +peer0.org1.example.com | [662 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | [661 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [48e 01-13 06:14:13.13 UTC] [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 0xc42011ce20 gate 1515824053131304696 evaluation fails +peer0.org2.example.com | [63a 01-13 06:14:31.86 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 | [663 01-13 06:14:22.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=qscc,version=1.1.0,txid=efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2,syscc=true,proposal=0xc422666820,canname=qscc:1.1.0 +peer1.org1.example.com | [662 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422fff000 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [48f 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [63e 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Received message RESPONSE from shim +peer0.org2.example.com | [63b 01-13 06:14:31.86 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 | [663 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4224fd020 envbytes 0xc422fff000 +peer0.org1.example.com | [664 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org2.example.com | [63f 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [490 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [664 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 returned error Chaincode exp02 is already instantiated +peer0.org2.example.com | [63c 01-13 06:14:31.86 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 | [665 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [640 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0e5d1aa3]before send +peer1.org1.example.com | [665 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4224edfa0 env 0xc4224fd020 txn 0 +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [491 01-13 06:14:13.13 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 ] +peer0.org2.example.com | [63d 01-13 06:14:31.86 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 | [666 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org2.example.com | [641 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0e5d1aa3]after send +peer1.org1.example.com | [666 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org2.example.com | [63e 01-13 06:14:31.86 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 | [492 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers +peer0.org1.example.com | [667 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [667 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [642 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0e5d1aa3]Received RESPONSE, communicated (state:ready) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org2.example.com | [63f 01-13 06:14:36.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +orderer.example.com | [493 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +peer1.org1.example.com | [668 01-13 06:14:38.97 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 | [668 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [643 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0e5d1aa3]GetState received payload RESPONSE +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [640 01-13 06:14:36.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [669 01-13 06:14:38.97 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 | [669 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [494 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer1.org2.example.com | [644 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [641 01-13 06:14:36.06 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 | [66a 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org2.example.com | [645 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Move state message COMPLETED +peer0.org1.example.com | [66a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [495 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [642 01-13 06:14:36.13 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 | [66b 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org2.example.com | [646 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [496 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org2.example.com | [643 01-13 06:14:36.85 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 | [66b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Move state message TRANSACTION +peer1.org1.example.com | [66c 01-13 06:14:38.97 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 [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [497 01-13 06:14:13.13 UTC] [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 0xc42011ce28 gate 1515824053132897299 evaluation starts +peer0.org2.example.com | [644 01-13 06:14:36.85 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-exp02-1.0) +peer1.org2.example.com | [647 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]send state message COMPLETED +peer1.org1.example.com | [66d 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +explorer | errno: 1146, +peer0.org1.example.com | [66c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [498 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [645 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer1.org2.example.com | [648 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message COMPLETED from shim +peer1.org1.example.com | [66e 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +orderer.example.com | [499 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [66d 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [646 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [66f 01-13 06:14:38.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 | [649 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [49a 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +explorer | sqlState: '42S02', +peer0.org2.example.com | [647 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [66e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]sending state message TRANSACTION +peer1.org1.example.com | [670 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +orderer.example.com | [49b 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +explorer | index: 0, +peer0.org2.example.com | [648 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [64a 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [671 01-13 06:14:38.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 [4] +peer0.org1.example.com | [66f 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Received message TRANSACTION from shim +orderer.example.com | [49c 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 principal matched by identity 0 +peer0.org2.example.com | [649 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [64b 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712, channelID:businesschannel +peer1.org1.example.com | [672 01-13 06:14:38.98 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{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +orderer.example.com | [49d 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8e de 74 55 73 bd 5d 18 15 3b bf fa 44 d8 4b c1 |..tUs.]..;..D.K.| +peer0.org1.example.com | [670 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [64a 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org1.example.com | txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 +peer1.org2.example.com | [64c 01-13 06:14:37.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | [2018-01-13 06:14:58.509] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +orderer.example.com | 00000010 2f 26 10 0d b4 e5 d9 d6 46 42 24 b1 f9 87 39 c7 |/&......FB$...9.| +peer0.org1.example.com | [671 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [efe0ebfc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | ] +peer0.org2.example.com | [64b 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org2.example.com | [64d 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer0.org1.example.com | [672 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [49e 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f 26 32 b7 81 0b b2 ed e7 bf a1 e2 |0D. _&2.........| +peer1.org2.example.com | [64e 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer1.org1.example.com | [673 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to index +peer0.org1.example.com | [673 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Transaction completed. Sending COMPLETED +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [674 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx number:[0] ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to blockNumTranNum index +peer0.org1.example.com | [674 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Move state message COMPLETED +peer0.org2.example.com | [64c 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | 00000010 ef 65 26 f4 70 d1 c6 90 be de da 60 d2 f4 48 27 |.e&.p......`..H'| +peer1.org2.example.com | [64f 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [675 01-13 06:14:38.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=[50742], isChainEmpty=[false], lastBlockNumber=[4] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [64d 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org1.example.com | [675 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 00000020 14 e8 5d 38 02 20 7d 67 48 bf 4a 8b 45 e6 ef a9 |..]8. }gH.J.E...| +peer1.org2.example.com | [650 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer1.org1.example.com | [676 01-13 06:14:38.98 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 | [64e 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | 00000030 1a 45 67 4f 92 6d 07 d3 a5 16 1d d1 ff 66 3a 58 |.EgO.m.......f:X| +peer0.org1.example.com | [676 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]send state message COMPLETED +peer1.org2.example.com | [651 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +peer1.org1.example.com | [677 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [64f 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [652 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | 00000040 fe ff 44 ff 1e b8 |..D...| +peer0.org1.example.com | [677 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Received message COMPLETED from shim +peer1.org1.example.com | [678 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [49f 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [650 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [653 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org1.example.com | [678 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at emitOne (events.js:96:13) +orderer.example.com | [4a0 01-13 06:14:13.13 UTC] [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 0xc42011ce28 gate 1515824053132897299 evaluation succeeds +peer0.org2.example.com | [651 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message READY +peer1.org2.example.com | [654 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer1.org1.example.com | [679 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [679 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2]HandleMessage- COMPLETED. Notify +orderer.example.com | [4a1 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer0.org2.example.com | [652 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [67a 01-13 06:14:38.98 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 | [4a2 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [67a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2, channelID:businesschannel +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [653 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [67a5c483]Entered state ready +peer1.org1.example.com | [67b 01-13 06:14:38.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 | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [4a3 01-13 06:14:13.13 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [654 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, channelID:businesschannel +peer0.org1.example.com | [67b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [67c 01-13 06:14:38.99 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 | [4a4 01-13 06:14:13.13 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 | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +explorer | -------------------- +peer0.org1.example.com | [67c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [67d 01-13 06:14:38.99 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 | [655 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message READY +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | [4a5 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +peer0.org1.example.com | [67d 01-13 06:14:22.70 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 | [67e 01-13 06:14:38.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 [4] with [1] transactions +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [656 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [4a6 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +peer0.org1.example.com | [67e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +peer1.org1.example.com | [67f 01-13 06:14:38.99 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 +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | [4a7 01-13 06:14:13.13 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.8:50086 +peer0.org2.example.com | [657 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [67f 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [680 01-13 06:14:38.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 [4] +orderer.example.com | [4a8 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [658 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry +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 | [681 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [680 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [4a9 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [659 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org1.example.com | [682 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 +peer1.org2.example.com | [655 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-exp02-1.0) lock +explorer | at next (native) +peer0.org1.example.com | [681 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [4aa 01-13 06:14:13.13 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 | [65a 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [67a5c483]Inside sendExecuteMessage. Message INIT +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer1.org1.example.com | [683 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [656 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-exp02-1.0) lock +peer0.org1.example.com | [682 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [65b 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [657 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org1.example.com | [683 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2,syscc=true,proposal=0xc422666820,canname=escc:1.1.0 +peer1.org1.example.com | [684 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [65c 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer1.org2.example.com | [658 01-13 06:14:37.22 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 | [685 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [4ab 01-13 06:14:13.13 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.org1.example.com | [684 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | [65d 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [67a5c483]sendExecuteMsg trigger event INIT +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [686 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [4ac 01-13 06:14:13.13 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.org1.example.com | [685 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [65e 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message INIT +explorer | errno: 1146, +peer1.org2.example.com | [659 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) +peer0.org1.example.com | [686 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [4ad 01-13 06:14:13.13 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 +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [687 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [65a 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) +peer0.org2.example.com | [65f 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: INIT in state ready +explorer | sqlState: '42S02', +peer0.org1.example.com | [687 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4ae 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [688 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [65b 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-exp02-1.0 +peer0.org2.example.com | [660 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | index: 0, +orderer.example.com | [4af 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [65c 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [689 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [65d 01-13 06:14:37.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 +peer0.org1.example.com | [688 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [4b0 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | [2018-01-13 06:14:58.749] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer1.org1.example.com | [68a 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [65e 01-13 06:14:37.23 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 | [689 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [661 01-13 06:14:36.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message INIT +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [68b 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [4b1 01-13 06:14:13.13 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 | [662 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message PUT_STATE from shim +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [65f 01-13 06:14:37.23 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org1.example.com | [68a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [68c 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:38852 +peer0.org2.example.com | [663 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [4b2 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer1.org1.example.com | [60f 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ab97f945-8687-45b3-b25a-e87e482c587d] -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [620 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9a47feb8-4733-43a0-86aa-4292a7060771]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [624 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [68b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Move state message TRANSACTION +peer1.org1.example.com | [68d 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422b27020 +peer0.org2.example.com | [664 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) peer1.org2.example.com | ADD binpackage.tar /usr/local/bin -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [610 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [621 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9a47feb8-4733-43a0-86aa-4292a7060771, channelID:businesschannel +orderer.example.com | [4b3 01-13 06:14:13.13 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.org1.example.com | [68c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [665 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]state is ready +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer0.org2.example.com | [666 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [68e 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [4b4 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [68d 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [667 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [67a5c483]enterBusyState trigger event RESPONSE +orderer.example.com | [4b5 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [668 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message RESPONSE +peer1.org1.example.com | [68f 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [68e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]sending state message TRANSACTION +orderer.example.com | [4b6 01-13 06:14:13.13 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 +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [669 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | [690 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [4b7 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [68f 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Received message TRANSACTION from shim +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [66a 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition peer1.org2.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer0.org1.example.com | [625 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [611 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [ab97f945-8687-45b3-b25a-e87e482c587d] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | [4b8 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org1.example.com | [690 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [691 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | -------------------- +peer0.org2.example.com | [66b 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message RESPONSE +peer0.org1.example.com | [691 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [efe0ebfc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4b9 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org1.example.com | [692 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully peer1.org2.example.com | org.hyperledger.fabric.base.version="0.4.2" -peer0.org2.example.com | [622 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [612 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org1.example.com | [613 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4229a2c80)} -peer0.org1.example.com | [626 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org1.example.com | [614 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org1.example.com | [627 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [66c 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message PUT_STATE from shim +peer0.org1.example.com | [692 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [693 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422bf9860, header 0xc422b27560 +orderer.example.com | [4ba 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [66d 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [693 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [623 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer1.org1.example.com | [615 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d850b29]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [628 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [661 01-05 06:36:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [616 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d850b29]Move state message COMPLETED -peer0.org2.example.com | [624 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422514880 -peer0.org1.example.com | [629 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [617 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d850b29]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [662 01-05 06:36:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer0.org2.example.com | [625 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422519590 envbytes 0xc422514880 -peer1.org1.example.com | [618 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d850b29]send state message COMPLETED -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [62a 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [619 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d850b29]Received message COMPLETED from shim -peer1.org2.example.com | [663 01-05 06:36:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer0.org2.example.com | [626 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422481400 env 0xc422519590 txn 0 -peer1.org1.example.com | [61a 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d850b29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [62b 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message TRANSACTION -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org2.example.com | [664 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer1.org1.example.com | [61b 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d850b29-cf7b-4718-b2a6-3dcd424523b7]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [627 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [62c 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [665 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer1.org1.example.com | [61c 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1d850b29-cf7b-4718-b2a6-3dcd424523b7, channelID:businesschannel -peer1.org1.example.com | [61d 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [628 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [62d 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [666 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [61e 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, error Chaincode exp02 is already instantiated -peer0.org2.example.com | [629 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer1.org1.example.com | [61f 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer0.org2.example.com | [62a 01-05 06:36:46.33 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 | [667 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org1.example.com | [620 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4202b2000 -peer0.org2.example.com | [62b 01-05 06:36:46.33 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 | [62e 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message TRANSACTION -orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | [621 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421eb2600 envbytes 0xc4202b2000 -peer1.org2.example.com | [668 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202d5980 env 0xc42028ef00 txn 0 -peer0.org2.example.com | [62c 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [622 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 returned error Chaincode exp02 is already instantiated -peer0.org1.example.com | [62f 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message TRANSACTION from shim -orderer.example.com | [40e 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [623 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423106260 env 0xc421eb2600 txn 0 -peer0.org2.example.com | [62d 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [624 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer0.org2.example.com | [62e 01-05 06:36:46.33 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 | [669 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42028ef00 -peer0.org1.example.com | [630 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [625 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [62f 01-05 06:36:46.33 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 | [626 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [66a 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -peer0.org2.example.com | [630 01-05 06:36:46.33 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 [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] marked as valid by state validator -peer1.org1.example.com | [627 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org1.example.com | [631 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b0d13d6f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [631 01-05 06:36:46.33 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 | [66b 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [628 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [632 01-05 06:36:46.33 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 | [66c 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [629 01-05 06:36:56.12 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 | [632 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [633 01-05 06:36:46.33 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 | [66d 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org1.example.com | [62a 01-05 06:36:56.12 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 [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org2.example.com | [634 01-05 06:36:46.33 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 | [66e 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [633 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [635 01-05 06:36:46.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 [3] -peer1.org1.example.com | [62b 01-05 06:36:56.12 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 | [636 01-05 06:36:46.33 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{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org1.example.com | [634 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [66f 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [62c 01-05 06:36:56.12 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 | txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [635 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Move state message COMPLETED -peer1.org1.example.com | [62d 01-05 06:36:56.12 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 | [670 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4220eca80, header channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org2.example.com | ] -peer0.org1.example.com | [636 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [62e 01-05 06:36:56.12 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 | [671 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org2.example.com | [637 01-05 06:36:46.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=40165, bytesLength=3456] for tx ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to index -peer0.org1.example.com | [637 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]send state message COMPLETED -peer1.org1.example.com | [62f 01-05 06:36:56.14 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 | [638 01-05 06:36:46.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=40165, bytesLength=3456] for tx number:[0] ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to blockNumTranNum index -peer1.org2.example.com | [672 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org2.example.com | [639 01-05 06:36:46.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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [638 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message COMPLETED from shim -peer1.org1.example.com | [630 01-05 06:36:56.14 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{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [63a 01-05 06:36:46.34 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 | [673 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [639 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [40f 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 -peer1.org2.example.com | [674 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [63b 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -orderer.example.com | [410 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [675 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -orderer.example.com | [411 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [63a 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | ] -peer0.org2.example.com | [63c 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -orderer.example.com | [412 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [676 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [63b 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -peer1.org1.example.com | [631 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3459] for tx ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to index -orderer.example.com | [413 01-05 06:36:28.23 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 | [677 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42028ef00 envbytes 0xc421a4b000 -peer0.org2.example.com | [63d 01-05 06:36:46.34 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 | [63c 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [414 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [632 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3459] for tx number:[0] ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to blockNumTranNum index -orderer.example.com | [415 01-05 06:36:28.23 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 | [416 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [63e 01-05 06:36:46.34 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 | [633 01-05 06:36:56.15 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=[50741], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [63d 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [417 01-05 06:36:28.23 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 | [63f 01-05 06:36:53.11 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.org2.example.com | [678 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a4b000 -peer1.org1.example.com | [634 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -orderer.example.com | [418 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [63e 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [419 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [679 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [640 01-05 06:36:53.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [635 01-05 06:36:56.15 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 | [694 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org2.example.com | [66e 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [694 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [660 01-13 06:14:37.23 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 | [66f 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]state is ready +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [695 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5 +orderer.example.com | [4bb 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer0.org2.example.com | [670 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [67a5c483]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [695 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Move state message COMPLETED +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org1.example.com | [696 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5] +peer0.org2.example.com | [671 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [67a5c483]enterBusyState trigger event RESPONSE +orderer.example.com | [4bc 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [696 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [661 01-13 06:14:37.23 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org2.example.com | [672 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message RESPONSE +peer0.org1.example.com | [697 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]send state message COMPLETED +orderer.example.com | [4bd 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [697 01-13 06:14:44.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 +peer1.org2.example.com | [662 01-13 06:14:37.23 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org2.example.com | [673 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [698 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Received message COMPLETED from shim +orderer.example.com | [4be 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org2.example.com | [663 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [698 01-13 06:14:44.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 = [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5] +peer0.org2.example.com | [674 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [699 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [699 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5 channel id: businesschannel +peer1.org2.example.com | [664 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +orderer.example.com | [4bf 01-13 06:14:13.13 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 | [675 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message RESPONSE +peer0.org1.example.com | [69a 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2]HandleMessage- COMPLETED. Notify +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org2.example.com | [665 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [676 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message COMPLETED from shim +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [69a 01-13 06:14:44.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.1.0,txid=e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5,syscc=true,proposal=0xc422bf9860,canname=lscc:1.1.0 +peer0.org1.example.com | [69b 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2, channelID:businesschannel +orderer.example.com | [4c0 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [666 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [677 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | errno: 1146, +peer0.org1.example.com | [69c 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [667 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4229302e0 env 0xc42307fb90 txn 0 +peer1.org1.example.com | [69b 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [4c1 01-13 06:14:13.13 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 | [678 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053]HandleMessage- COMPLETED. Notify +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org1.example.com | [69d 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [668 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42307fb90 +peer1.org1.example.com | [69c 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | sqlState: '42S02', +peer0.org1.example.com | [69e 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [4c2 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +explorer | index: 0, +peer1.org2.example.com | [669 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +peer0.org1.example.com | [69f 01-13 06:14:22.71 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 [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [69d 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [679 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, channelID:businesschannel +peer0.org1.example.com | [6a0 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53668) +orderer.example.com | [4c3 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org2.example.com | [66a 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | [2018-01-13 06:14:59.511] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org2.example.com | [67a 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6a1 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53670 +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +orderer.example.com | [4c4 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011d428 gate 1515824053140898396 evaluation starts +peer1.org1.example.com | [69e 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [67b 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [66b 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [6a2 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42037d440 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [4c5 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [67c 01-13 06:14:36.88 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 | [69f 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [4c6 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [6a3 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [67d 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org2.example.com | [66c 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer1.org1.example.com | [6a0 01-13 06:14:44.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [4c7 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org1.example.com | [6a4 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [67e 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [6a5 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [4c8 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 principal matched by identity 0 +peer1.org2.example.com | [66d 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [680 01-13 06:14:36.88 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 | [6a6 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [4c9 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c c3 f4 b0 ae e6 51 cb f5 24 c3 f9 ab 62 1e 16 |L.....Q..$...b..| +peer1.org1.example.com | [6a1 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [66e 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [6a7 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [681 01-13 06:14:36.88 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}] +orderer.example.com | 00000010 98 1e a5 14 77 93 b9 55 8a f8 5a 95 41 bc e3 d4 |....w..U..Z.A...| +peer1.org2.example.com | [66f 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423351500, header channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [6a8 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4225adbd0, header 0xc42037d7d0 +peer1.org1.example.com | [6a2 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Move state message TRANSACTION +orderer.example.com | [4ca 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5e c4 6b 25 d4 74 88 f0 30 0a 19 |0D. K^.k%.t..0..| +peer0.org2.example.com | [67f 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [670 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [6a9 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | 00000010 7e 8b 7a 04 7c e4 6f e9 4d bb 5e ba e3 57 de b9 |~.z.|.o.M.^..W..| +peer1.org2.example.com | [671 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [682 01-13 06:14:36.88 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}] +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [6aa 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 +orderer.example.com | 00000020 49 4e a9 09 02 20 69 3a 03 c5 e6 05 46 07 6a af |IN... i:....F.j.| +peer1.org2.example.com | [672 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [6a3 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | -------------------- +peer0.org2.example.com | [683 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | 00000030 00 87 17 09 de b2 ed 84 68 80 e3 46 52 54 31 b5 |........h..FRT1.| +peer0.org1.example.com | [6ab 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +peer1.org2.example.com | [673 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [6a4 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +orderer.example.com | 00000040 34 cc 08 ec 28 53 |4...(S| +peer1.org2.example.com | [674 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer0.org2.example.com | [684 01-13 06:14:36.88 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 | [6a5 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]sending state message TRANSACTION +peer0.org1.example.com | [6ac 01-13 06:14:23.76 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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [4cb 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [675 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [6a6 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Received message TRANSACTION from shim +peer0.org1.example.com | [6ad 01-13 06:14:23.76 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 = [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +orderer.example.com | [4cc 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011d428 gate 1515824053140898396 evaluation succeeds +peer1.org2.example.com | [676 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42307fb90 envbytes 0xc422a5c000 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [685 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [6ae 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel +peer1.org1.example.com | [6a7 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [4cd 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [677 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422a5c000 +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [686 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053,syscc=true,proposal=0xc4225d2eb0,canname=escc:1.1.0 +orderer.example.com | [4ce 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [678 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer1.org1.example.com | [6a8 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1493cb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4cf 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [679 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +explorer | at next (native) +peer0.org1.example.com | [6af 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel version: 1.1.0 +orderer.example.com | [4d0 01-13 06:14:13.14 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 | [6a9 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e1493cb4]Sending GET_STATE +peer1.org2.example.com | [67a 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a5970174-d6b6-40b8-b78b-98d07c45cea2,syscc=true,proposal=0x0,canname=vscc:1.1.0 +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [687 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [4d1 01-13 06:14:13.14 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 | [6b0 01-13 06:14:23.76 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.1.0,txid=e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1,syscc=true,proposal=0xc4225adbd0,canname=qscc:1.1.0 +peer1.org2.example.com | [67b 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 chaindID businesschannel +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer1.org1.example.com | [6aa 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message GET_STATE from shim +orderer.example.com | [4d2 01-13 06:14:13.14 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 | [67c 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [6b1 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [688 01-13 06:14:36.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4d4 01-13 06:14:13.14 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 | [6ab 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [67d 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [689 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [6b2 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4d5 01-13 06:14:13.14 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 | [67e 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +explorer | errno: 1146, +peer1.org1.example.com | [6ac 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e1493cb4]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [67f 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a5970174]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6b3 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org2.example.com | [68a 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [67a5c483]Inside sendExecuteMessage. Message TRANSACTION +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +orderer.example.com | [4d6 01-13 06:14:13.14 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 | [680 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [6b4 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]Inside sendExecuteMessage. Message TRANSACTION +explorer | sqlState: '42S02', +peer1.org1.example.com | [6ad 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [681 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a5970174]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [68b 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [4d7 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | index: 0, +peer1.org1.example.com | [6ae 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e1493cb4] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [6b5 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [682 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5970174]Move state message TRANSACTION +orderer.example.com | [4d8 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [6af 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [6b6 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [68c 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [683 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a5970174]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | [2018-01-13 06:14:59.791] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | [4da 01-13 06:14:13.14 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 | [6b7 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [6b0 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e1493cb4]Got state. Sending RESPONSE +peer0.org2.example.com | [68d 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [67a5c483]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [684 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [6b1 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e1493cb4]handleGetState serial send RESPONSE +orderer.example.com | [4db 01-13 06:14:13.14 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 | [6b8 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Move state message TRANSACTION +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org1.example.com | [6b2 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Received message RESPONSE from shim +peer1.org2.example.com | [685 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5970174]sending state message TRANSACTION +peer0.org2.example.com | [68e 01-13 06:14:36.89 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 | [6b9 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4d3 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50086, hangup +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [686 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5970174]Received message TRANSACTION from shim +peer1.org1.example.com | [6b3 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [68f 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [4dc 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [6ba 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [687 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5970174]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [6b4 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e1493cb4]before send +peer0.org2.example.com | [690 01-13 06:14:36.89 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 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [4de 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [6bb 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]sending state message TRANSACTION +peer0.org2.example.com | [691 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Move state message TRANSACTION +peer1.org2.example.com | [688 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a5970174]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [6b5 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e1493cb4]after send +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [6bc 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Received message TRANSACTION from shim +orderer.example.com | [4df 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [692 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [6b6 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e1493cb4]Received RESPONSE, communicated (state:ready) +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [6bd 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [689 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [4e0 01-13 06:14:13.14 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 | [6b7 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e1493cb4]GetState received payload RESPONSE +peer0.org1.example.com | [6be 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e94f54e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [693 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [6b8 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [68a 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [4dd 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [6bf 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org2.example.com | [694 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]sending state message TRANSACTION +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [6b9 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Move state message COMPLETED +peer1.org2.example.com | [68b 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [6c0 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Transaction completed. Sending COMPLETED +orderer.example.com | [4e1 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | -------------------- +peer0.org2.example.com | [695 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Received message TRANSACTION from shim +peer1.org2.example.com | [68c 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [6ba 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6c1 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Move state message COMPLETED +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [696 01-13 06:14:36.89 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 | [68d 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [6bb 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]send state message COMPLETED +peer0.org1.example.com | [6c2 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4e2 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [68e 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [6bc 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message COMPLETED from shim +peer0.org1.example.com | [6c3 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]send state message COMPLETED +orderer.example.com | [4d9 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50084: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [697 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67a5c483]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [6bd 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [68f 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [4e3 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [698 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [6c4 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Received message COMPLETED from shim +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [690 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [a3b7e3ba-0ed7-42e8-81e0-21601bcc6580] +peer1.org1.example.com | [6be 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6c5 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [699 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +orderer.example.com | [4e4 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org2.example.com | [691 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [6bf 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5, channelID:businesschannel +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org1.example.com | [6c6 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [69b 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [4e5 01-13 06:14:13.14 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 | [692 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [a3b7e3ba-0ed7-42e8-81e0-21601bcc6580] +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org1.example.com | [6c0 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6c7 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1, channelID:businesschannel +peer0.org2.example.com | [69c 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [693 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +orderer.example.com | [4e6 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [6c1 01-13 06:14:44.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 | [6c8 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [69a 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [67a5c483]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4e7 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [694 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc422b20320)} +peer1.org1.example.com | [6c2 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [6c9 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [69d 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [6c3 01-13 06:14:44.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=e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5,syscc=false,proposal=0xc422bf9860,canname=exp02:1.0 +orderer.example.com | [4e8 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [695 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [6c4 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5,syscc=true,proposal=0xc422bf9860,canname=lscc:1.1.0 +peer0.org1.example.com | [6ca 01-13 06:14:23.76 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 +orderer.example.com | [4e9 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [69f 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [696 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5970174]Transaction completed. Sending COMPLETED +explorer | at tryOnTimeout (timers.js:250:5) +peer1.org1.example.com | [6c5 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [6cb 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +orderer.example.com | [4ea 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [697 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5970174]Move state message COMPLETED +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer1.org1.example.com | [6c6 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4eb 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [6cc 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [6c7 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org2.example.com | [69e 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [698 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5970174]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6cd 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel chaincode id: name:"qscc" +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [6c8 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4ec 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [6a0 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [6ce 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer1.org1.example.com | [6c9 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [4ed 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [699 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5970174]send state message COMPLETED +explorer | errno: 1146, +peer0.org2.example.com | [6a1 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [6ca 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [6cf 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [69a 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5970174]Received message COMPLETED from shim +orderer.example.com | [4ee 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer0.org2.example.com | [6a2 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [6cb 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [69b 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a5970174]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [6d0 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1,syscc=true,proposal=0xc4225adbd0,canname=escc:1.1.0 +explorer | sqlState: '42S02', +orderer.example.com | [4ef 01-13 06:14:13.15 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 | [6a3 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [6cc 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Move state message TRANSACTION +peer1.org2.example.com | [69c 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a5970174-d6b6-40b8-b78b-98d07c45cea2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6d1 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +explorer | index: 0, +orderer.example.com | [4f0 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [6cd 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [6a4 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [6d2 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [6ce 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [69d 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a5970174-d6b6-40b8-b78b-98d07c45cea2, channelID:businesschannel +peer0.org2.example.com | [6a6 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Transaction completed. Sending COMPLETED +orderer.example.com | [4f1 01-13 06:14:13.15 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 | [6cf 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]sending state message TRANSACTION +peer0.org1.example.com | [6d3 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +explorer | [2018-01-13 06:15:00.513] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org2.example.com | [6a7 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]Move state message COMPLETED +peer1.org2.example.com | [69e 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [6d0 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Received message TRANSACTION from shim +orderer.example.com | [4f2 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [6d4 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [6d1 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [69f 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, error Chaincode exp02 is already instantiated +peer0.org2.example.com | [6a8 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67a5c483]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4f3 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [6d5 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [6d2 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1493cb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [6a0 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer0.org2.example.com | [6a9 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67a5c483]send state message COMPLETED +peer0.org1.example.com | [6d6 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [6d3 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e1493cb4]Sending GET_STATE +orderer.example.com | [4f4 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [6a1 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422a5c000 +peer0.org2.example.com | [6a5 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [6d7 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [6d4 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message GET_STATE from shim +orderer.example.com | [4f5 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [6a2 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42307fb90 envbytes 0xc422a5c000 +peer0.org2.example.com | [6aa 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67a5c483]Received message COMPLETED from shim +peer0.org1.example.com | [6d8 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Move state message TRANSACTION +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [6d5 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [4f6 01-13 06:14:13.15 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 | [6ab 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c483]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6a3 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 returned error Chaincode exp02 is already instantiated +peer0.org1.example.com | [6d9 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [4f7 01-13 06:14:13.15 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 | [6d6 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e1493cb4]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [6ac 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6a4 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4229302e0 env 0xc42307fb90 txn 0 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [6d8 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e1493cb4] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [6a5 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +orderer.example.com | [4f8 01-13 06:14:13.15 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 | [6ad 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, channelID:businesschannel +peer0.org1.example.com | [6da 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [6ae 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [6d9 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [6db 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]sending state message TRANSACTION +peer1.org2.example.com | [6a6 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +explorer | at Socket.emit (events.js:188:7) orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [63f 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org2.example.com | [641 01-05 06:36:53.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [67a 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] +peer0.org2.example.com | [6af 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [6a7 01-13 06:14:38.93 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 | [6dc 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Received message TRANSACTION from shim +peer1.org1.example.com | [6da 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e1493cb4]Got state. Sending RESPONSE +explorer | at readableAddChunk (_stream_readable.js:176:18) orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [636 01-05 06:36:56.15 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 | [637 01-05 06:36:56.15 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 | [67b 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a71406b3-00f5-4d9b-b195-02ee6ac15ac9,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [640 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37170) -peer0.org2.example.com | [642 01-05 06:36:53.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +peer1.org2.example.com | [6a8 01-13 06:14:38.93 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 | [6b0 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [6dd 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [6db 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e1493cb4]handleGetState serial send RESPONSE +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [6a9 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [67c 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 chaindID businesschannel -peer0.org1.example.com | [641 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer1.org1.example.com | [638 01-05 06:36:56.15 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 | [6b1 01-13 06:14:36.89 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 [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer0.org1.example.com | [6de 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e94f54e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [6dc 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Received message RESPONSE from shim +peer0.org2.example.com | [6b2 01-13 06:14:36.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:58998) orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org2.example.com | [643 01-05 06:36:53.91 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [67d 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [642 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer1.org2.example.com | [6aa 01-13 06:14:38.93 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 | [6df 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +explorer | -------------------- +peer0.org2.example.com | [6b3 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [6dd 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: RESPONSE(state:ready) orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [639 01-05 06:36:56.15 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 | [644 01-05 06:36:53.91 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-exp02-1.0) -peer1.org2.example.com | [67e 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6ab 01-13 06:14:38.93 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 [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org1.example.com | [6e0 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [6de 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e1493cb4]before send +peer0.org2.example.com | [6b4 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org1.example.com | [6e1 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [6ac 01-13 06:14:38.93 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 | [6df 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e1493cb4]after send +peer0.org2.example.com | [6b5 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422509b40 env 0xc421a34c00 txn 0 orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [643 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [645 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer1.org1.example.com | [63a 01-05 06:36:56.15 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 | [646 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [6e2 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Move state message COMPLETED +peer1.org1.example.com | [6e0 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e1493cb4]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [6ad 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [67f 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [644 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [63b 01-05 06:36:56.15 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 | [647 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [645 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b1f880 env 0xc421bd5f80 txn 0 +peer0.org2.example.com | [6b6 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a34c00 +peer0.org1.example.com | [6e3 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [6ae 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [680 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a71406b3]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [63c 01-05 06:36:56.15 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 | [646 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bd5f80 -peer0.org2.example.com | [648 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [6e1 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e1493cb4]GetState received payload RESPONSE +peer0.org1.example.com | [6e4 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]send state message COMPLETED +peer0.org2.example.com | [6b7 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +peer1.org2.example.com | [6af 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [681 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [63d 01-05 06:36:56.15 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 | [649 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [6e2 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [6e5 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Received message COMPLETED from shim orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer0.org1.example.com | [647 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -peer1.org2.example.com | [682 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a71406b3]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [64a 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer1.org1.example.com | [63e 01-05 06:36:56.15 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 | [648 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [6b8 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [6b0 01-13 06:14:38.94 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 | [6e3 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Move state message COMPLETED +peer0.org1.example.com | [6e6 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at next (native) +peer0.org2.example.com | [6b9 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer1.org2.example.com | [683 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a71406b3]Move state message TRANSACTION -peer1.org1.example.com | [63f 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [649 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [64b 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org2.example.com | [6b1 01-13 06:14:38.94 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{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +peer1.org1.example.com | [6e4 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6e7 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1]HandleMessage- COMPLETED. Notify +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [6ba 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer1.org2.example.com | [684 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a71406b3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [64a 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org1.example.com | [640 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 +peer1.org2.example.com | txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 +peer1.org1.example.com | [6e5 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]send state message COMPLETED +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org2.example.com | [6bb 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [6e8 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1, channelID:businesschannel orderer.example.com | oQmWQsjpiQ== -peer0.org2.example.com | [64c 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [685 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [64b 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [641 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [64d 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -peer0.org1.example.com | [64c 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [686 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a71406b3]sending state message TRANSACTION -peer0.org2.example.com | [64e 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [64d 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4228aa000, header channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -orderer.example.com | [41a 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [642 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [687 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a71406b3]Received message TRANSACTION from shim -peer0.org1.example.com | [64e 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [64f 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [688 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a71406b3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [643 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [64f 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [650 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [689 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a71406b3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [650 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [644 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [651 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message READY -peer0.org1.example.com | [651 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [68a 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [645 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [652 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer0.org2.example.com | [652 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [653 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [68b 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [653 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e66f5752]Entered state ready -peer0.org1.example.com | [654 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421bd5f80 envbytes 0xc421a56380 -peer1.org2.example.com | [68c 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [655 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a56380 -peer1.org1.example.com | [646 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [654 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, channelID:businesschannel -peer1.org2.example.com | [68d 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [656 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [655 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message READY -peer0.org1.example.com | [657 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -peer1.org1.example.com | [647 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [68e 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [656 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [658 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=6ec03676-07b8-4142-adc7-0114c78b2d75,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [659 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 chaindID businesschannel -peer1.org2.example.com | [68f 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [657 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [648 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [65a 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [65b 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [658 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [690 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [649 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [65c 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [659 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org2.example.com | [691 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [92b92bf0-f22f-47c9-81b3-b7b30adc1222] -peer0.org1.example.com | [65d 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ec03676]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [64a 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37908 -peer0.org2.example.com | [65a 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [e66f5752]Inside sendExecuteMessage. Message INIT -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org2.example.com | [692 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [65e 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [65b 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [64b 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422281e30 -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [693 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [92b92bf0-f22f-47c9-81b3-b7b30adc1222] -peer0.org2.example.com | [65c 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [65f 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ec03676]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org1.example.com | [64c 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [65d 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [e66f5752]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [694 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org2.example.com | [65e 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message INIT -peer0.org1.example.com | [660 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ec03676]Move state message TRANSACTION -peer1.org1.example.com | [64d 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [695 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc422779220)} -peer0.org2.example.com | [65f 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [661 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ec03676]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [696 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org1.example.com | [64e 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [662 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [41b 01-05 06:36:28.23 UTC] [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 | [660 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [697 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a71406b3]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [663 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ec03676]sending state message TRANSACTION -peer1.org1.example.com | [64f 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [698 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a71406b3]Move state message COMPLETED -orderer.example.com | [41c 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org2.example.com | [661 01-05 06:36:54.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message INIT -peer1.org2.example.com | [699 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a71406b3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [664 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]Received message TRANSACTION from shim -orderer.example.com | [41d 01-05 06:36:28.23 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.org2.example.com | [662 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message PUT_STATE from shim -peer1.org2.example.com | [69a 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a71406b3]send state message COMPLETED -peer1.org1.example.com | [650 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [69b 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a71406b3]Received message COMPLETED from shim -peer0.org1.example.com | [665 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ec03676]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [69c 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a71406b3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [41e 01-05 06:36:28.23 UTC] [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 | [663 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [651 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4233174a0, header 0xc422281e60 -peer1.org2.example.com | [69d 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a71406b3-00f5-4d9b-b195-02ee6ac15ac9]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [666 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6ec03676]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [69e 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a71406b3-00f5-4d9b-b195-02ee6ac15ac9, channelID:businesschannel -peer0.org2.example.com | [665 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]state is ready -orderer.example.com | [41f 01-05 06:36:28.23 UTC] [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 | [652 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org2.example.com | [69f 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [667 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [420 01-05 06:36:28.23 UTC] [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.org2.example.com | [6a0 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, error Chaincode exp02 is already instantiated -peer0.org2.example.com | [666 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [653 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095 -peer1.org2.example.com | [6a1 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -orderer.example.com | [421 01-05 06:36:28.23 UTC] [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 | [667 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e66f5752]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [654 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095] -peer0.org1.example.com | [668 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [6a2 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a4b000 -peer1.org1.example.com | [655 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [422 01-05 06:36:28.23 UTC] [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 | [6a3 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42028ef00 envbytes 0xc421a4b000 -peer0.org1.example.com | [669 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [6a4 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 returned error Chaincode exp02 is already instantiated -orderer.example.com | [423 01-05 06:36:28.23 UTC] [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.org1.example.com | [656 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095] -peer0.org1.example.com | [66a 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [664 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6a5 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202d5980 env 0xc42028ef00 txn 0 -orderer.example.com | [424 01-05 06:36:28.23 UTC] [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 -peer1.org1.example.com | [657 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095 channel id: businesschannel -peer0.org2.example.com | [668 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message RESPONSE -peer1.org2.example.com | [6a6 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -orderer.example.com | [425 01-05 06:36:28.23 UTC] [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 | [658 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095,syscc=true,proposal=0xc4233174a0,canname=lscc:1.1.0 -peer1.org2.example.com | [6a7 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [669 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [66b 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [6a8 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -orderer.example.com | [426 01-05 06:36:28.23 UTC] [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 -peer0.org2.example.com | [66a 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6a9 01-05 06:36:56.07 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 | [659 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [66c 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org2.example.com | [6aa 01-05 06:36:56.07 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 | [66b 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message RESPONSE -orderer.example.com | [427 01-05 06:36:28.23 UTC] [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 | [65a 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [6ab 01-05 06:36:56.07 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 | [66d 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [428 01-05 06:36:28.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [66c 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message PUT_STATE from shim -peer1.org2.example.com | [6ac 01-05 06:36:56.07 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 [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org1.example.com | [65b 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [429 01-05 06:36:28.23 UTC] [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.org2.example.com | [6ad 01-05 06:36:56.07 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 | [66e 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [321c274d-6fce-427c-83ca-09e3484ce7ee] -peer1.org1.example.com | [65c 01-05 06:37:05.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6ae 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [66d 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [42a 01-05 06:36:28.23 UTC] [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 | [65d 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [6af 01-05 06:36:56.07 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 | [66f 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [42b 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer1.org2.example.com | [6b0 01-05 06:36:56.07 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 | [66e 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [65e 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [670 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [321c274d-6fce-427c-83ca-09e3484ce7ee] -peer1.org2.example.com | [6b1 01-05 06:36:56.07 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] -orderer.example.com | [42c 01-05 06:36:28.24 UTC] [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 | [66f 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]state is ready -peer0.org1.example.com | [671 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org1.example.com | [65f 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [6b2 01-05 06:36:56.07 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{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -peer0.org2.example.com | [670 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e66f5752]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [42d 01-05 06:36:28.24 UTC] [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 | [660 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Move state message TRANSACTION -peer0.org1.example.com | [672 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4226258c0)} -peer0.org2.example.com | [671 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e66f5752]enterBusyState trigger event RESPONSE -peer1.org2.example.com | txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 -peer1.org1.example.com | [661 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [42e 01-05 06:36:28.24 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 | [672 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message RESPONSE -peer0.org1.example.com | [673 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully peer1.org2.example.com | ] -peer1.org1.example.com | [662 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [42f 01-05 06:36:28.24 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 | [673 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [674 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [6b3 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3459] for tx ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to index -orderer.example.com | [430 01-05 06:36:28.24 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 | [674 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [663 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]sending state message TRANSACTION -peer1.org2.example.com | [6b4 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3459] for tx number:[0] ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to blockNumTranNum index -peer0.org1.example.com | [675 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]Move state message COMPLETED -peer0.org2.example.com | [675 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message RESPONSE -peer1.org1.example.com | [664 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Received message TRANSACTION from shim -orderer.example.com | [431 01-05 06:36:28.24 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 | [676 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message COMPLETED from shim -peer1.org1.example.com | [665 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6b5 01-05 06:36:56.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50741], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [676 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ec03676]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [432 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [677 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [433 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 | [666 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [031f89e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [6b6 01-05 06:36:56.07 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 | [677 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]send state message COMPLETED -peer0.org2.example.com | [678 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356]HandleMessage- COMPLETED. Notify -orderer.example.com | [434 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 | [6b7 01-05 06:36:56.07 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 | [667 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [031f89e0]Sending GET_STATE -peer0.org1.example.com | [678 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ec03676]Received message COMPLETED from shim -peer0.org2.example.com | [679 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, channelID:businesschannel -orderer.example.com | [435 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [668 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message GET_STATE from shim -peer0.org2.example.com | [67a 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [679 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ec03676]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [6b8 01-05 06:36:56.07 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 | [669 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [436 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [67b 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [67a 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ec03676-07b8-4142-adc7-0114c78b2d75]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6b9 01-05 06:36:56.07 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 | [66a 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [031f89e0]Received GET_STATE, invoking get state from ledger -orderer.example.com | [437 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [6ba 01-05 06:36:56.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 | [67b 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6ec03676-07b8-4142-adc7-0114c78b2d75, channelID:businesschannel -peer0.org2.example.com | [67c 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [66b 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [438 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -peer0.org1.example.com | [67c 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [67d 01-05 06:36:54.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -orderer.example.com | [439 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -peer1.org2.example.com | [6bb 01-05 06:37:03.06 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 | [66c 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [031f89e0] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [67d 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -orderer.example.com | [43a 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 | [67e 01-05 06:36:54.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 -peer1.org1.example.com | [66d 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [67e 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a56380 -peer1.org2.example.com | [6bc 01-05 06:37:03.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -orderer.example.com | [43b 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [67f 01-05 06:36:54.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.org2.example.com | [6bd 01-05 06:37:03.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 -orderer.example.com | [43c 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [66e 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [031f89e0]Got state. Sending RESPONSE -peer0.org2.example.com | [680 01-05 06:36:54.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}] -peer0.org1.example.com | [67f 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421bd5f80 envbytes 0xc421a56380 -orderer.example.com | [43d 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org2.example.com | [6be 01-05 06:37:03.19 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d -peer1.org1.example.com | [66f 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [031f89e0]handleGetState serial send RESPONSE -peer0.org2.example.com | [681 01-05 06:36:54.02 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}] -orderer.example.com | [43e 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [680 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b1f880 env 0xc421bd5f80 txn 0 -peer1.org2.example.com | [6bf 01-05 06:37:04.50 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-exp02-1.0 -peer0.org2.example.com | [682 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [670 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Received message RESPONSE from shim -peer0.org1.example.com | [681 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [43f 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org2.example.com | [6c0 01-05 06:37:04.50 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-exp02-1.0) -peer0.org2.example.com | [683 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 channel id: businesschannel chaincode id: name:"lscc" -peer1.org1.example.com | [671 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [682 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [440 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org2.example.com | [6c1 01-05 06:37:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer0.org2.example.com | [684 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [683 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -orderer.example.com | [441 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [672 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [031f89e0]before send -peer0.org2.example.com | [685 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [6c2 01-05 06:37:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [684 01-05 06:36:46.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] -orderer.example.com | [442 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -peer1.org1.example.com | [673 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [031f89e0]after send -peer0.org2.example.com | [686 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356,syscc=true,proposal=0xc4227d53b0,canname=escc:1.1.0 -peer1.org2.example.com | [6c3 01-05 06:37:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [685 01-05 06:36:46.35 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 | [674 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [031f89e0]Received RESPONSE, communicated (state:ready) -orderer.example.com | [443 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [6c4 01-05 06:37:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [686 01-05 06:36:46.36 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 | [688 01-05 06:36:54.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.org2.example.com | [6c5 01-05 06:37:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [444 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 | [675 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [031f89e0]GetState received payload RESPONSE -peer0.org2.example.com | [689 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org1.example.com | [687 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -orderer.example.com | [445 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [6c6 01-05 06:37:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer0.org2.example.com | [68a 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer1.org1.example.com | [676 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [688 01-05 06:36:46.36 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 -orderer.example.com | [446 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [6c7 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer0.org2.example.com | [687 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [447 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [677 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Move state message COMPLETED -peer0.org1.example.com | [689 01-05 06:36:46.36 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 | [6c8 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [68b 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [448 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -peer0.org1.example.com | [68a 01-05 06:36:46.36 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 [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] marked as valid by state validator -peer1.org1.example.com | [678 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [6c9 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -peer0.org2.example.com | [68c 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [68b 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [449 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 | [6ca 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [679 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]send state message COMPLETED -peer0.org2.example.com | [68d 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e66f5752]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [68c 01-05 06:36:46.36 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 | [6cb 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [67a 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message COMPLETED from shim -orderer.example.com | [44a 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -peer0.org2.example.com | [68e 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [6cc 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [68d 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [44b 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 | [67b 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [68f 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [68e 01-05 06:36:46.36 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 | [6cd 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Move state message READY -orderer.example.com | [44c 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [690 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e66f5752]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [67c 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [68f 01-05 06:36:46.36 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 | [44d 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [691 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Move state message TRANSACTION -peer1.org2.example.com | [6ce 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [67d 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095, channelID:businesschannel -peer0.org1.example.com | [690 01-05 06:36:46.37 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{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -orderer.example.com | [44e 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [6cf 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [632d235f]Entered state ready -peer1.org1.example.com | [67e 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [692 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6d0 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e, channelID:businesschannel -peer0.org1.example.com | txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 -orderer.example.com | [44f 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [67f 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [694 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org1.example.com | ] -peer1.org2.example.com | [6d1 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]sending state message READY -peer1.org1.example.com | [680 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095 channel id: businesschannel version: 1.0 -peer0.org2.example.com | [695 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [450 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer0.org1.example.com | [691 01-05 06:36:46.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=40165, bytesLength=3456] for tx ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to index -peer1.org2.example.com | [6d2 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [696 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -peer1.org1.example.com | [681 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095,syscc=false,proposal=0xc4233174a0,canname=exp02:1.0 -orderer.example.com | [451 01-05 06:36:28.24 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.org2.example.com | [697 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [692 01-05 06:36:46.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=40165, bytesLength=3456] for tx number:[0] ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to blockNumTranNum index -peer1.org2.example.com | [6d3 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [682 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095,syscc=true,proposal=0xc4233174a0,canname=lscc:1.1.0 -orderer.example.com | [452 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [698 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [6d4 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [683 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [699 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [453 01-05 06:36:28.24 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 -peer0.org1.example.com | [693 01-05 06:36:46.37 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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [69a 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [6d5 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org1.example.com | [684 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [69b 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [694 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -orderer.example.com | [454 01-05 06:36:28.24 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.org1.example.com | [685 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [69c 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [6d6 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [695 01-05 06:36:46.37 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 | [69d 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [455 01-05 06:36:28.24 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 | [6d7 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [686 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [696 01-05 06:36:46.37 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 | [69e 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [6d8 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [456 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [69f 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [697 01-05 06:36:46.37 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 | [6d9 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [693 01-05 06:36:54.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [687 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [457 01-05 06:36:28.24 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 -peer0.org1.example.com | [698 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [6a0 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]sending state message TRANSACTION -peer1.org2.example.com | [6da 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Move state message TRANSACTION -peer1.org1.example.com | [688 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [699 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [6a1 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Received message TRANSACTION from shim -orderer.example.com | [458 01-05 06:36:28.24 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 -peer1.org2.example.com | [6db 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [689 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [6a2 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e66f5752]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [69a 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org2.example.com | [6a3 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e66f5752]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [6dc 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [459 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [69b 01-05 06:36:46.38 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 | [68a 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Move state message TRANSACTION -peer0.org2.example.com | [6a4 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [45a 01-05 06:36:28.24 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' -peer1.org1.example.com | [68b 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6dd 01-05 06:37:04.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]sending state message TRANSACTION -peer0.org1.example.com | [69c 01-05 06:36:46.38 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.org2.example.com | [6a5 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [45b 01-05 06:36:28.24 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] -peer1.org1.example.com | [68c 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [69d 01-05 06:36:46.38 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 | [6a6 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [6de 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message GET_STATE from shim -orderer.example.com | [45c 01-05 06:36:28.24 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 | [6a7 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]Move state message COMPLETED -peer1.org1.example.com | [68d 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]sending state message TRANSACTION -peer1.org2.example.com | [6df 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [45d 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [69e 01-05 06:36:46.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org2.example.com | [6a8 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e66f5752]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [45e 01-05 06:36:28.24 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 [] -peer1.org2.example.com | [6e0 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [632d235f]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [68e 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Received message TRANSACTION from shim -peer0.org1.example.com | [69f 01-05 06:36:46.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [6a9 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e66f5752]send state message COMPLETED -orderer.example.com | [45f 01-05 06:36:28.24 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 | [6aa 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e66f5752]Received message COMPLETED from shim -peer1.org2.example.com | [6e1 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6a0 01-05 06:36:46.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 [3] -orderer.example.com | [460 01-05 06:36:28.24 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 | [6ab 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f5752]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [461 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [68f 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [6ac 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6e2 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632d235f] getting state for chaincode exp02, key a, channel businesschannel -orderer.example.com | [462 01-05 06:36:28.24 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 | [6ad 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, channelID:businesschannel -peer1.org2.example.com | [6e3 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [6a1 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [463 01-05 06:36:28.24 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 | [6ae 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [690 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [031f89e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6a2 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -peer1.org2.example.com | [6e4 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [632d235f]Got state. Sending RESPONSE -orderer.example.com | [464 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org2.example.com | [6af 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [6e5 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [632d235f]handleGetState serial send RESPONSE -peer1.org1.example.com | [691 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [031f89e0]Sending GET_STATE -peer0.org1.example.com | [6a3 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [465 01-05 06:36:28.25 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 | [6b0 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [6e6 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message COMPLETED from shim -orderer.example.com | [466 01-05 06:36:28.25 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 | [6b1 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer0.org1.example.com | [6a4 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [467 01-05 06:36:28.25 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 [] -peer1.org1.example.com | [692 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message GET_STATE from shim -peer1.org2.example.com | [6e7 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [6b2 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:47502) -orderer.example.com | [468 01-05 06:36:28.25 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 | [6a5 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [469 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [6e8 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [6b3 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [46a 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [6a6 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [46b 01-05 06:36:28.25 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 | [693 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [6b4 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [6e9 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e, channelID:businesschannel -orderer.example.com | [46c 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [6a7 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [694 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [031f89e0]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [6b5 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4234e49a0 env 0xc423479020 txn 0 -orderer.example.com | [46d 01-05 06:36:28.25 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 | [695 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6ea 01-05 06:37:04.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [6a8 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [696 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [031f89e0] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | [46e 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608ECB9BCD20522...8591D50E4375C0522D0C71786007D4D2 -peer0.org2.example.com | [6b6 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423479020 -peer1.org1.example.com | [697 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [6eb 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [6a9 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [46f 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 6AF815CC4A8801DF14DDD6889D39B5F0DFCD76B1823310A0C845F5E4E9391032 -peer0.org2.example.com | [6b7 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -peer1.org1.example.com | [698 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [031f89e0]Got state. Sending RESPONSE -peer1.org2.example.com | [6ec 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [6aa 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [470 01-05 06:36:28.25 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 | [699 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [031f89e0]handleGetState serial send RESPONSE -peer0.org1.example.com | [6ab 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6b8 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [6ed 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e] -orderer.example.com | [471 01-05 06:36:28.25 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 | [69a 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Received message RESPONSE from shim -peer0.org2.example.com | [6b9 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [6ac 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer1.org1.example.com | [69b 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [472 01-05 06:36:28.25 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 | [6ee 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [69c 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [031f89e0]before send -peer0.org2.example.com | [6ba 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org2.example.com | [6bb 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [6bc 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [6bd 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421d7e000, header channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -peer0.org2.example.com | [6be 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [6bf 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [6c0 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [6c1 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [6c2 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer0.org2.example.com | [6c3 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [6ad 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer0.org1.example.com | [6ae 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [473 01-05 06:36:28.25 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 | [69d 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [031f89e0]after send -peer0.org2.example.com | [6c4 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423479020 envbytes 0xc421d7a000 -peer1.org2.example.com | [6ef 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e channel id: businesschannel chaincode id: name:"exp02" -peer1.org1.example.com | [69e 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [031f89e0]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [6c5 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421d7a000 -peer0.org1.example.com | [6af 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [474 01-05 06:36:28.25 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 | [69f 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [031f89e0]GetState received payload RESPONSE -peer1.org2.example.com | [6f0 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer0.org1.example.com | [6b0 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4229eee60 env 0xc4229297a0 txn 0 -peer0.org2.example.com | [6c6 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [6a0 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [6b1 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4229297a0 -orderer.example.com | [475 01-05 06:36:28.25 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 | [6f1 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [6c7 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer1.org1.example.com | [6a1 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Move state message COMPLETED -orderer.example.com | [476 01-05 06:36:28.25 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.org2.example.com | [6f2 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e,syscc=true,proposal=0xc422d17130,canname=escc:1.1.0 -peer1.org2.example.com | [6f4 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [6b2 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [6c8 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=3bd5dcd8-5520-4786-ba8c-bda608722e2a,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [6a2 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [6a3 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]send state message COMPLETED -peer1.org1.example.com | [6a4 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message COMPLETED from shim -peer1.org1.example.com | [6a5 01-05 06:37:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [6f5 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6b3 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [6c9 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 chaindID businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [6a6 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6f6 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [6a7 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095, channelID:businesschannel -peer0.org1.example.com | [6b4 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [6ca 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [6a8 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [6f3 01-05 06:37:04.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.org1.example.com | [6a9 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -peer0.org1.example.com | [6b5 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer0.org2.example.com | [6cb 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [6aa 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [6b6 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [6f7 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [6ab 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer0.org2.example.com | [6cc 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [6ac 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -peer1.org2.example.com | [6f8 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [6cd 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3bd5dcd8]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [6b7 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [6ad 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -peer0.org2.example.com | [6ce 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [6f9 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [6ae 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [6b8 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420317500, header channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer0.org2.example.com | [6cf 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3bd5dcd8]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [6af 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer1.org2.example.com | [6fa 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [632d235f]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [6b9 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [6b0 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [6d0 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bd5dcd8]Move state message TRANSACTION -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org2.example.com | [6fb 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Move state message TRANSACTION -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer0.org1.example.com | [6ba 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [6d1 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3bd5dcd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org2.example.com | [6bc 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [6d7 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6e9 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [6fc 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [6bb 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [6d2 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [477 01-05 06:36:28.25 UTC] [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 1515134188253276100 evaluation starts -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [6fd 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6fe 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]sending state message TRANSACTION -peer1.org2.example.com | [6ff 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Received message TRANSACTION from shim -peer1.org2.example.com | [700 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [701 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [632d235f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [478 01-05 06:36:28.25 UTC] [github.com/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]) -peer0.org2.example.com | [6d3 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bd5dcd8]sending state message TRANSACTION -peer0.org1.example.com | [6bc 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [702 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [479 01-05 06:36:28.25 UTC] [github.com/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 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [6bd 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer0.org2.example.com | [6d4 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bd5dcd8]Received message TRANSACTION from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [6be 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [703 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [6d5 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3bd5dcd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [6bf 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4229297a0 envbytes 0xc4229fd000 -orderer.example.com | [47a 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [47b 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [6d6 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3bd5dcd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [704 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [6c0 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4229fd000 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | [47c 01-05 06:36:28.25 UTC] [github.com/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 -peer0.org2.example.com | [6d7 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [6c1 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [705 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]Move state message COMPLETED -peer0.org1.example.com | [6c2 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer1.org1.example.com | [6b1 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-exp02-1.0) lock -orderer.example.com | [47d 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6a f8 15 cc 4a 88 01 df 14 dd d6 88 9d 39 b5 f0 |j...J........9..| -peer0.org1.example.com | [6c3 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=9629fc97-3a88-4c77-8c78-421500766ad6,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [6c4 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 chaindID businesschannel -peer0.org1.example.com | [6c5 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [6d8 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [706 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [632d235f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 00000010 df cd 76 b1 82 33 10 a0 c8 45 f5 e4 e9 39 10 32 |..v..3...E...9.2| -peer0.org1.example.com | [6c6 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6c7 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [6b2 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-exp02-1.0) lock -peer0.org1.example.com | [6c8 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9629fc97]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [47e 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ac 09 9f 3f 17 a8 8e ca b9 d5 57 |0E.!....?......W| -peer0.org2.example.com | [6d9 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [6b3 01-05 06:37:05.18 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 | [6b4 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-exp02-1.0(No such container: dev-peer1.org1.example.com-exp02-1.0) -peer0.org1.example.com | [6c9 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [6da 01-05 06:36:56.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [707 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [632d235f]send state message COMPLETED -peer0.org1.example.com | [6ca 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9629fc97]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [6b5 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -orderer.example.com | 00000010 f2 07 02 4a 4e 1a 6e 61 b9 d1 39 11 8e 76 9e b5 |...JN.na..9..v..| -peer0.org2.example.com | [6db 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [708 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [632d235f]Received message COMPLETED from shim -peer0.org1.example.com | [6cb 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9629fc97]Move state message TRANSACTION -peer1.org1.example.com | [6b6 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -peer0.org2.example.com | [6dc 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org2.example.com | [709 01-05 06:37:04.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 | [6cc 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9629fc97]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [6b7 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-exp02-1.0 -peer1.org2.example.com | [70a 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 00000020 c1 0a db ed d1 02 20 6f 26 a5 1c 10 06 b3 cf 89 |...... o&.......| -peer0.org2.example.com | [6dd 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [6cd 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [6b8 01-05 06:37:05.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -orderer.example.com | 00000030 2f 97 9e 5d 8f 3e 27 09 a7 d2 6b 77 1a 63 ba 36 |/..].>'...kw.c.6| -peer0.org1.example.com | [6ce 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9629fc97]sending state message TRANSACTION -peer0.org2.example.com | [6de 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [61c15dc6-5be2-4410-93e5-75cbd3b94678] -peer1.org1.example.com | [6b9 01-05 06:37:05.19 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer1.org2.example.com | [70b 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e]HandleMessage- COMPLETED. Notify -orderer.example.com | 00000040 0b b4 fe a8 91 13 a4 |.......| -peer0.org1.example.com | [6cf 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]Received message TRANSACTION from shim -peer0.org2.example.com | [6df 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [70c 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e, channelID:businesschannel -peer0.org1.example.com | [6d0 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9629fc97]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [6e0 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [61c15dc6-5be2-4410-93e5-75cbd3b94678] -peer1.org2.example.com | [70d 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [6ba 01-05 06:37:05.19 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 | [6d1 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9629fc97]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [47f 01-05 06:36:28.25 UTC] [github.com/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 -peer0.org2.example.com | [6e1 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [70e 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [6bb 01-05 06:37:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org2.example.com | [70f 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [480 01-05 06:36:28.25 UTC] [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 1515134188253276100 evaluation succeeds -peer0.org1.example.com | [6d2 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [710 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [632d235fd26d0f8f0a494a05e407b146bd968c3c4a6e2d1335b69947afc11b1e] -peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer0.org1.example.com | [6d3 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [6e2 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4219b8f00)} -peer1.org2.example.com | [711 01-05 06:37:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:55238) -orderer.example.com | [481 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [6d4 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [712 01-05 06:37:04.65 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 | [6d5 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | [482 01-05 06:36:28.25 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 | [713 01-05 06:37:04.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 [4] with [1] transactions -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer0.org1.example.com | [6d6 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [6e3 01-05 06:36:56.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org2.example.com | [714 01-05 06:37:04.65 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 | [6d7 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -orderer.example.com | [483 01-05 06:36:28.25 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 | [715 01-05 06:37:04.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 [4] -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org2.example.com | [6e4 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bd5dcd8]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [716 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [6d8 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -orderer.example.com | [484 01-05 06:36:28.25 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 | [717 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 -peer0.org1.example.com | [6d9 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5cc1e1bd-cd61-4ee3-bab2-df858d424363] -peer0.org2.example.com | [6e5 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bd5dcd8]Move state message COMPLETED -peer1.org2.example.com | [718 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ -orderer.example.com | [485 01-05 06:36:28.25 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 | [719 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [6da 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" -orderer.example.com | [486 01-05 06:36:28.25 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 | [6e6 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3bd5dcd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6db 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [5cc1e1bd-cd61-4ee3-bab2-df858d424363] -orderer.example.com | [487 01-05 06:36:28.25 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:44096 -peer1.org2.example.com | [71a 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer0.org2.example.com | [6e7 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3bd5dcd8]send state message COMPLETED -peer0.org1.example.com | [6dc 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [71b 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [488 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44096: rpc error: code = Canceled desc = context canceled -peer1.org1.example.com | [6bc 01-05 06:37:05.20 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 | [6dd 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4226258c0)} -peer1.org2.example.com | [71c 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6e8 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3bd5dcd8]Received message COMPLETED from shim -peer1.org2.example.com | [71d 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [6bd 01-05 06:37:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -orderer.example.com | [489 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer1.org2.example.com | [71e 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [6de 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org2.example.com | [6e9 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3bd5dcd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [6be 01-05 06:37:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer1.org2.example.com | [71f 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [6df 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]Transaction completed. Sending COMPLETED -orderer.example.com | [48a 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [720 01-05 06:37:04.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [6bf 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [6e0 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]Move state message COMPLETED -peer0.org2.example.com | [6ea 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3bd5dcd8-5520-4786-ba8c-bda608722e2a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [721 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer0.org1.example.com | [6e1 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9629fc97]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [6c0 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [48b 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [723 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [6e2 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]send state message COMPLETED -peer0.org2.example.com | [6eb 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3bd5dcd8-5520-4786-ba8c-bda608722e2a, channelID:businesschannel -peer1.org2.example.com | [722 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org1.example.com | [6e3 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9629fc97]Received message COMPLETED from shim -orderer.example.com | [48c 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [6c1 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42354baa0 env 0xc423541b60 txn 0 -peer1.org2.example.com | [725 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421df8820 env 0xc4230778c0 txn 0 -peer0.org1.example.com | [6e4 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9629fc97]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [6ec 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [6c2 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423541b60 -peer1.org2.example.com | [726 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4230778c0 -peer0.org1.example.com | [6e5 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9629fc97-3a88-4c77-8c78-421500766ad6]HandleMessage- COMPLETED. Notify -orderer.example.com | [48d 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [6c3 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -peer0.org2.example.com | [6ed 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, error Chaincode exp02 is already instantiated -peer1.org2.example.com | [727 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -peer0.org1.example.com | [6e6 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9629fc97-3a88-4c77-8c78-421500766ad6, channelID:businesschannel -orderer.example.com | [48e 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [6c4 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [724 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [6ee 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer0.org1.example.com | [6e7 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [728 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [6e8 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, error Chaincode exp02 is already instantiated -peer1.org1.example.com | [6c5 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [48f 01-05 06:36:28.26 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 | [6ef 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421d7a000 -peer0.org1.example.com | [6e9 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -peer1.org2.example.com | [729 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [490 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [6ea 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4229fd000 -peer0.org2.example.com | [6f0 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423479020 envbytes 0xc421d7a000 -peer1.org1.example.com | [6c6 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org2.example.com | [72a 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [6eb 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4229297a0 envbytes 0xc4229fd000 -orderer.example.com | [491 01-05 06:36:28.26 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 | [6f1 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 returned error Chaincode exp02 is already instantiated -peer1.org2.example.com | [72b 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [6ec 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 returned error Chaincode exp02 is already instantiated -peer1.org1.example.com | [6c7 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [6f2 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4234e49a0 env 0xc423479020 txn 0 -peer0.org1.example.com | [6ed 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4229eee60 env 0xc4229297a0 txn 0 -orderer.example.com | [492 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [72c 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [6ee 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer0.org2.example.com | [6f3 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -orderer.example.com | [493 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [6ef 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [72d 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422948000, header channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -peer1.org1.example.com | [6c8 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [494 01-05 06:36:28.26 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.org1.example.com | [6f0 01-05 06:36:56.09 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 | [6f4 01-05 06:36:56.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [6f1 01-05 06:36:56.09 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 | [72e 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [6c9 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422e3f000, header channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -orderer.example.com | [495 01-05 06:36:28.26 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.org1.example.com | [6f2 01-05 06:36:56.09 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 | [6f5 01-05 06:36:56.17 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 | [72f 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [6ca 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [6f3 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [496 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [730 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [6cb 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [6f6 01-05 06:36:56.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] -peer0.org1.example.com | [6f4 01-05 06:36:56.09 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 [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org2.example.com | [731 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [497 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [6cc 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [6f5 01-05 06:36:56.09 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 | [6f7 01-05 06:36:56.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -orderer.example.com | [498 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [732 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org1.example.com | [6f6 01-05 06:36:56.09 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 | [6f8 01-05 06:36:56.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 | [6cd 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [499 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [6f7 01-05 06:36:56.09 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 | [733 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [49a 01-05 06:36:28.26 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 | [6f9 01-05 06:36:56.17 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 [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org1.example.com | [6ce 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org1.example.com | [6f8 01-05 06:36:56.09 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 | [734 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4230778c0 envbytes 0xc421f54000 -orderer.example.com | [49b 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org1.example.com | [6cf 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [6fa 01-05 06:36:56.17 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 | [6fb 01-05 06:36:56.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 | [735 01-05 06:37:06.93 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 = [f44b5566-8531-4ba6-9b36-298591b4e873] -peer0.org1.example.com | [6f9 01-05 06:36:56.10 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] -orderer.example.com | [49c 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [6d0 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423541b60 envbytes 0xc4231ea400 -peer0.org2.example.com | [6fc 01-05 06:36:56.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 | [736 01-05 06:37:06.93 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 | [6fa 01-05 06:36:56.10 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{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -peer0.org2.example.com | [6fd 01-05 06:36:56.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -orderer.example.com | [49d 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer1.org1.example.com | [6d1 01-05 06:37:06.97 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 = [c84f0637-18ab-424f-be90-aa8f06e2f218] -peer1.org2.example.com | [737 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [f44b5566-8531-4ba6-9b36-298591b4e873] -peer0.org1.example.com | txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 -peer0.org2.example.com | [6fe 01-05 06:36:56.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] -orderer.example.com | [49e 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer1.org2.example.com | [738 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421f54000 -peer0.org1.example.com | ] -peer0.org2.example.com | [6ff 01-05 06:36:56.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{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -peer1.org1.example.com | [6d2 01-05 06:37:06.97 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 -orderer.example.com | [49f 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org1.example.com | [6fb 01-05 06:36:56.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=45486, bytesLength=3459] for tx ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to index -peer1.org2.example.com | [739 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [6fc 01-05 06:36:56.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=45486, bytesLength=3459] for tx number:[0] ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to blockNumTranNum index -peer0.org2.example.com | txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 -peer1.org1.example.com | [6d3 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c84f0637-18ab-424f-be90-aa8f06e2f218] -peer0.org1.example.com | [6fd 01-05 06:36:56.10 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=[50741], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org2.example.com | [73a 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org1.example.com | [6fe 01-05 06:36:56.10 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 | ] -peer0.org1.example.com | [6ff 01-05 06:36:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -orderer.example.com | [4a0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer1.org2.example.com | [73b 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=c0345fe2-92fa-494b-bc63-278f9c4b8eab,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [6d4 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4231ea400 -peer0.org1.example.com | [700 01-05 06:36:56.10 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 | [700 01-05 06:36:56.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=45486, bytesLength=3459] for tx ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to index -orderer.example.com | [4a1 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -peer1.org1.example.com | [6d5 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [701 01-05 06:36:56.10 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 | [73c 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 chaindID businesschannel -peer0.org2.example.com | [701 01-05 06:36:56.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=45486, bytesLength=3459] for tx number:[0] ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to blockNumTranNum index -peer0.org1.example.com | [702 01-05 06:36:56.10 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 | [4a2 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org1.example.com | [6d6 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org2.example.com | [702 01-05 06:36:56.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=[50741], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [703 01-05 06:36:56.10 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 | [73d 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [4a3 01-05 06:36:28.26 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 | [703 01-05 06:36:56.18 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 | [704 01-05 06:36:56.12 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 | [6d7 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=6cb288fd-f5b9-4005-9be8-49bb95b8a7b0,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [705 01-05 06:36:56.12 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 | [73e 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [704 01-05 06:36:56.18 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 | [706 01-05 06:36:56.12 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 | [4a4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -peer1.org1.example.com | [6d8 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 chaindID businesschannel -peer0.org1.example.com | [707 01-05 06:36:56.13 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 | [705 01-05 06:36:56.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 | [73f 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org1.example.com | [708 01-05 06:36:56.13 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 | [4a5 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer1.org1.example.com | [6d9 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [709 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [706 01-05 06:36:56.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 | [740 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c0345fe2]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [4a6 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515134188261203600 evaluation starts -peer0.org1.example.com | [70a 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 -peer1.org1.example.com | [6da 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [741 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [4a7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [707 01-05 06:36:56.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.org1.example.com | [70b 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [6db 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [742 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c0345fe2]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4a8 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [70c 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [708 01-05 06:36:56.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 | [6dc 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6cb288fd]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [743 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0345fe2]Move state message TRANSACTION -orderer.example.com | [4a9 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer0.org1.example.com | [70d 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [6dd 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [744 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c0345fe2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [709 01-05 06:36:56.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [70e 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [4aa 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal matched by identity 0 -peer1.org1.example.com | [6de 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6cb288fd]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [745 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [70a 01-05 06:36:56.20 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 | [70f 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [6df 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6cb288fd]Move state message TRANSACTION -orderer.example.com | [4ab 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 7f e0 1d 3b 22 f8 53 8e c4 4a 6a fb 05 7e 64 |L...;".S..Jj..~d| -peer0.org1.example.com | [710 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [746 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0345fe2]sending state message TRANSACTION -peer0.org2.example.com | [70b 01-05 06:36:56.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 [4] with [1] transactions -peer1.org1.example.com | [6e0 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6cb288fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [711 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 00000010 19 b7 21 46 84 4b 1c 17 af f0 cd 19 20 d7 5a b9 |..!F.K...... .Z.| -peer0.org2.example.com | [70c 01-05 06:36:56.20 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 | [747 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0345fe2]Received message TRANSACTION from shim -peer0.org1.example.com | [712 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [4ac 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f c4 b0 28 8f 25 b2 d3 15 a3 1f 62 |0D. o..(.%.....b| -peer1.org1.example.com | [6e1 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [713 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [748 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0345fe2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [70d 01-05 06:36:56.22 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 | [714 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37188 -peer1.org1.example.com | [6e2 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6cb288fd]sending state message TRANSACTION -orderer.example.com | 00000010 94 9b 58 48 34 0a 17 87 d1 b3 9a 1e 91 ba d7 c7 |..XH4...........| -peer1.org2.example.com | [749 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c0345fe2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [715 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422435dd0 -peer0.org2.example.com | [70e 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [6e3 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cb288fd]Received message TRANSACTION from shim -peer0.org1.example.com | [716 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [74a 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | 00000020 ab c1 81 e0 02 20 26 eb 67 9d 32 09 6e 81 3a 9e |..... &.g.2.n.:.| -peer0.org1.example.com | [717 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [6e4 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6cb288fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [74b 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [70f 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 -peer0.org1.example.com | [718 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -orderer.example.com | 00000030 df 21 9d 9d 1d d3 55 23 7b 6c 1b 9a 2e 0e a7 11 |.!....U#{l......| -peer1.org1.example.com | [6e5 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6cb288fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [74c 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [710 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [719 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 00000040 44 b8 50 7c 43 2f |D.P|C/| -peer1.org2.example.com | [74d 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0345fe2]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [711 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [6e6 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [4ad 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [74e 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0345fe2]Move state message COMPLETED -peer1.org1.example.com | [6e7 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [71a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [712 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [74f 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0345fe2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [4ae 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515134188261203600 evaluation succeeds -peer0.org2.example.com | [713 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [71b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234d56d0, header 0xc422435e00 -peer1.org1.example.com | [6e8 01-05 06:37:07.00 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [714 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [4af 01-05 06:36:28.26 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 | [71c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org1.example.com | [6e9 01-05 06:37:07.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cb288fd]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [750 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0345fe2]send state message COMPLETED -peer0.org2.example.com | [715 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [4b0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [6ea 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cb288fd]Move state message COMPLETED -peer0.org1.example.com | [71d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -peer0.org2.example.com | [716 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [751 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0345fe2]Received message COMPLETED from shim -orderer.example.com | [4b1 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [752 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c0345fe2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [717 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [718 01-05 06:36:56.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [4b2 01-05 06:36:28.26 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 | [6eb 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6cb288fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [71e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org1.example.com | [71f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [753 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c0345fe2-92fa-494b-bc63-278f9c4b8eab]HandleMessage- COMPLETED. Notify -orderer.example.com | [4b3 01-05 06:36:28.26 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 | [719 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [6ec 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cb288fd]send state message COMPLETED -peer0.org1.example.com | [720 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer1.org2.example.com | [754 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c0345fe2-92fa-494b-bc63-278f9c4b8eab, channelID:businesschannel -peer0.org2.example.com | [71a 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [6ed 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6cb288fd]Received message COMPLETED from shim -peer0.org1.example.com | [721 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel -orderer.example.com | [4b5 01-05 06:36:28.26 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 | [71b 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42362fae0 env 0xc423640f30 txn 0 -peer1.org2.example.com | [755 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [4b6 01-05 06:36:28.26 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 | [71c 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423640f30 -peer0.org1.example.com | [722 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9,syscc=true,proposal=0xc4234d56d0,canname=lscc:1.1.0 -peer1.org1.example.com | [6ee 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6cb288fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [71d 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -orderer.example.com | [4b7 01-05 06:36:28.26 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 | [756 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org2.example.com | [71e 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [4b8 01-05 06:36:28.26 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 | [6ef 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6cb288fd-f5b9-4005-9be8-49bb95b8a7b0]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [723 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [71f 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [4b9 01-05 06:36:28.26 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 | [757 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421f54000 -peer0.org2.example.com | [720 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org1.example.com | [6f0 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6cb288fd-f5b9-4005-9be8-49bb95b8a7b0, channelID:businesschannel -peer0.org1.example.com | [724 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [4b4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44094: rpc error: code = Canceled desc = context canceled -peer0.org2.example.com | [721 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [758 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4230778c0 envbytes 0xc421f54000 -orderer.example.com | [4ba 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org2.example.com | [722 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [6f1 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [725 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [4bb 01-05 06:36:28.26 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 | [723 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423685800, header channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -peer1.org2.example.com | [759 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421df8820 env 0xc4230778c0 txn 0 -peer1.org1.example.com | [6f2 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org1.example.com | [726 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [75a 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [4bc 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [724 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [4bd 01-05 06:36:28.26 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 | [727 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [6f3 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4231ea400 -peer0.org2.example.com | [725 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [4be 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [75b 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [726 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [4bf 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [4c0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [75c 01-05 06:37:06.94 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 | [728 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [6f4 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423541b60 envbytes 0xc4231ea400 -peer0.org2.example.com | [727 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [4c1 01-05 06:36:28.26 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 | [75d 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [6f5 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42354baa0 env 0xc423541b60 txn 0 -orderer.example.com | [4c2 01-05 06:36:28.26 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 | [728 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer0.org1.example.com | [729 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4c3 01-05 06:36:28.26 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 | [75e 01-05 06:37:06.94 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 | [729 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [4c4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [72a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message TRANSACTION -peer1.org1.example.com | [6f6 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [4c5 01-05 06:36:28.26 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 | [75f 01-05 06:37:06.94 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 | [72b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [6f7 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [72a 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423640f30 envbytes 0xc4236b2400 -orderer.example.com | [4c6 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [72c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [760 01-05 06:37:06.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 | [72b 01-05 06:37:06.96 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 = [7fca5a99-2468-473f-8207-96cfbf63d635] -orderer.example.com | [4c7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [6f8 01-05 06:37:07.04 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 | [72d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message TRANSACTION -peer0.org2.example.com | [72c 01-05 06:37:06.96 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 -orderer.example.com | [4c8 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [761 01-05 06:37:06.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=exp02, key=a -peer1.org1.example.com | [6f9 01-05 06:37:07.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 | [72e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Received message TRANSACTION from shim -peer0.org2.example.com | [72d 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [7fca5a99-2468-473f-8207-96cfbf63d635] -orderer.example.com | [4c9 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [762 01-05 06:37:06.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 [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org2.example.com | [72e 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4236b2400 -peer0.org1.example.com | [72f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [6fa 01-05 06:37:07.04 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 | [763 01-05 06:37:06.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=exp02, key=b -orderer.example.com | [4ca 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [730 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b1b7eae5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [72f 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [6fb 01-05 06:37:07.04 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 | [764 01-05 06:37:06.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 [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [731 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b1b7eae5]Sending GET_STATE -peer0.org2.example.com | [730 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -orderer.example.com | [4cb 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [6fc 01-05 06:37:07.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 | [732 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message GET_STATE from shim -orderer.example.com | [4cc 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [731 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=bcecd6a1-90fb-4015-a3d6-be4d6cbdc64d,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [765 01-05 06:37:06.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 -orderer.example.com | [4cd 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [733 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [6fd 01-05 06:37:07.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=exp02, key=a -peer0.org2.example.com | [732 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 chaindID businesschannel -orderer.example.com | [4ce 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [766 01-05 06:37:06.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [734 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b1b7eae5]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [733 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [6fe 01-05 06:37:07.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 [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [735 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [767 01-05 06:37:06.94 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 [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] marked as valid by state validator -orderer.example.com | [4cf 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [6ff 01-05 06:37:07.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=exp02, key=b -peer0.org1.example.com | [736 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org2.example.com | [734 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [737 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [4d0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [768 01-05 06:37:06.94 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 | [700 01-05 06:37:07.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 [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org2.example.com | [735 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [4d1 01-05 06:36:28.26 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 | [769 01-05 06:37:06.94 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 | [738 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Got state. Sending RESPONSE -peer0.org2.example.com | [736 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bcecd6a1]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [701 01-05 06:37:07.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 -peer0.org1.example.com | [739 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]handleGetState serial send RESPONSE -peer1.org2.example.com | [76a 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [4d2 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [737 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [702 01-05 06:37:07.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [73a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Received message RESPONSE from shim -orderer.example.com | [4d3 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [76b 01-05 06:37:06.94 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 | [738 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bcecd6a1]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [703 01-05 06:37:07.04 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 [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] marked as valid by state validator -orderer.example.com | [4d4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [76c 01-05 06:37:06.95 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 | [73b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [739 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bcecd6a1]Move state message TRANSACTION -peer1.org1.example.com | [704 01-05 06:37:07.04 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 | [76d 01-05 06:37:06.96 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{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -peer0.org1.example.com | [73c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b1b7eae5]before send -peer0.org2.example.com | [73a 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bcecd6a1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [705 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [4d5 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 -peer0.org2.example.com | [73b 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [706 01-05 06:37:07.04 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 | ] -orderer.example.com | [4d6 01-05 06:36:28.26 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 | [73c 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bcecd6a1]sending state message TRANSACTION -peer1.org2.example.com | [76e 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to index -peer0.org1.example.com | [73d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b1b7eae5]after send -peer1.org1.example.com | [707 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -orderer.example.com | [4d7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org2.example.com | [76f 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx number:[0] ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to blockNumTranNum index -peer0.org2.example.com | [73d 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcecd6a1]Received message TRANSACTION from shim -peer0.org1.example.com | [73f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b1b7eae5]GetState received payload RESPONSE -peer1.org1.example.com | [708 01-05 06:37:07.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 [5] -orderer.example.com | [4d8 01-05 06:36:28.26 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 | [740 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [770 01-05 06:37:06.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=[55522], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org2.example.com | [73e 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bcecd6a1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [709 01-05 06:37:07.06 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{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -peer0.org1.example.com | [73e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b1b7eae5]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [771 01-05 06:37:06.98 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 | txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 -peer0.org2.example.com | [73f 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bcecd6a1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [772 01-05 06:37:07.01 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 | [741 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Move state message COMPLETED -peer0.org2.example.com | [740 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | ] -peer0.org1.example.com | [742 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [773 01-05 06:37:07.01 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 | [741 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [70a 01-05 06:37:07.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=50811, bytesLength=2916] for tx ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to index -peer0.org1.example.com | [743 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]send state message COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [774 01-05 06:37:07.01 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 | [742 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [744 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message COMPLETED from shim -peer1.org1.example.com | [70b 01-05 06:37:07.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=50811, bytesLength=2916] for tx number:[0] ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to blockNumTranNum index -peer1.org2.example.com | [775 01-05 06:37:07.01 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [743 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcecd6a1]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [745 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [70c 01-05 06:37:07.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=[55522], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [776 01-05 06:37:07.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 | [744 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcecd6a1]Move state message COMPLETED -peer0.org1.example.com | [746 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [70d 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [777 01-05 06:37:07.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}] -peer0.org2.example.com | [745 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bcecd6a1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [747 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9, channelID:businesschannel -peer1.org2.example.com | [778 01-05 06:37:07.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}] -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [70e 01-05 06:37:07.06 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 | [746 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcecd6a1]send state message COMPLETED -peer1.org2.example.com | [779 01-05 06:37:07.01 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 | [70f 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [748 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [710 01-05 06:37:07.06 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 | [747 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bcecd6a1]Received message COMPLETED from shim -peer1.org2.example.com | [77a 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org1.example.com | [711 01-05 06:37:07.06 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 | [749 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [748 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bcecd6a1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org1.example.com | [712 01-05 06:37:12.74 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer1.org2.example.com | [77b 01-05 06:37:07.01 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 | [74a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [74b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9,syscc=false,proposal=0xc4234d56d0,canname=exp02:1.0 -peer0.org1.example.com | [74c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer0.org1.example.com | [74d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [74e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org1.example.com | [713 01-05 06:37:12.74 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org2.example.com | [77c 01-05 06:37:07.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 | [714 01-05 06:37:12.75 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer0.org1.example.com | [74f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [77d 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [715 01-05 06:37:12.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org2.example.com | [749 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bcecd6a1-90fb-4015-a3d6-be4d6cbdc64d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [750 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [751 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [77e 01-05 06:37:07.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: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer1.org1.example.com | [716 01-05 06:37:13.67 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-exp02-1.0 -peer0.org2.example.com | [74a 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bcecd6a1-90fb-4015-a3d6-be4d6cbdc64d, channelID:businesschannel -peer0.org1.example.com | [752 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [77f 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | oQmWQsjpiQ== -peer0.org2.example.com | [74b 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [753 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message TRANSACTION -peer1.org1.example.com | [717 01-05 06:37:13.67 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-exp02-1.0) -peer1.org2.example.com | [780 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [718 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer0.org2.example.com | [74c 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer1.org2.example.com | [781 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [754 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [719 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [782 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [4d9 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [71a 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [755 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org2.example.com | [6b2 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to index +explorer | errno: 1146, +peer0.org2.example.com | [6bd 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422a73500, header channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +peer0.org1.example.com | [6ea 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [6e6 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message COMPLETED from shim +peer1.org2.example.com | [6b3 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx number:[0] ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to blockNumTranNum index +orderer.example.com | [4f9 01-13 06:14:13.15 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----- +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org1.example.com | [6eb 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [6be 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [6b4 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50742], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org1.example.com | [6e7 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | sqlState: '42S02', orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [783 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [71b 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [74d 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4236b2400 +peer0.org1.example.com | [6ec 01-13 06:14: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 [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +peer0.org2.example.com | [6bf 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [6e8 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6b5 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +explorer | index: 0, +peer0.org1.example.com | [6ed 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53670) orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [71c 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [756 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message TRANSACTION -peer1.org1.example.com | [71d 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org1.example.com | [6e9 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5, channelID:businesschannel +peer0.org2.example.com | [6c0 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer0.org2.example.com | [6c1 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [6ee 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53672 +peer1.org2.example.com | [6b6 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [757 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message GET_STATE from shim -peer0.org2.example.com | [74e 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423640f30 envbytes 0xc4236b2400 -peer1.org1.example.com | [71e 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org1.example.com | [6ea 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | [2018-01-13 06:15:00.880] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [6c2 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer0.org1.example.com | [6ef 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bbe7b0 +peer1.org2.example.com | [6b7 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [784 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [758 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [71f 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [759 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b1b7eae5]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [74f 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42362fae0 env 0xc423640f30 txn 0 -peer1.org2.example.com | [785 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [720 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [6eb 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer0.org2.example.com | [6c3 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [6b8 01-13 06:14:38.95 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 | [6f0 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [75a 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [750 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [786 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [721 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [75b 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5] getting state for chaincode exp02, key a, channel businesschannel +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [6b9 01-13 06:14:38.95 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 | [6ec 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +peer0.org2.example.com | [6c4 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421a34c00 envbytes 0xc422764000 +peer0.org1.example.com | [6f1 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [787 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [722 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [75c 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org2.example.com | [751 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [788 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:55250 -peer1.org1.example.com | [723 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [75d 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Got state. Sending RESPONSE +peer1.org2.example.com | [6ba 01-13 06:14:43.64 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 | [6ed 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [6f2 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org2.example.com | [6c5 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422764000 +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org2.example.com | [789 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422af2b10 -peer0.org1.example.com | [75e 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]handleGetState serial send RESPONSE -peer1.org1.example.com | [724 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Move state message READY -peer0.org2.example.com | [752 01-05 06:37:06.97 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 | [78a 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [75f 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message GET_STATE from shim +peer1.org2.example.com | [6bb 01-13 06:14:43.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [6ee 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +peer0.org2.example.com | [6c6 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [6f3 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [6bc 01-13 06:14:43.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [753 01-05 06:37:06.97 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 | [725 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [78b 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [760 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [754 01-05 06:37:06.97 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 | [726 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [031f89e0]Entered state ready -peer1.org2.example.com | [78c 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org1.example.com | [761 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b1b7eae5]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [6ef 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] +peer0.org1.example.com | [6f4 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [6bd 01-13 06:14:43.76 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [762 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [727 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095, channelID:businesschannel -peer0.org2.example.com | [755 01-05 06:37:06.97 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 | [6c7 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer1.org1.example.com | [6f0 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org1.example.com) +peer1.org2.example.com | [6be 01-13 06:14:44.38 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-exp02-1.0 +peer0.org1.example.com | [6f5 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b94870, header 0xc421bbeb10 orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [78d 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [763 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5] getting state for chaincode exp02, key b, channel businesschannel -peer1.org1.example.com | [728 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]sending state message READY -peer1.org2.example.com | [78e 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [6c8 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=75cfd5bb-8f10-4e2e-8f0d-f8cba40201fd,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [6f1 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org2.example.com | [6bf 01-13 06:14:44.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-exp02-1.0) +peer0.org1.example.com | [6f6 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +explorer | at Socket.emit (events.js:188:7) orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org2.example.com | [756 01-05 06:37:06.97 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 | [764 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org2.example.com | [78f 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422adc960, header 0xc422af2b40 -peer1.org1.example.com | [729 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [765 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Got state. Sending RESPONSE -peer0.org2.example.com | [757 01-05 06:37:06.97 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 | [790 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org1.example.com | [766 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]handleGetState serial send RESPONSE +peer1.org1.example.com | [6f2 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +peer0.org2.example.com | [6c9 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 chaindID businesschannel +peer1.org2.example.com | [6c0 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [6f7 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [767 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message PUT_STATE from shim -peer1.org2.example.com | [791 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa -peer0.org1.example.com | [768 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [758 01-05 06:37:06.97 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 | [72a 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [792 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa] -peer0.org1.example.com | [769 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [6ca 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [6c1 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [6f8 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [793 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [759 01-05 06:37:06.97 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 | [76a 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]state is ready -peer1.org2.example.com | [794 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa] -peer1.org1.example.com | [72b 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [76b 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [4da 01-05 06:36:28.27 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 | [795 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa channel id: businesschannel -peer0.org1.example.com | [76c 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]enterBusyState trigger event RESPONSE -orderer.example.com | [4db 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [72c 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer0.org2.example.com | [75a 01-05 06:37:06.97 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 | [796 01-05 06:37:13.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa,syscc=true,proposal=0xc422adc960,canname=lscc:1.1.0 -peer1.org2.example.com | [797 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -orderer.example.com | [4dc 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [75b 01-05 06:37:06.97 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 | [72d 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [76d 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message RESPONSE -peer1.org2.example.com | [798 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [75c 01-05 06:37:06.97 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 | [72e 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [76e 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [4dd 01-05 06:36:28.27 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 | [799 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [76f 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [72f 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [75d 01-05 06:37:06.97 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 [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] marked as valid by state validator -orderer.example.com | [4de 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [79a 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cca9751]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [75e 01-05 06:37:06.97 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 | [770 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message RESPONSE -peer1.org1.example.com | [730 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4df 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [75f 01-05 06:37:06.97 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 | [79b 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [771 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message PUT_STATE from shim -orderer.example.com | [4e0 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [731 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Move state message TRANSACTION -peer0.org2.example.com | [760 01-05 06:37:06.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [4e1 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [79c 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [772 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [79d 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cca9751]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [761 01-05 06:37:06.97 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 | [732 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [79e 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Move state message TRANSACTION -orderer.example.com | [4e2 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [773 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [762 01-05 06:37:06.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 | [79f 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [4e3 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [733 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7a0 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [763 01-05 06:37:06.98 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{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -peer0.org1.example.com | [774 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]state is ready -peer0.org1.example.com | [775 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [4e4 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [7a1 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]sending state message TRANSACTION -peer1.org1.example.com | [734 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]sending state message TRANSACTION -peer0.org2.example.com | txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +explorer | -------------------- +peer0.org2.example.com | [6cb 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [6f9 01-13 06:14:24.84 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 | [6c2 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [4fa 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org1.example.com | [6fa 01-13 06:14:24.84 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 = [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] +peer0.org2.example.com | [6cc 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [6c3 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [4fb 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [6fb 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [6cd 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [75cfd5bb]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | [6c4 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [6fc 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel version: 1.1.0 +orderer.example.com | [4fc 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [6ce 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [6c5 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [6cf 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [75cfd5bb]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6fd 01-13 06:14:24.84 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.1.0,txid=838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721,syscc=true,proposal=0xc421b94870,canname=qscc:1.1.0 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [4fd 01-13 06:14:13.16 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 | [6c6 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [6fe 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org2.example.com | [6d0 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [75cfd5bb]Move state message TRANSACTION +peer1.org2.example.com | [6c7 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [4fe 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [6ff 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [6c8 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org2.example.com | [6d1 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [75cfd5bb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4ff 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org1.example.com | [700 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org2.example.com | [6c9 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [6d2 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [500 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org2.example.com | [6ca 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [701 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [6d3 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [75cfd5bb]sending state message TRANSACTION +explorer | at ontimeout (timers.js:386:11) +orderer.example.com | [501 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [6f3 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-exp02-1.0) lock +peer1.org2.example.com | [6cb 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org1.example.com | [702 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [502 01-13 06:14:13.16 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 | [6d4 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [75cfd5bb]Received message TRANSACTION from shim +peer1.org2.example.com | [6cc 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Move state message READY +peer1.org1.example.com | [6f4 01-13 06:14:44.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-exp02-1.0) lock +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [703 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [503 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org2.example.com | [6cd 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [6d5 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [75cfd5bb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [6f5 01-13 06:14:44.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-exp02-1.0 +peer0.org1.example.com | [704 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]sendExecuteMsg trigger event TRANSACTION +explorer | code: 'ER_NO_SUCH_TABLE', +orderer.example.com | [504 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [6ce 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0e5d1aa3]Entered state ready +peer0.org2.example.com | [6d6 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [75cfd5bb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | errno: 1146, +peer1.org1.example.com | [6f6 01-13 06:14:44.82 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.org2.example.com | [6cf 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712, channelID:businesschannel orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [776 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [7a2 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Received message TRANSACTION from shim -peer1.org1.example.com | [735 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message GET_STATE from shim -peer0.org2.example.com | ] +peer0.org1.example.com | [705 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Move state message TRANSACTION +peer0.org2.example.com | [6d7 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [6f7 01-13 06:14:44.82 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) +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [6d0 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]sending state message READY +peer0.org1.example.com | [706 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [777 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message RESPONSE -peer1.org2.example.com | [7a3 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cca9751]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [736 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [764 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to index +explorer | sqlState: '42S02', +peer0.org2.example.com | [6d8 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [6f8 01-13 06:14:44.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) +peer0.org1.example.com | [707 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [7a4 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7cca9751]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [7a5 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7cca9751]Sending GET_STATE -peer0.org2.example.com | [765 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx number:[0] ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to blockNumTranNum index -peer1.org1.example.com | [737 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [031f89e0]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [6d1 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +explorer | index: 0, +peer0.org2.example.com | [6d9 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [708 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]sending state message TRANSACTION +peer1.org1.example.com | [6f9 01-13 06:14:44.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-exp02-1.0 +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org1.example.com | [778 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [7a6 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Received message GET_STATE from shim -peer1.org1.example.com | [739 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [031f89e0] getting state for chaincode exp02, key a, channel businesschannel -peer0.org2.example.com | [766 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55522], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org1.example.com | [709 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Received message TRANSACTION from shim +peer1.org2.example.com | [6d2 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +explorer | [2018-01-13 06:15:01.513] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [70a 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [6fa 01-13 06:14:44.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [7a7 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [767 01-05 06:37:07.02 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 | [779 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [73a 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [7a8 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7cca9751]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [6da 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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}} +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [70b 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [838f2496]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [6d3 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [6fb 01-13 06:14:44.83 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +peer0.org2.example.com | [6db 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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}} +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [70c 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org2.example.com | [768 01-05 06:37:07.02 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 | [73b 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [031f89e0]Got state. Sending RESPONSE -peer1.org2.example.com | [7a9 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [77a 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message RESPONSE +peer1.org2.example.com | [6d4 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org2.example.com | [6dc 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [70d 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [6fc 01-13 06:14:44.83 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 | [6d5 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [769 01-05 06:37:07.02 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 | [7aa 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cca9751] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [73c 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [031f89e0]handleGetState serial send RESPONSE -peer1.org2.example.com | [7ab 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [7ac 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cca9751]Got state. Sending RESPONSE -peer0.org1.example.com | [77b 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message COMPLETED from shim -peer1.org1.example.com | [738 01-05 06:37:13.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [6dd 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [70e 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Move state message COMPLETED +peer1.org1.example.com | [6fd 01-13 06:14:44.83 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org2.example.com | [7ad 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7cca9751]handleGetState serial send RESPONSE -peer0.org2.example.com | [76a 01-05 06:37:07.02 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 | [7ae 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Received message RESPONSE from shim -peer1.org1.example.com | [73d 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message COMPLETED from shim -peer0.org1.example.com | [77c 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [7af 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cca9751]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [6de 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [967f1a80-ff25-480f-acd0-817686587975] +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org1.example.com | [70f 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [6d6 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [6df 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org1.example.com | [710 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]send state message COMPLETED orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org2.example.com | [76b 01-05 06:37:07.02 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 | [73e 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [7b0 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7cca9751]before send -peer0.org1.example.com | [77d 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [76c 01-05 06:37:07.02 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 | [7b1 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7cca9751]after send +peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 +peer1.org2.example.com | [6d7 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [6e0 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [967f1a80-ff25-480f-acd0-817686587975] +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [711 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Received message COMPLETED from shim orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer1.org2.example.com | [7b3 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7cca9751]GetState received payload RESPONSE -peer0.org2.example.com | [76d 01-05 06:37:07.02 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 | [77e 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9, channelID:businesschannel -peer1.org1.example.com | [73f 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [7b4 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [77f 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [76e 01-05 06:37:07.02 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 | [7b2 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7cca9751]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [6e1 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | [6d8 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]sendExecuteMsg trigger event TRANSACTION +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [712 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [6e2 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc4227a7cc0)} orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer1.org1.example.com | [740 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095, channelID:businesschannel -peer0.org2.example.com | [76f 01-05 06:37:07.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.org2.example.com | [7b5 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Move state message COMPLETED +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org1.example.com | [713 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [6e3 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org2.example.com | [6d9 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Move state message TRANSACTION +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [714 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721, channelID:businesschannel +peer0.org2.example.com | [6e4 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [75cfd5bb]Transaction completed. Sending COMPLETED orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer0.org1.example.com | [780 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [7b6 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cca9751]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +explorer | -------------------- +peer0.org1.example.com | [715 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [6e5 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [75cfd5bb]Move state message COMPLETED +peer1.org2.example.com | [6da 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [716 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | [741 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [781 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [770 01-05 06:37:07.03 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 | [7b7 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]send state message COMPLETED +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org2.example.com | [6e6 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [75cfd5bb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ +peer1.org2.example.com | [6db 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [717 01-13 06:14:24.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 +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [6e7 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [75cfd5bb]send state message COMPLETED orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [742 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [782 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer1.org2.example.com | [7b8 01-05 06:37:13.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Received message COMPLETED from shim -orderer.example.com | [4e5 01-05 06:36:28.27 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 | [771 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org1.example.com | [743 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [783 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [7b9 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [718 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" +peer1.org2.example.com | [6dc 01-13 06:14:44.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]sending state message TRANSACTION +peer0.org2.example.com | [6e8 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [75cfd5bb]Received message COMPLETED from shim +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org1.example.com | [719 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [505 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [6e9 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [75cfd5bb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6dd 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message GET_STATE from shim +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 +peer0.org2.example.com | [6ea 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [75cfd5bb-8f10-4e2e-8f0d-f8cba40201fd]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [71a 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel chaincode id: name:"qscc" orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [772 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org1.example.com | [784 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel chaincode id: name:"exp02" -peer1.org2.example.com | [7ba 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [744 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095] -peer0.org2.example.com | [773 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [6eb 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:75cfd5bb-8f10-4e2e-8f0d-f8cba40201fd, channelID:businesschannel +peer0.org1.example.com | [71b 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer1.org1.example.com | [6fe 01-13 06:14:44.83 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [7bb 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa, channelID:businesschannel -peer0.org1.example.com | [785 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org1.example.com | [745 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [7bc 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [774 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -peer0.org1.example.com | [786 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel version: 1.1.0 +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [6ec 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [6de 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [71c 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | [6ff 01-13 06:14:44.83 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [746 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095 channel id: businesschannel chaincode id: name:"exp02" -peer0.org2.example.com | [775 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [7bd 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org1.example.com | [747 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer0.org1.example.com | [787 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9,syscc=true,proposal=0xc4234d56d0,canname=escc:1.1.0 -peer1.org1.example.com | [748 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [7be 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa channel id: businesschannel version: 1.0 -peer0.org2.example.com | [776 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [749 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095,syscc=true,proposal=0xc4233174a0,canname=escc:1.1.0 -peer0.org1.example.com | [788 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [777 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [7bf 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa,syscc=false,proposal=0xc422adc960,canname=exp02:1.0 -peer1.org2.example.com | [7c0 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer0.org1.example.com | [789 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [778 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [74a 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [74b 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [7c1 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [78a 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [74c 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org2.example.com | [779 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [78b 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [74d 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [7c2 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [78c 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [74e 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [77a 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:15:01.955] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:15:02.514] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [6ed 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, error Chaincode exp02 is already instantiated +peer0.org2.example.com | [6ee 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer0.org2.example.com | [6ef 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422764000 orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer1.org2.example.com | [7c3 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cca9751]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [74f 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [78d 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org2.example.com | [77b 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [750 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [031f89e0]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [7c4 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [78e 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [77c 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [7c5 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org1.example.com | [78f 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message TRANSACTION -peer1.org1.example.com | [751 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Move state message TRANSACTION -peer1.org2.example.com | [7c6 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cca9751]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [77d 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [752 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [790 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [77e 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:47528 -peer0.org1.example.com | [791 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [4e6 01-05 06:36:28.27 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 | [7c7 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Move state message TRANSACTION -peer0.org2.example.com | [77f 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424239710 -orderer.example.com | [4e7 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [7c8 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [753 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [792 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message TRANSACTION -orderer.example.com | [4e8 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [754 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]sending state message TRANSACTION -peer0.org2.example.com | [780 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [7c9 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [793 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Received message TRANSACTION from shim -orderer.example.com | [4e9 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [755 01-05 06:37:13.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 -peer0.org2.example.com | [781 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [756 01-05 06:37:13.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 | [7ca 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]sending state message TRANSACTION -orderer.example.com | [4ea 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [794 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [782 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org1.example.com | [757 01-05 06:37:13.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.org1.example.com | [758 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Received message TRANSACTION from shim -peer0.org1.example.com | [795 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b1b7eae5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [7cb 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Received message GET_STATE from shim -peer1.org1.example.com | [759 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [4eb 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [783 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [75a 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [031f89e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [796 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [7cc 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [784 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [75b 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [4ec 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [797 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [785 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42423ec30, header 0xc424239740 -peer1.org2.example.com | [7cd 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7cca9751]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [798 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Transaction completed. Sending COMPLETED -orderer.example.com | [4ed 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [786 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org1.example.com | [799 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Move state message COMPLETED -peer1.org1.example.com | [75c 01-05 06:37:13.71 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 | [4ee 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [7ce 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [787 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f -peer0.org1.example.com | [79a 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [75d 01-05 06:37:13.71 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 | [7cf 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cca9751] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [79b 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]send state message COMPLETED -orderer.example.com | [4ef 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [788 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f] -peer1.org2.example.com | [7d0 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [75e 01-05 06:37:13.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 [5] with [1] transactions -orderer.example.com | [4f0 01-05 06:36:28.27 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 | [79c 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message COMPLETED from shim -peer0.org2.example.com | [789 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [7d1 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cca9751]Got state. Sending RESPONSE -peer0.org2.example.com | [78a 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f] -orderer.example.com | [4f1 01-05 06:36:28.27 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 | [75f 01-05 06:37:13.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 [5] -peer0.org2.example.com | [78b 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f channel id: businesschannel -peer1.org2.example.com | [7d2 01-05 06:37:13.91 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7cca9751]handleGetState serial send RESPONSE -orderer.example.com | [4f2 01-05 06:36:28.27 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 | [79d 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [78c 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f,syscc=true,proposal=0xc42423ec30,canname=lscc:1.1.0 -peer1.org1.example.com | [760 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [7d3 01-05 06:37:13.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Received message COMPLETED from shim -orderer.example.com | [4f3 01-05 06:36:28.27 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 | [79e 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [78d 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [78e 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [78f 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [7d4 01-05 06:37:13.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [4f4 01-05 06:36:28.27 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 | [761 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -peer0.org2.example.com | [790 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [954e4a34]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [79f 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9, channelID:businesschannel -peer1.org2.example.com | [7d5 01-05 06:37:13.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa]HandleMessage- COMPLETED. Notify +orderer.example.com | [506 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [507 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [508 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [509 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [50a 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [50b 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [50c 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [50d 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [50e 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [50f 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [510 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [511 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [512 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [513 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [514 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [762 01-05 06:37:13.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [791 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7a0 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [792 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [763 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [793 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [954e4a34]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [7d6 01-05 06:37:13.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa, channelID:businesschannel -peer0.org1.example.com | [7a1 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [794 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Move state message TRANSACTION -peer0.org1.example.com | [7a2 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org1.example.com | [764 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [7d7 01-05 06:37:13.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [795 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [7a3 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer1.org1.example.com | [765 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [796 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7d8 01-05 06:37:13.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [797 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]sending state message TRANSACTION -peer0.org1.example.com | [7a4 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37188) -peer1.org1.example.com | [766 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [7d9 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [798 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Received message TRANSACTION from shim orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [767 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [799 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [954e4a34]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7a5 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org2.example.com | [7da 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa] -peer0.org2.example.com | [79a 01-05 06:37:14.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [954e4a34]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [768 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [7db 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [79b 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [954e4a34]Sending GET_STATE -peer0.org1.example.com | [7a6 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org2.example.com | [79c 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Received message GET_STATE from shim -peer1.org1.example.com | [769 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [7dc 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa channel id: businesschannel chaincode id: name:"exp02" -peer0.org1.example.com | [7a7 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org2.example.com | [79d 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [7dd 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org1.example.com | [76a 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [7a8 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [79e 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [954e4a34]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [7de 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [76b 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [7a9 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422c491c0 env 0xc422855470 txn 0 orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer0.org2.example.com | [79f 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7aa 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422855470 -peer1.org2.example.com | [7df 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa,syscc=true,proposal=0xc422adc960,canname=escc:1.1.0 -peer1.org1.example.com | [76c 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Transaction completed. Sending COMPLETED orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org1.example.com | [7ab 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -peer0.org2.example.com | [7a0 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [954e4a34] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [7e0 01-05 06:37:13.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [76d 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]Move state message COMPLETED -peer0.org1.example.com | [7ac 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [7e1 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org2.example.com | [7a1 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [76e 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [031f89e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [7e2 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [7ad 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [7a2 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [954e4a34]Got state. Sending RESPONSE -peer1.org1.example.com | [76f 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [031f89e0]send state message COMPLETED -peer1.org2.example.com | [7e3 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cca9751]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7ae 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -orderer.example.com | [4f5 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [7a3 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [954e4a34]handleGetState serial send RESPONSE -peer1.org2.example.com | [7e4 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [770 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [031f89e0]Received message COMPLETED from shim +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:15:03.010] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [71d 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721,syscc=true,proposal=0xc421b94870,canname=escc:1.1.0 +peer0.org1.example.com | [71e 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [700 01-13 06:14:44.83 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +peer1.org1.example.com | [701 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [702 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [703 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42200c7c0 env 0xc4202b1830 txn 0 +peer1.org1.example.com | [704 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4202b1830 +peer1.org1.example.com | [705 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +peer1.org1.example.com | [706 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [707 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [6df 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0e5d1aa3]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [6e0 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6e1 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e5d1aa3] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [6e2 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [6e3 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e5d1aa3]Got state. Sending RESPONSE +peer1.org2.example.com | [6e4 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0e5d1aa3]handleGetState serial send RESPONSE +peer1.org2.example.com | [6e5 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message COMPLETED from shim +peer1.org2.example.com | [6e6 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6e7 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6e8 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712, channelID:businesschannel +peer1.org2.example.com | [6e9 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [6ea 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [6eb 01-13 06:14:44.41 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 | [6ec 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712] +peer1.org2.example.com | [6ed 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [6f0 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421a34c00 envbytes 0xc422764000 +peer0.org2.example.com | [6f1 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 returned error Chaincode exp02 is already instantiated +peer0.org2.example.com | [6f2 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422509b40 env 0xc421a34c00 txn 0 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [6ee 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712 channel id: businesschannel chaincode id: name:"exp02" +peer1.org2.example.com | [6ef 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org2.example.com | [6f0 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [6f1 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712,syscc=true,proposal=0xc4234c03c0,canname=escc:1.1.0 +peer1.org2.example.com | [6f2 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [6f3 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6f4 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [6f5 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [6f6 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6f7 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6f8 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e5d1aa3]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6f9 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Move state message TRANSACTION +peer1.org2.example.com | [6fa 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [6fb 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6fc 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]sending state message TRANSACTION +peer1.org2.example.com | [6fd 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Received message TRANSACTION from shim +peer1.org2.example.com | [6ff 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6fe 01-13 06:14:44.41 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 | [700 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e5d1aa3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [701 01-13 06:14:44.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [702 01-13 06:14:44.41 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 | [703 01-13 06:14:44.42 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 | [704 01-13 06:14:44.42 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 | [705 01-13 06:14:44.42 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 | [706 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [707 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [708 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]Move state message COMPLETED +peer1.org2.example.com | [70a 01-13 06:14:44.42 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 | [70b 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [70c 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 +peer1.org2.example.com | [70d 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [70e 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [70f 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [710 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [711 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [712 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [713 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [714 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [715 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [708 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +explorer | at ontimeout (timers.js:386:11) +explorer | at tryOnTimeout (timers.js:250:5) +explorer | at Timer.listOnTimeout (timers.js:214:5) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +explorer | [2018-01-13 06:15:03.515] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +explorer | at readableAddChunk (_stream_readable.js:176:18) +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +explorer | -------------------- +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +explorer | at next (native) +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +explorer | sqlState: '42S02', +explorer | index: 0, +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +explorer | [2018-01-13 06:15:04.059] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [6f3 01-13 06:14:38.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer0.org1.example.com | [71f 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [709 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [70a 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [515 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [6f4 01-13 06:14:38.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [6f5 01-13 06:14:38.96 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 | [70b 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421f7d000, header channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +peer0.org1.example.com | [720 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [721 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [722 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [723 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [724 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [6f6 01-13 06:14:38.97 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 | [6f7 01-13 06:14:38.97 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 | [6f8 01-13 06:14:38.97 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 | [70c 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [6f9 01-13 06:14:38.97 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 [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org2.example.com | [6fa 01-13 06:14:38.97 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 | [6fb 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [7af 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [7e5 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [7a4 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Received message RESPONSE from shim -peer1.org1.example.com | [771 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [772 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [709 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e5d1aa3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [716 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e5d1aa3]send state message COMPLETED +peer0.org2.example.com | [6fc 01-13 06:14:38.97 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 | [6fd 01-13 06:14:38.97 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 | [70d 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [725 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Move state message TRANSACTION +peer0.org1.example.com | [726 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [727 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [6fe 01-13 06:14:38.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 [4] +peer0.org2.example.com | [6ff 01-13 06:14:38.98 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{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +peer1.org1.example.com | [70e 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [7a5 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [954e4a34]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [7b0 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [7e6 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cca9751]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [728 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]sending state message TRANSACTION +peer0.org1.example.com | [729 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Received message TRANSACTION from shim +peer1.org1.example.com | [70f 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [710 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org2.example.com | txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 +peer0.org1.example.com | [72a 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [711 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [712 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4202b1830 envbytes 0xc4228e1000 +peer0.org1.example.com | [72b 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [838f2496]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | ] +peer1.org1.example.com | [713 01-13 06:14:46.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 = [cc1fac4a-4a3d-46c7-9ffb-5ad42507dee6] +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [7a6 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [954e4a34]before send -peer1.org1.example.com | [773 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095, channelID:businesschannel -peer0.org1.example.com | [7b1 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c51000, header channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" +peer0.org2.example.com | [700 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to index +peer0.org1.example.com | [72c 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [72d 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [714 01-13 06:14:46.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 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [701 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx number:[0] ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to blockNumTranNum index +peer0.org1.example.com | [72e 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [715 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [cc1fac4a-4a3d-46c7-9ffb-5ad42507dee6] orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org2.example.com | [7a7 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [954e4a34]after send -peer1.org2.example.com | [7e7 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Move state message TRANSACTION -peer1.org1.example.com | [774 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [7b2 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [7e8 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [7a8 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [954e4a34]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [775 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [7b3 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [702 01-13 06:14:38.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=[50742], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [703 01-13 06:14:38.98 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 | [704 01-13 06:14:38.98 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 | [705 01-13 06:14:38.98 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 | [706 01-13 06:14:38.98 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 | [72f 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Move state message COMPLETED +peer0.org1.example.com | [730 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [7e9 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7a9 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [954e4a34]GetState received payload RESPONSE -peer1.org1.example.com | [776 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [7b4 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [707 01-13 06:14:38.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.org2.example.com | [708 01-13 06:14:38.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.org2.example.com | [709 01-13 06:14:38.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.org2.example.com | [70a 01-13 06:14:38.98 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 | [70b 01-13 06:14:38.98 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 | [716 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4228e1000 +peer0.org2.example.com | [70c 01-13 06:14:38.98 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 | [70d 01-13 06:14:38.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 [4] +peer1.org1.example.com | [717 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [70e 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [731 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]send state message COMPLETED orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org2.example.com | [7aa 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [7ea 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]sending state message TRANSACTION -peer1.org1.example.com | [777 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [031f89e03ef8b84ba71d5ae600c1b5b83ab552afa0caa73a8f339ba7abfd9095] -peer1.org1.example.com | [778 01-05 06:37:13.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37908) -peer1.org1.example.com | [779 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [77a 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [7eb 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Received message TRANSACTION from shim -peer1.org2.example.com | [7ec 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cca9751]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [7ed 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7cca9751]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [7ee 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [7b5 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [717 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e5d1aa3]Received message COMPLETED from shim +peer1.org2.example.com | [718 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [718 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org2.example.com | [70f 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 +peer0.org1.example.com | [732 01-13 06:14:24.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Received message COMPLETED from shim +peer0.org1.example.com | [733 01-13 06:14:24.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [734 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [735 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721, channelID:businesschannel +peer0.org1.example.com | [736 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [737 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [738 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [710 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [711 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [712 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [713 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [714 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [719 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=82cb5ad3-230e-42b1-ab38-0ec156163827,syscc=true,proposal=0x0,canname=vscc:1.1.0 orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [77b 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4223532a0 env 0xc422a69d40 txn 0 -peer0.org2.example.com | [7ab 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Move state message COMPLETED -peer1.org2.example.com | [7ef 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [7b6 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -peer1.org1.example.com | [77c 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422a69d40 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [719 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [715 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [71a 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 chaindID businesschannel +peer0.org1.example.com | [739 01-13 06:14:24.88 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 [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org2.example.com | [7f0 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [7ac 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [954e4a34]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [7b7 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [77d 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -peer1.org2.example.com | [7f1 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]Move state message COMPLETED orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [7b8 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422855470 envbytes 0xc422c2c800 -peer0.org2.example.com | [7ad 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]send state message COMPLETED -peer1.org1.example.com | [77e 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org2.example.com | [7f2 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cca9751]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [7b9 01-05 06:37:06.96 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 = [9e337f76-5bbf-48fe-ac3a-8d474c8b37fb] -peer1.org2.example.com | [7f3 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cca9751]send state message COMPLETED -peer0.org2.example.com | [7ae 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Received message COMPLETED from shim -peer0.org1.example.com | [7ba 01-05 06:37:06.96 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 | [77f 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [7af 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [71b 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [716 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [73a 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53672) +peer1.org2.example.com | [71a 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712, channelID:businesschannel +peer1.org2.example.com | [71b 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer1.org1.example.com | [71c 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [717 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [718 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [7f4 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cca9751]Received message COMPLETED from shim -peer0.org1.example.com | [7bb 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [9e337f76-5bbf-48fe-ac3a-8d474c8b37fb] -peer1.org1.example.com | [780 01-05 06:37:16.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org2.example.com | [7b0 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f]HandleMessage- COMPLETED. Notify -orderer.example.com | [4f6 01-05 06:36:28.27 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 | [7f5 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [7bc 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422c2c800 -peer0.org2.example.com | [7b1 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f, channelID:businesschannel -peer1.org1.example.com | [781 01-05 06:37:16.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [7bd 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [4f7 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org2.example.com | [7b2 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [7f6 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [7be 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -orderer.example.com | [4f8 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [782 01-05 06:37:16.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [7b3 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [7bf 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a4f8ddcd-2b11-49f7-83f8-28b7c3c1824b,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [7f7 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa, channelID:businesschannel -orderer.example.com | [4f9 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [7c0 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 chaindID businesschannel -peer1.org2.example.com | [7f8 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [7b4 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f channel id: businesschannel version: 1.0 -peer0.org1.example.com | [7c1 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [783 01-05 06:37:16.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422af7000, header channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -orderer.example.com | [4fa 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org1.example.com | [784 01-05 06:37:16.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [7c2 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [4fb 01-05 06:36:28.27 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 | [7f9 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [7b5 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f,syscc=false,proposal=0xc42423ec30,canname=exp02:1.0 -peer1.org1.example.com | [785 01-05 06:37:16.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [7b6 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer0.org1.example.com | [7c3 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [4fc 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org1.example.com | [7c4 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4f8ddcd]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [7fa 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [7b7 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [786 01-05 06:37:16.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [4fd 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org1.example.com | [7c5 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [7fb 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7cca9751342719f1de6d64f3fc3f55362965ab4ab16ddca830ed1c32f3aed6aa] -peer1.org1.example.com | [787 01-05 06:37:16.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [7b8 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer0.org1.example.com | [7c6 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4f8ddcd]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4fe 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer1.org1.example.com | [788 01-05 06:37:16.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer0.org2.example.com | [7b9 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [954e4a34]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7c7 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4f8ddcd]Move state message TRANSACTION -peer1.org2.example.com | [7fc 01-05 06:37:13.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:55250) -peer1.org1.example.com | [789 01-05 06:37:16.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [4ff 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org2.example.com | [7ba 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [78a 01-05 06:37:16.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422a69d40 envbytes 0xc4231ec800 -peer1.org2.example.com | [7fd 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:55252 -peer0.org1.example.com | [7c8 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a4f8ddcd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [78b 01-05 06:37:16.62 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 = [f30e03c5-e006-43a3-86d8-34db2e8b2bca] -peer1.org1.example.com | [78c 01-05 06:37:16.62 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 | [7bb 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [78d 01-05 06:37:16.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [f30e03c5-e006-43a3-86d8-34db2e8b2bca] -peer0.org1.example.com | [7c9 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7ca 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4f8ddcd]sending state message TRANSACTION -peer0.org1.example.com | [7cb 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]Received message TRANSACTION from shim -peer0.org1.example.com | [7cc 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4f8ddcd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [7fe 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423238ed0 -orderer.example.com | [500 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer0.org2.example.com | [7bc 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [954e4a34]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [78e 01-05 06:37:16.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4231ec800 -peer1.org2.example.com | [7ff 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [78f 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [7cd 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a4f8ddcd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [800 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [501 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org2.example.com | [7bd 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Move state message TRANSACTION -peer1.org1.example.com | [790 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer0.org1.example.com | [7ce 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [502 01-05 06:36:28.27 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 | [801 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org1.example.com | [791 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=1ee86941-2b2d-46ba-9862-2f1ea586bd09,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [7be 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [7cf 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [503 01-05 06:36:28.27 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 | [802 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [792 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 chaindID businesschannel -peer0.org2.example.com | [7bf 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7d0 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [7c0 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]sending state message TRANSACTION -peer0.org2.example.com | [7c1 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Received message GET_STATE from shim -peer1.org2.example.com | [803 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [504 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [7d1 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [793 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org2.example.com | [804 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423248730, header 0xc423238f00 -peer1.org2.example.com | [805 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org2.example.com | [806 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 -peer0.org1.example.com | [7d2 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]Move state message COMPLETED -peer1.org1.example.com | [794 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [7c2 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [505 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [506 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [807 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer1.org2.example.com | [808 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [7c3 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [954e4a34]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [7c4 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7d3 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4f8ddcd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [795 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [809 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | [507 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org2.example.com | [7c5 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [954e4a34] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [7d4 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]send state message COMPLETED -peer1.org1.example.com | [796 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ee86941]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [508 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org2.example.com | [80a 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 channel id: businesschannel -peer0.org2.example.com | [7c6 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [7d5 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4f8ddcd]Received message COMPLETED from shim -peer1.org1.example.com | [797 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [798 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ee86941]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [799 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ee86941]Move state message TRANSACTION -peer1.org1.example.com | [79a 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ee86941]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [509 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [50a 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [50b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [50c 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [7d6 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a4f8ddcd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [7d7 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a4f8ddcd-2b11-49f7-83f8-28b7c3c1824b]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [7d8 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a4f8ddcd-2b11-49f7-83f8-28b7c3c1824b, channelID:businesschannel -peer0.org1.example.com | [7d9 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [7c7 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [954e4a34]Got state. Sending RESPONSE -peer1.org2.example.com | [80b 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272,syscc=true,proposal=0xc423248730,canname=lscc:1.1.0 -peer1.org1.example.com | [79b 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7da 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -orderer.example.com | [50d 01-05 06:36:28.27 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 | [7c8 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [954e4a34]handleGetState serial send RESPONSE -peer0.org2.example.com | [7c9 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Received message COMPLETED from shim -peer1.org1.example.com | [79c 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ee86941]sending state message TRANSACTION -peer1.org1.example.com | [79d 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee86941]Received message TRANSACTION from shim -orderer.example.com | [50e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [80c 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [7db 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422c2c800 -peer0.org1.example.com | [7dc 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422855470 envbytes 0xc422c2c800 -peer1.org1.example.com | [79e 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ee86941]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [79f 01-05 06:37:16.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1ee86941]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [7a0 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [7ca 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [80d 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [80e 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [50f 01-05 06:36:28.27 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 -peer1.org1.example.com | [7a1 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [80f 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae58fe9d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7dd 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422c491c0 env 0xc422855470 txn 0 -peer0.org2.example.com | [7cb 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [7a2 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [7cc 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f, channelID:businesschannel -peer0.org2.example.com | [7cd 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [7ce 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [510 01-05 06:36:28.27 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 -peer1.org1.example.com | [7a3 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee86941]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [810 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7de 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [511 01-05 06:36:28.27 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 -peer1.org1.example.com | [7a4 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee86941]Move state message COMPLETED -peer1.org2.example.com | [811 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [7cf 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [7df 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [512 01-05 06:36:28.27 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 -peer1.org1.example.com | [7a5 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ee86941]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [812 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae58fe9d]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [813 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Move state message TRANSACTION -peer0.org2.example.com | [7d0 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f] -orderer.example.com | [513 01-05 06:36:28.27 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 | [514 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [7a6 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee86941]send state message COMPLETED -peer0.org1.example.com | [7e0 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -orderer.example.com | [515 01-05 06:36:28.27 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 | [7d1 01-05 06:37:14.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [814 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [7a7 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ee86941]Received message COMPLETED from shim -peer1.org1.example.com | [7a8 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ee86941]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [7e1 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [815 01-05 06:37:14.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7d2 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f channel id: businesschannel chaincode id: name:"exp02" -peer0.org2.example.com | [7d3 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer0.org2.example.com | [7d4 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [7d5 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f,syscc=true,proposal=0xc42423ec30,canname=escc:1.1.0 -peer0.org1.example.com | [7e2 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -orderer.example.com | [516 01-05 06:36:28.27 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 -peer1.org1.example.com | [7a9 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ee86941-2b2d-46ba-9862-2f1ea586bd09]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [816 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]sending state message TRANSACTION -peer0.org2.example.com | [7d6 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [7e3 01-05 06:37:07.04 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 | [7aa 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1ee86941-2b2d-46ba-9862-2f1ea586bd09, channelID:businesschannel -peer1.org1.example.com | [7ab 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [817 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Received message TRANSACTION from shim -peer1.org2.example.com | [818 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae58fe9d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [819 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ae58fe9d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7e4 01-05 06:37:07.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.org2.example.com | [7d7 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [517 01-05 06:36:28.27 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.org2.example.com | [81a 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ae58fe9d]Sending GET_STATE -peer1.org2.example.com | [81b 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message GET_STATE from shim -peer0.org1.example.com | [7e5 01-05 06:37:07.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=exp02, key=a -orderer.example.com | [518 01-05 06:36:28.27 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.org2.example.com | [7d8 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [7ac 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer1.org2.example.com | [81c 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [7e6 01-05 06:37:07.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 [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | [519 01-05 06:36:28.27 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.org2.example.com | [7d9 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [954e4a34]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [7ad 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4231ec800 -peer1.org2.example.com | [81d 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae58fe9d]Received GET_STATE, invoking get state from ledger -orderer.example.com | [51a 01-05 06:36:28.27 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.org2.example.com | [7da 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7e7 01-05 06:37:07.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=exp02, key=b -peer1.org1.example.com | [7ae 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422a69d40 envbytes 0xc4231ec800 -peer1.org2.example.com | [81f 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | [51b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [7af 01-05 06:37:16.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4223532a0 env 0xc422a69d40 txn 0 -peer0.org2.example.com | [7db 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [7e8 01-05 06:37:07.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 [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [81e 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [51c 01-05 06:36:28.27 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 | [7b0 01-05 06:37:16.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [7dc 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [954e4a34]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [820 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [51d 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [7b1 01-05 06:37:16.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [7e9 01-05 06:37:07.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 -peer0.org2.example.com | [7dd 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Move state message TRANSACTION -peer1.org2.example.com | [821 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]Got state. Sending RESPONSE -orderer.example.com | [51e 01-05 06:36:28.27 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.org1.example.com | [7b2 01-05 06:37:16.66 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 | [7de 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [822 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae58fe9d]handleGetState serial send RESPONSE -orderer.example.com | [51f 01-05 06:36:28.27 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 -peer0.org1.example.com | [7ea 01-05 06:37:07.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [823 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Received message RESPONSE from shim -peer1.org2.example.com | [824 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae58fe9d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [520 01-05 06:36:28.27 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 | [7eb 01-05 06:37:07.04 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 [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] marked as valid by state validator -peer0.org2.example.com | [7df 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [7b3 01-05 06:37:16.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [521 01-05 06:36:28.27 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 | [825 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ae58fe9d]before send -peer0.org1.example.com | [7ec 01-05 06:37:07.04 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 | [7e0 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]sending state message TRANSACTION -orderer.example.com | [522 01-05 06:36:28.27 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 -peer1.org1.example.com | [7b4 01-05 06:37:16.67 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 | [826 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ae58fe9d]after send -peer0.org2.example.com | [7e1 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Received message TRANSACTION from shim -peer0.org1.example.com | [7ed 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [523 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [7b5 01-05 06:37:16.67 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 | [827 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ae58fe9d]GetState received payload RESPONSE -peer0.org1.example.com | [7ee 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [524 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [7b6 01-05 06:37:16.67 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 | [7e2 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [954e4a34]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7ef 01-05 06:37:07.04 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 | [7b7 01-05 06:37:16.67 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 | [829 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [828 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ae58fe9d]Received RESPONSE, communicated (state:ready) -orderer.example.com | [525 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [7b8 01-05 06:37:16.67 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 | [7e3 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [954e4a34]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7f0 01-05 06:37:07.04 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] -orderer.example.com | [526 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [7b9 01-05 06:37:16.67 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 | [82a 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Move state message COMPLETED -peer0.org2.example.com | [7e4 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [527 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [7f1 01-05 06:37:07.04 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{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -peer0.org2.example.com | [7e5 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [528 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [82b 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae58fe9d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [7ba 01-05 06:37:16.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -orderer.example.com | [529 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 -peer0.org2.example.com | [7e6 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [82c 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]send state message COMPLETED -peer1.org1.example.com | [7bb 01-05 06:37:16.67 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 -orderer.example.com | [52a 01-05 06:36:28.27 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 | [52b 01-05 06:36:28.27 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 | [52c 01-05 06:36:28.27 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 | [52d 01-05 06:36:28.27 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 | [52e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | ] -peer0.org1.example.com | [7f2 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to index -peer0.org1.example.com | [7f3 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx number:[0] ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to blockNumTranNum index -peer0.org2.example.com | [7e7 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]Move state message COMPLETED -peer1.org2.example.com | [82d 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message COMPLETED from shim -peer1.org2.example.com | [82e 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [82f 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [830 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272, channelID:businesschannel -peer0.org1.example.com | [7f4 01-05 06:37:07.05 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=[55522], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | [52f 01-05 06:36:28.27 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 | [530 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [7f5 01-05 06:37:07.05 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 | [7e8 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [954e4a34]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [7e9 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [954e4a34]send state message COMPLETED -peer0.org2.example.com | [7ea 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [954e4a34]Received message COMPLETED from shim -peer1.org2.example.com | [831 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [7bc 01-05 06:37:16.67 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 | [7bd 01-05 06:37:16.67 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 [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] marked as valid by state validator -peer0.org2.example.com | [7eb 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [7ec 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f]HandleMessage- COMPLETED. Notify -orderer.example.com | [531 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [7f6 01-05 06:37:07.05 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 | [832 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | [532 01-05 06:36:28.27 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 | [7be 01-05 06:37:16.67 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 | [7ed 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f, channelID:businesschannel -peer1.org2.example.com | [833 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [7f7 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -orderer.example.com | [533 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [7ee 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [7bf 01-05 06:37:16.68 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 | [834 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272,syscc=false,proposal=0xc423248730,canname=exp02:1.0 -orderer.example.com | [534 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [7f8 01-05 06:37:07.05 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 | [7ef 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [535 01-05 06:36:28.27 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 | [7c0 01-05 06:37:16.68 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 | [835 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer0.org1.example.com | [7f9 01-05 06:37:07.05 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 | [7f0 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [836 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [536 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org2.example.com | [7f1 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [954e4a348d31550cf6ca4d5eb02f355eab132c7df4938b70c4fb20f6abe8ee2f] -peer1.org1.example.com | [7c1 01-05 06:37:16.68 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 | [7fa 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [837 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer0.org2.example.com | [7f2 01-05 06:37:14.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:47528) -orderer.example.com | [537 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [7fb 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [7c2 01-05 06:37:16.69 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 | [838 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae58fe9d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [7f3 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [839 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [7c3 01-05 06:37:16.74 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{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -peer0.org1.example.com | [7fc 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org2.example.com | [7f4 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [83a 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 -orderer.example.com | [538 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer1.org2.example.com | [83b 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae58fe9d]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [7f5 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc427661d00 env 0xc42764d3e0 txn 0 -peer0.org1.example.com | [7fd 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | ] -orderer.example.com | [539 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [7f6 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42764d3e0 -peer0.org1.example.com | [7fe 01-05 06:37:07.05 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 | [83c 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Move state message TRANSACTION -peer1.org1.example.com | [7c4 01-05 06:37:16.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to index -orderer.example.com | [53a 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [53b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [53c 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [7f7 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -peer0.org1.example.com | [7ff 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [83d 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [83e 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [83f 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]sending state message TRANSACTION -peer1.org2.example.com | [840 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message GET_STATE from shim -peer0.org1.example.com | [800 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org1.example.com | [801 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [802 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -peer0.org1.example.com | [803 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [804 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [53d 01-05 06:36:28.27 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 | [53e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [7c5 01-05 06:37:16.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx number:[0] ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to blockNumTranNum index -peer1.org2.example.com | [841 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [805 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [806 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [7f8 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [7f9 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [842 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae58fe9d]Received GET_STATE, invoking get state from ledger -orderer.example.com | [53f 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [540 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [807 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [808 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [809 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [7c6 01-05 06:37:16.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=[60308], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org2.example.com | [7fa 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org2.example.com | [843 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [80a 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [541 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [7fb 01-05 06:37:16.42 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [80b 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [542 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer1.org2.example.com | [844 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [80c 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37202 -peer1.org1.example.com | [7c7 01-05 06:37:16.75 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -orderer.example.com | [543 01-05 06:36:28.27 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 | [7fc 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [845 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [80d 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422982ae0 -orderer.example.com | [544 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [7c8 01-05 06:37:16.76 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 | [7fd 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4276e8000, header channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -orderer.example.com | [545 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [846 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]Got state. Sending RESPONSE -peer1.org2.example.com | [847 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae58fe9d]handleGetState serial send RESPONSE -peer1.org2.example.com | [848 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message GET_STATE from shim -peer1.org2.example.com | [849 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [546 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [80e 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [7c9 01-05 06:37:16.76 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 | [7fe 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [7ff 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [547 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [80f 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [84a 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae58fe9d]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [800 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [548 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [84b 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [7ca 01-05 06:37:16.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer0.org1.example.com | [810 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org2.example.com | [801 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [7cb 01-05 06:37:16.78 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 | [549 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...312925776656E13DE17855CDB72B1A97 -peer0.org1.example.com | [811 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [84c 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d] getting state for chaincode exp02, key b, channel businesschannel -peer0.org2.example.com | [802 01-05 06:37:16.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | [54a 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 4588F36052957A7130D6180848ED110DFE0A900E74A5A2744C98568D746F2B44 -peer0.org1.example.com | [812 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [7cc 01-05 06:37:16.78 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 | [84d 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -orderer.example.com | [54b 01-05 06:36:28.28 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 -peer0.org2.example.com | [803 01-05 06:37:16.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [813 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ee97c0, header 0xc422982b10 -peer1.org1.example.com | [7cd 01-05 06:37:16.78 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 | [84e 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]Got state. Sending RESPONSE -peer0.org2.example.com | [804 01-05 06:37:16.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42764d3e0 envbytes 0xc423764400 -peer1.org2.example.com | [84f 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae58fe9d]handleGetState serial send RESPONSE -peer0.org2.example.com | [805 01-05 06:37:16.44 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 = [c2945009-c47a-4f6f-bc21-7979144a6813] -orderer.example.com | [54c 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [814 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org2.example.com | [806 01-05 06:37:16.44 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 -orderer.example.com | [54d 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [850 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message PUT_STATE from shim -peer1.org1.example.com | [7ce 01-05 06:37:16.78 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 | [807 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c2945009-c47a-4f6f-bc21-7979144a6813] -peer0.org1.example.com | [815 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 -peer1.org1.example.com | [7cf 01-05 06:37:16.79 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 | [808 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423764400 -orderer.example.com | [54e 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -peer1.org2.example.com | [851 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [809 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [7d0 01-05 06:37:16.80 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 | [816 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -peer0.org2.example.com | [80a 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer0.org1.example.com | [817 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [80b 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=312172e4-9f21-41a9-8210-3af558381f96,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [7d1 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | [54f 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [852 01-05 06:37:14.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [80c 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 chaindID businesschannel -peer0.org1.example.com | [818 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -peer0.org2.example.com | [80d 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [550 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [853 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]state is ready -peer1.org1.example.com | [7d2 01-05 06:37:16.80 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 | [80e 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [819 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel -orderer.example.com | [551 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...312925776656E13DE17855CDB72B1A97 -peer0.org2.example.com | [80f 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [552 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 55CC5E8F461922F91CB0A4591E665D2A94673832D2615B97F3E7182BC7B162A4 -peer0.org2.example.com | [810 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [312172e4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [854 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [7d3 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [553 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= -peer0.org1.example.com | [81a 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3,syscc=true,proposal=0xc421ee97c0,canname=lscc:1.1.0 -peer0.org2.example.com | [811 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [7d4 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 -peer1.org2.example.com | [855 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae58fe9d]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [812 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [312172e4]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [81b 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [516 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [517 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [518 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [519 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [51a 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [719 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [73b 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53676 +peer0.org1.example.com | [73c 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ec8de0 +orderer.example.com | [51b 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [71d 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [71a 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [71c 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [73d 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [51c 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [71e 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82cb5ad3]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [71f 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [71b 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421e409e0 env 0xc422b07c80 txn 0 +peer0.org1.example.com | [73e 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [51d 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer1.org1.example.com | [720 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82cb5ad3]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [71c 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422b07c80 +peer0.org1.example.com | [73f 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [51e 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org2.example.com | [71d 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org1.example.com | [721 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82cb5ad3]Move state message TRANSACTION +peer0.org2.example.com | [71d 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +peer0.org1.example.com | [740 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [51f 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer1.org2.example.com | [71e 01-13 06:14:44.42 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 [0e5d1aa327e73819337d8905d2e53826b34ac325eb73400b29b2f06b94541712] +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [722 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [82cb5ad3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [723 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [724 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82cb5ad3]sending state message TRANSACTION +peer0.org1.example.com | [741 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [742 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ebc820, header 0xc421ec9140 +peer1.org2.example.com | [71f 01-13 06:14:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:57154) +peer0.org2.example.com | [71e 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [520 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [521 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer1.org1.example.com | [725 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82cb5ad3]Received message TRANSACTION from shim +peer0.org1.example.com | [743 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [744 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 +peer0.org1.example.com | [745 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +peer0.org2.example.com | [71f 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [726 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82cb5ad3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [727 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [82cb5ad3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [522 01-13 06:14:13.17 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 | [720 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | -------------------- +peer0.org1.example.com | [746 01-13 06:14:25.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 | [728 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [523 01-13 06:14:13.17 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 | [720 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org2.example.com | [721 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [722 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [524 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer1.org1.example.com | [729 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [747 01-13 06:14:25.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 = [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org2.example.com | [723 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421e55000, header channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +peer1.org1.example.com | [72a 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [72b 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82cb5ad3]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [724 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [72c 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82cb5ad3]Move state message COMPLETED +peer0.org1.example.com | [748 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel +orderer.example.com | [525 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [526 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer1.org2.example.com | [721 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [725 01-13 06:14:46.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [72d 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82cb5ad3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [527 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org1.example.com | [749 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [74a 01-13 06:14:25.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.1.0,txid=9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00,syscc=true,proposal=0xc421ebc820,canname=qscc:1.1.0 +peer0.org2.example.com | [726 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +orderer.example.com | [528 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org2.example.com | [727 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [72e 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82cb5ad3]send state message COMPLETED +orderer.example.com | [529 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [74b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org2.example.com | [722 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [723 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [724 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4218199e0 env 0xc42199c4e0 txn 0 +peer0.org2.example.com | [728 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [52a 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer0.org1.example.com | [74c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [74d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org1.example.com | [72f 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82cb5ad3]Received message COMPLETED from shim +peer1.org1.example.com | [730 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [82cb5ad3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [729 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [52b 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [725 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42199c4e0 +peer1.org1.example.com | [731 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [82cb5ad3-230e-42b1-ab38-0ec156163827]HandleMessage- COMPLETED. Notify +orderer.example.com | [52c 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [72a 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422b07c80 envbytes 0xc421e58400 +peer0.org1.example.com | [74e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]Inside sendExecuteMessage. Message TRANSACTION +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer1.org1.example.com | [732 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:82cb5ad3-230e-42b1-ab38-0ec156163827, channelID:businesschannel +peer1.org2.example.com | [726 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +orderer.example.com | [52d 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [72b 01-13 06:14:46.64 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 = [aa43a878-ab9f-44c2-8e0b-e0726e4a29e1] +peer0.org1.example.com | [74f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +explorer | at ontimeout (timers.js:386:11) +peer1.org1.example.com | [733 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [52e 01-13 06:14:13.17 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 | [727 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [72c 01-13 06:14:46.64 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 | [72d 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [aa43a878-ab9f-44c2-8e0b-e0726e4a29e1] +peer0.org1.example.com | [750 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [751 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [752 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Move state message TRANSACTION +orderer.example.com | [52f 01-13 06:14:13.17 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 | [530 01-13 06:14:13.17 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 +peer1.org2.example.com | [728 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [72e 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421e58400 +peer1.org1.example.com | [734 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org1.example.com | [753 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at tryOnTimeout (timers.js:250:5) +orderer.example.com | [531 01-13 06:14:13.17 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 +peer1.org1.example.com | [735 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4228e1000 +peer0.org2.example.com | [72f 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +explorer | at Timer.listOnTimeout (timers.js:214:5) +orderer.example.com | [532 01-13 06:14:13.17 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.org1.example.com | [736 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4202b1830 envbytes 0xc4228e1000 +peer0.org1.example.com | [754 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [729 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | code: 'ER_NO_SUCH_TABLE', +explorer | errno: 1146, +peer0.org2.example.com | [730 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [533 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [755 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]sending state message TRANSACTION +peer1.org1.example.com | [737 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42200c7c0 env 0xc4202b1830 txn 0 +peer1.org2.example.com | [72a 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +orderer.example.com | [534 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [731 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=73309b89-709f-45b8-a2f6-3483846b0798,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [756 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Received message TRANSACTION from shim +peer1.org1.example.com | [738 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [72b 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +explorer | sqlState: '42S02', +orderer.example.com | [535 01-13 06:14:13.17 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 | [732 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 chaindID businesschannel +peer0.org1.example.com | [757 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [739 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [72c 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c13000, header channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +explorer | index: 0, +peer0.org1.example.com | [758 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9eec1535]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [759 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer1.org1.example.com | [73a 01-13 06:14:46.64 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 | [733 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +orderer.example.com | [536 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org1.example.com | [73b 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [734 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | [2018-01-13 06:15:04.525] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [75a 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Transaction completed. Sending COMPLETED +orderer.example.com | [537 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [72d 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [73c 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org2.example.com | [735 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [75b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Move state message COMPLETED +orderer.example.com | [538 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [73d 01-13 06:14:46.64 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 | [72e 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [736 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73309b89]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [75c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [539 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [72f 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [75d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]send state message COMPLETED +peer0.org2.example.com | [737 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [53a 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [73e 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org1.example.com | [75e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Received message COMPLETED from shim +peer0.org2.example.com | [738 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73309b89]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [53b 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [73f 01-13 06:14:46.64 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 | [730 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +explorer | at emitOne (events.js:96:13) +explorer | at Socket.emit (events.js:188:7) +peer0.org2.example.com | [739 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73309b89]Move state message TRANSACTION +peer1.org1.example.com | [740 01-13 06:14:46.64 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 | [731 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org1.example.com | [75f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [53c 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [73a 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [73309b89]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [741 01-13 06:14:46.64 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 | [732 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [760 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00]HandleMessage- COMPLETED. Notify +orderer.example.com | [53d 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [73b 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [742 01-13 06:14:46.64 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 | [743 01-13 06:14:46.64 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 | [761 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00, channelID:businesschannel +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org2.example.com | [733 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42199c4e0 envbytes 0xc421810000 +peer1.org1.example.com | [744 01-13 06:14:46.64 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 | [745 01-13 06:14:46.64 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] marked as valid by state validator +peer0.org1.example.com | [762 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [73c 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73309b89]sending state message TRANSACTION +explorer | -------------------- +peer1.org2.example.com | [734 01-13 06:14:46.61 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 = [6241947e-c817-49a5-8c35-de3f2dc264e7] +orderer.example.com | [53e 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [746 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [763 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [764 01-13 06:14:25.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 +orderer.example.com | [53f 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [73d 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73309b89]Received message TRANSACTION from shim +peer1.org1.example.com | [747 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org1.example.com | [748 01-13 06:14:46.64 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 | [73e 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73309b89]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [540 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [735 01-13 06:14:46.61 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 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer0.org1.example.com | [765 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +peer0.org1.example.com | [766 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [73f 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [73309b89]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [736 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6241947e-c817-49a5-8c35-de3f2dc264e7] +peer1.org1.example.com | [749 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +orderer.example.com | [541 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [740 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [737 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421810000 +peer1.org1.example.com | [74a 01-13 06:14:46.65 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 | [74b 01-13 06:14:46.65 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{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +peer0.org1.example.com | [767 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel chaincode id: name:"qscc" +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org2.example.com | [741 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [738 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [542 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 +peer0.org1.example.com | [768 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +explorer | at next (native) +peer0.org2.example.com | [742 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [769 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | ] +orderer.example.com | [543 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [739 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org2.example.com | [743 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73309b89]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [74c 01-13 06:14:46.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=50812, bytesLength=2916] for tx ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to index +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +orderer.example.com | [544 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [73a 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a3d97d8b-6f80-43d9-ad3b-0ac84c778978,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [76a 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00,syscc=true,proposal=0xc421ebc820,canname=escc:1.1.0 +peer0.org2.example.com | [744 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73309b89]Move state message COMPLETED +peer1.org2.example.com | [73b 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 chaindID businesschannel +peer0.org1.example.com | [76b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [74d 01-13 06:14:46.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=50812, bytesLength=2916] for tx number:[0] ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to blockNumTranNum index +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | [545 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [745 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73309b89]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [73c 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer1.org1.example.com | [74e 01-13 06:14:46.65 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=[55522], isChainEmpty=[false], lastBlockNumber=[5] +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [76c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [746 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73309b89]send state message COMPLETED +orderer.example.com | [546 01-13 06:14:13.18 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 +peer1.org2.example.com | [73d 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [74f 01-13 06:14:46.65 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 | [76d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org2.example.com | [747 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73309b89]Received message COMPLETED from shim +peer0.org2.example.com | [748 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [73309b89]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [749 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [73309b89-709f-45b8-a2f6-3483846b0798]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [74a 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:73309b89-709f-45b8-a2f6-3483846b0798, channelID:businesschannel +peer0.org2.example.com | [74b 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [76e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [750 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +orderer.example.com | [547 01-13 06:14:13.18 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 +peer1.org2.example.com | [73e 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +explorer | errno: 1146, +peer0.org2.example.com | [74c 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org2.example.com | [74d 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421e58400 +peer0.org1.example.com | [76f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [548 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [73f 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a3d97d8b]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [740 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [751 01-13 06:14:46.65 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 | [752 01-13 06:14:46.65 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 | [770 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [549 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org2.example.com | [741 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a3d97d8b]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [74e 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422b07c80 envbytes 0xc421e58400 +peer1.org1.example.com | [753 01-13 06:14:46.65 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 | [54a 01-13 06:14:13.18 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 | [771 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]sendExecuteMsg trigger event TRANSACTION +explorer | sqlState: '42S02', +peer1.org2.example.com | [742 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3d97d8b]Move state message TRANSACTION +peer1.org1.example.com | [754 01-13 06:14:50.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer0.org2.example.com | [74f 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421e409e0 env 0xc422b07c80 txn 0 +orderer.example.com | [54b 01-13 06:14:13.18 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 | [772 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Move state message TRANSACTION +explorer | index: 0, +peer1.org1.example.com | [755 01-13 06:14:50.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer0.org2.example.com | [750 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [743 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a3d97d8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [54c 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +peer1.org1.example.com | [756 01-13 06:14:50.95 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +peer0.org2.example.com | [751 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [773 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [744 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [54d 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [54e 01-13 06:14:13.18 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 | [757 01-13 06:14:51.06 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer0.org2.example.com | [752 01-13 06:14:46.66 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 | [745 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3d97d8b]sending state message TRANSACTION +explorer | [2018-01-13 06:15:05.150] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +orderer.example.com | [54f 01-13 06:14:13.18 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 | [774 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [758 01-13 06:14:51.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-exp02-1.0 +peer0.org2.example.com | [753 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [550 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [775 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]sending state message TRANSACTION +peer1.org2.example.com | [746 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3d97d8b]Received message TRANSACTION from shim +peer1.org1.example.com | [759 01-13 06:14:51.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-exp02-1.0) +peer0.org2.example.com | [754 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +orderer.example.com | [551 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [776 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Received message TRANSACTION from shim +peer1.org2.example.com | [747 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a3d97d8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org1.example.com | [75a 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer0.org2.example.com | [755 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [552 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [748 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a3d97d8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [777 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [75b 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [553 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [756 01-13 06:14:46.67 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 | [778 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9eec1535]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +orderer.example.com | [554 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [749 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [757 01-13 06:14:46.67 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 | [75c 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [779 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [555 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [758 01-13 06:14:46.67 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} +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [74a 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [77a 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [556 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org2.example.com | [759 01-13 06:14:46.67 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 | [75d 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org2.example.com | [74b 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [557 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [77b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [75a 01-13 06:14:46.67 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} +explorer | at emitOne (events.js:96:13) +peer1.org1.example.com | [75e 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [558 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [74c 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3d97d8b]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [75b 01-13 06:14:46.67 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 | [77c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Move state message COMPLETED +explorer | at Socket.emit (events.js:188:7) +orderer.example.com | [559 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org1.example.com | [75f 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer0.org2.example.com | [75c 01-13 06:14:46.67 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} +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer1.org2.example.com | [74d 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3d97d8b]Move state message COMPLETED +peer0.org1.example.com | [77d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [75d 01-13 06:14:46.67 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] marked as valid by state validator +orderer.example.com | [55a 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer1.org1.example.com | [760 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org2.example.com | [75e 01-13 06:14:46.68 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 | [77e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]send state message COMPLETED +peer1.org2.example.com | [74e 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a3d97d8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | -------------------- +orderer.example.com | [55b 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org2.example.com | [75f 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [761 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [760 01-13 06:14:46.68 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 | [77f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Received message COMPLETED from shim +peer1.org2.example.com | [74f 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3d97d8b]send state message COMPLETED +orderer.example.com | [55c 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org2.example.com | [761 01-13 06:14:46.68 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 | [762 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [750 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3d97d8b]Received message COMPLETED from shim +peer0.org2.example.com | [762 01-13 06:14:46.68 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 | [780 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +orderer.example.com | [55d 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [751 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a3d97d8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [763 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [763 01-13 06:14:46.68 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{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +peer0.org1.example.com | [781 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00]HandleMessage- COMPLETED. Notify +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +orderer.example.com | [55e 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [764 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 +peer1.org2.example.com | [752 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a3d97d8b-6f80-43d9-ad3b-0ac84c778978]HandleMessage- COMPLETED. Notify +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer0.org2.example.com | ] +orderer.example.com | [55f 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org1.example.com | [782 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00, channelID:businesschannel +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer1.org2.example.com | [753 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a3d97d8b-6f80-43d9-ad3b-0ac84c778978, channelID:businesschannel +peer0.org2.example.com | [764 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50812, bytesLength=2916] for tx ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to index +peer1.org1.example.com | [765 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [783 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [754 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org2.example.com | [765 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50812, bytesLength=2916] for tx number:[0] ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to blockNumTranNum index +orderer.example.com | [560 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [784 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [766 01-13 06:14:46.69 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=[55522], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [766 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Move state message READY +orderer.example.com | [561 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [785 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [755 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org2.example.com | [767 01-13 06:14:46.69 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 | [786 01-13 06:14:25.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 [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +peer1.org1.example.com | [767 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [562 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +explorer | at Timer.listOnTimeout (timers.js:214:5) +peer0.org1.example.com | [787 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53676) +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [768 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e1493cb4]Entered state ready +peer1.org2.example.com | [756 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421810000 +orderer.example.com | [563 01-13 06:14:13.18 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 | [768 01-13 06:14:46.69 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 | [788 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53678 +explorer | errno: 1146, +peer1.org2.example.com | [757 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42199c4e0 envbytes 0xc421810000 +peer1.org1.example.com | [769 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5, channelID:businesschannel +peer0.org2.example.com | [769 01-13 06:14:46.69 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 | [789 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c7a150 +orderer.example.com | [564 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org2.example.com | [758 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4218199e0 env 0xc42199c4e0 txn 0 +peer0.org2.example.com | [76a 01-13 06:14:46.69 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 | [78a 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | sqlState: '42S02', +peer1.org1.example.com | [76a 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]sending state message READY +peer0.org1.example.com | [78b 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [759 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | [565 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +explorer | index: 0, +peer0.org2.example.com | [76b 01-13 06:14:46.69 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 | [78c 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +orderer.example.com | [566 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [76b 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [78d 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [76c 01-13 06:14:46.69 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 | [75a 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +explorer | [2018-01-13 06:15:05.521] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [78e 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [567 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [76d 01-13 06:14:46.69 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}] +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer0.org1.example.com | [78f 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e95540, header 0xc421c7a4b0 +peer1.org2.example.com | [75b 01-13 06:14:46.62 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 | [76c 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer0.org1.example.com | [790 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [568 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [76e 01-13 06:14:46.69 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 | [791 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer1.org2.example.com | [75c 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [569 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...AB9CC570A28A0EE5098783BD7DAC5ACD +peer1.org1.example.com | [76d 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [792 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [56a 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 94EF53F06FB8F1629610F01BE45A788C8F5DF84CD9EC91E217630363089B01CB +peer0.org2.example.com | [76f 01-13 06:14:46.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 | [75d 01-13 06:14:46.62 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 | [793 01-13 06:14:27.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 +peer1.org1.example.com | [76e 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer1.org2.example.com | [75e 01-13 06:14:46.62 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 | [794 01-13 06:14:27.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 = [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +orderer.example.com | [56b 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 +peer0.org2.example.com | [770 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer1.org1.example.com | [76f 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [75f 01-13 06:14:46.62 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 | [795 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [771 01-13 06:14:46.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 [5] with [1] transactions +peer1.org2.example.com | [760 01-13 06:14:46.62 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 +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [770 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [796 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel version: 1.1.0 +orderer.example.com | [56c 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [761 01-13 06:14:46.62 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} +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [772 01-13 06:14:46.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 [5] +peer0.org1.example.com | [797 01-13 06:14:27.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=qscc,version=1.1.0,txid=c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d,syscc=true,proposal=0xc421e95540,canname=qscc:1.1.0 +peer1.org2.example.com | [762 01-13 06:14:46.62 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 +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org2.example.com | [773 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [771 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [763 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | [56d 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +explorer | -------------------- +peer0.org1.example.com | [798 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org2.example.com | [764 01-13 06:14:46.62 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 | [774 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +orderer.example.com | [56e 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +peer1.org1.example.com | [772 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]sendExecuteMsg trigger event TRANSACTION +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org2.example.com | [765 01-13 06:14:46.62 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 | [799 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [56f 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [773 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Move state message TRANSACTION +peer0.org2.example.com | [775 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer1.org2.example.com | [766 01-13 06:14:46.62 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] marked as valid by state validator +peer0.org1.example.com | [79a 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org1.example.com | [774 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [767 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [570 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [776 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [79b 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]Inside sendExecuteMessage. Message TRANSACTION +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [768 01-13 06:14:46.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 | [775 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [777 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [79c 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [571 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...AB9CC570A28A0EE5098783BD7DAC5ACD +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer1.org2.example.com | [769 01-13 06:14:46.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 | [776 01-13 06:14:51.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]sending state message TRANSACTION +peer0.org2.example.com | [778 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +orderer.example.com | [572 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C7522C1B21D5E71D276B097EC604659779179CBF81B499C122EE10FD94488CE5 +peer1.org2.example.com | [76a 01-13 06:14:46.62 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 | [79d 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | at next (native) +peer1.org1.example.com | [777 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message GET_STATE from shim +orderer.example.com | [573 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= +peer1.org2.example.com | [76b 01-13 06:14:46.62 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] +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org2.example.com | [779 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [778 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready orderer.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer1.org1.example.com | [7d5 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [813 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [312172e4]Move state message TRANSACTION +peer1.org2.example.com | [76c 01-13 06:14:46.62 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{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +peer0.org1.example.com | [79e 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]sendExecuteMsg trigger event TRANSACTION +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +peer0.org2.example.com | [77a 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry orderer.example.com | ] -peer0.org2.example.com | [814 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [312172e4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [81c 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [856 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Move state message RESPONSE -peer1.org1.example.com | [7d6 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [815 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [81d 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [554 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26077], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [857 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [7d7 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [816 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [312172e4]sending state message TRANSACTION -peer1.org1.example.com | [7d8 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [858 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [81e 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [81f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [817 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312172e4]Received message TRANSACTION from shim -orderer.example.com | [555 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -peer0.org1.example.com | [820 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [7d9 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [859 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]sending state message RESPONSE -orderer.example.com | [556 01-05 06:36:30.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [821 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [7da 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [85a 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message PUT_STATE from shim -peer0.org2.example.com | [818 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [312172e4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [7db 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [557 01-05 06:36:30.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:44098 -peer0.org1.example.com | [822 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Move state message TRANSACTION -peer1.org2.example.com | [85b 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [819 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [312172e4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [558 01-05 06:36:30.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:44098 -peer1.org1.example.com | [7dc 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [85c 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [823 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [81a 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [559 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer1.org1.example.com | [7dd 01-05 06:37:16.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [85d 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]state is ready -peer1.org2.example.com | [85e 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae58fe9d]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [81b 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [81c 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [85f 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae58fe9d]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [7de 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [824 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [81d 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312172e4]Transaction completed. Sending COMPLETED -orderer.example.com | [55a 01-05 06:36:30.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:44100 -peer1.org2.example.com | [860 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Move state message RESPONSE -peer1.org1.example.com | [7df 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [81e 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312172e4]Move state message COMPLETED -peer0.org1.example.com | [825 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]sending state message TRANSACTION -orderer.example.com | [55b 01-05 06:36:30.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:44100 -peer1.org2.example.com | [861 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [826 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Received message TRANSACTION from shim -peer1.org1.example.com | [7e0 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423440ae0 env 0xc4229b3b30 txn 0 -peer1.org2.example.com | [862 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [81f 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [312172e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [55c 01-05 06:36:30.40 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 | [820 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [312172e4]send state message COMPLETED -peer1.org2.example.com | [863 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]sending state message RESPONSE -peer1.org1.example.com | [7e1 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4229b3b30 -peer0.org1.example.com | [827 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [55d 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer0.org2.example.com | [821 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [312172e4]Received message COMPLETED from shim -orderer.example.com | [55e 01-05 06:36:30.40 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 | [7e2 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer0.org1.example.com | [828 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [539af21d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [822 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [312172e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [864 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message COMPLETED from shim -peer0.org1.example.com | [829 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [539af21d]Sending GET_STATE -orderer.example.com | [55f 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -peer1.org1.example.com | [7e3 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [823 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [312172e4-9f21-41a9-8210-3af558381f96]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [865 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [560 01-05 06:36:30.40 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 | [7e4 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [824 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:312172e4-9f21-41a9-8210-3af558381f96, channelID:businesschannel -peer0.org1.example.com | [82a 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message GET_STATE from shim -peer1.org2.example.com | [866 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272]HandleMessage- COMPLETED. Notify -orderer.example.com | [561 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -peer0.org2.example.com | [825 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [7e5 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org1.example.com | [82b 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [867 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272, channelID:businesschannel -orderer.example.com | [562 01-05 06:36:30.40 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 | [7e6 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [826 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer1.org2.example.com | [868 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [82c 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [539af21d]Received GET_STATE, invoking get state from ledger -orderer.example.com | [563 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [827 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423764400 -peer1.org1.example.com | [7e7 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [82d 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [869 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [7e8 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42310ca80, header channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer0.org2.example.com | [828 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42764d3e0 envbytes 0xc423764400 -peer0.org1.example.com | [82e 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [86a 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [7e9 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [86b 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [829 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc427661d00 env 0xc42764d3e0 txn 0 -peer0.org2.example.com | [82a 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [82f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [86c 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org1.example.com | [7ea 01-05 06:37:27.92 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 | [82b 01-05 06:37:16.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [86d 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 channel id: businesschannel chaincode id: name:"exp02" -peer1.org1.example.com | [7eb 01-05 06:37:27.92 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 | [830 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d]Got state. Sending RESPONSE -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [86e 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org1.example.com | [7ec 01-05 06:37:27.92 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 | [82c 01-05 06:37:16.49 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 | [831 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [539af21d]handleGetState serial send RESPONSE -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [86f 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [832 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Received message RESPONSE from shim -peer0.org2.example.com | [82d 01-05 06:37:16.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [7ed 01-05 06:37:27.92 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [833 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [870 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272,syscc=true,proposal=0xc423248730,canname=escc:1.1.0 -peer0.org2.example.com | [82e 01-05 06:37:16.49 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 | [7ee 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org2.example.com | [82f 01-05 06:37:16.49 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 | [834 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [539af21d]before send -peer1.org2.example.com | [871 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [7ef 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org2.example.com | [830 01-05 06:37:16.49 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 | [835 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [539af21d]after send -peer1.org1.example.com | [7f0 01-05 06:37:27.92 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 | [872 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org1.example.com | [836 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [539af21d]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [7f1 01-05 06:37:27.92 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 | [831 01-05 06:37:16.49 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 | [873 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org1.example.com | [837 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [539af21d]GetState received payload RESPONSE -peer0.org2.example.com | [832 01-05 06:37:16.49 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 | [7f2 01-05 06:37:27.92 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 | [874 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae58fe9d]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org1.example.com | [838 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [833 01-05 06:37:16.49 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 | [875 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [839 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Move state message COMPLETED -peer1.org1.example.com | [7f3 01-05 06:37:27.92 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 | [876 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [564 01-05 06:36:30.40 UTC] [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 0xc42000e750 gate 1515134190406874900 evaluation starts -peer0.org1.example.com | [83a 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [7f4 01-05 06:37:27.92 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 | [834 01-05 06:37:16.49 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 | [83b 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]send state message COMPLETED -peer1.org2.example.com | [877 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae58fe9d]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [7f5 01-05 06:37:27.92 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 -orderer.example.com | [565 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [835 01-05 06:37:16.49 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 | [83c 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message COMPLETED from shim -peer1.org1.example.com | [7f6 01-05 06:37:27.92 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 -orderer.example.com | [566 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [878 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Move state message TRANSACTION -peer0.org2.example.com | [836 01-05 06:37:16.49 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 | [83d 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [7f7 01-05 06:37:27.92 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 | [879 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [567 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -peer0.org1.example.com | [83e 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [837 01-05 06:37:16.49 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 [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] marked as valid by state validator -peer1.org1.example.com | [7f8 01-05 06:37:27.92 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 | [87a 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [83f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3, channelID:businesschannel -orderer.example.com | [568 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 principal evaluation fails -peer0.org2.example.com | [838 01-05 06:37:16.49 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 | [87b 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]sending state message TRANSACTION -peer0.org1.example.com | [840 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [841 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [842 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel version: 1.0 -orderer.example.com | [569 01-05 06:36:30.40 UTC] [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 0xc42000e750 gate 1515134190406874900 evaluation fails -peer0.org2.example.com | [839 01-05 06:37:16.49 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 | [7f9 01-05 06:37:27.92 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 | [843 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3,syscc=false,proposal=0xc421ee97c0,canname=exp02:1.0 -orderer.example.com | [56a 01-05 06:36:30.40 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 -peer1.org2.example.com | [87c 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Received message TRANSACTION from shim -peer1.org1.example.com | [7fa 01-05 06:37:27.92 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 | [844 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer0.org2.example.com | [83a 01-05 06:37:16.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [56b 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [7fb 01-05 06:37:27.93 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 | [845 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [87d 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae58fe9d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [7fc 01-05 06:37:27.93 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 | [846 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | [56c 01-05 06:36:30.40 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 == -peer0.org2.example.com | [83b 01-05 06:37:16.50 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 | [87e 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ae58fe9d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [7fd 01-05 06:37:27.93 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 | [847 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [7fe 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [56d 01-05 06:36:30.40 UTC] [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 0xc42000e760 gate 1515134190407673500 evaluation starts -peer0.org1.example.com | [848 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [83c 01-05 06:37:16.50 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 | [87f 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [7ff 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org1.example.com | [849 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [83d 01-05 06:37:16.50 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{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -orderer.example.com | [56e 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [880 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [800 01-05 06:37:27.93 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 | [84a 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 -orderer.example.com | [56f 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [801 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org2.example.com | [881 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [84b 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Move state message TRANSACTION -peer1.org1.example.com | [802 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org1.example.com | [84c 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | ] -peer1.org2.example.com | [882 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]Move state message COMPLETED -orderer.example.com | [570 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -peer1.org1.example.com | [803 01-05 06:37:27.93 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 | [84d 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [571 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [83e 01-05 06:37:16.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to index -peer1.org2.example.com | [883 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae58fe9d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [804 01-05 06:37:27.93 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 | [84e 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]sending state message TRANSACTION -peer1.org1.example.com | [805 01-05 06:37:27.93 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 | [806 01-05 06:37:27.93 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 | [83f 01-05 06:37:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx number:[0] ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to blockNumTranNum index -peer1.org2.example.com | [884 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae58fe9d]send state message COMPLETED -orderer.example.com | [572 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 principal matched by identity 0 -peer1.org1.example.com | [807 01-05 06:37:27.95 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 | [84f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message GET_STATE from shim -peer0.org2.example.com | [840 01-05 06:37:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60308], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org2.example.com | [885 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae58fe9d]Received message COMPLETED from shim -peer0.org1.example.com | [850 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [573 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 09 00 94 f3 14 48 12 21 bc 3f 25 08 77 49 13 1e |.....H.!.?%.wI..| -peer1.org1.example.com | [808 01-05 06:37:27.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.org2.example.com | [841 01-05 06:37:16.51 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 | [886 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [851 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [539af21d]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [809 01-05 06:37:27.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" -orderer.example.com | 00000010 5d f6 f7 22 20 ff 98 35 b1 f1 ef e1 8d 5d 2d fa |].." ..5.....]-.| -peer0.org2.example.com | [842 01-05 06:37:16.51 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 | [887 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [80a 01-05 06:37:27.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 | [852 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [843 01-05 06:37:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -orderer.example.com | [574 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7d 18 bf 24 e8 f8 2a 91 81 c8 8c 53 |0D. }..$..*....S| -peer1.org2.example.com | [888 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272, channelID:businesschannel -peer1.org1.example.com | [80b 01-05 06:37:27.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.org2.example.com | [844 01-05 06:37:16.51 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 | [853 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [889 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 00000010 a4 a2 21 c4 f2 c3 82 37 a6 c9 cb ad 63 19 56 c2 |..!....7....c.V.| -peer0.org2.example.com | [845 01-05 06:37:16.51 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 | [80c 01-05 06:37:27.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 | [854 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [88a 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 00000020 8f 3c 5b fb 02 20 1c dd 9a 32 2f 8f 8a 43 91 63 |.<[.. ...2/..C.c| -peer0.org2.example.com | [846 01-05 06:37:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [88b 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [855 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d]Got state. Sending RESPONSE -peer0.org2.example.com | [847 01-05 06:37:16.51 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}] -orderer.example.com | 00000030 2a be 6f b1 1f a5 e9 2c 66 a5 0e 6a bc 22 aa 08 |*.o....,f..j."..| -peer0.org1.example.com | [856 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [539af21d]handleGetState serial send RESPONSE -peer1.org1.example.com | [80d 01-05 06:37:27.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" -peer1.org2.example.com | [88c 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer0.org2.example.com | [848 01-05 06:37:16.51 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 | [857 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message COMPLETED from shim -peer1.org1.example.com | [80e 01-05 06:37:27.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" -orderer.example.com | 00000040 9e cc 0d 41 d2 b4 |...A..| -peer1.org2.example.com | [88d 01-05 06:37:14.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:55252) -peer0.org1.example.com | [858 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [80f 01-05 06:37:27.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.org2.example.com | [849 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [88e 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | [575 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [859 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [84a 01-05 06:37:16.52 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 | [810 01-05 06:37:27.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" -orderer.example.com | [576 01-05 06:36:30.40 UTC] [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 0xc42000e760 gate 1515134190407673500 evaluation succeeds -peer0.org1.example.com | [85a 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3, channelID:businesschannel -peer1.org2.example.com | [88f 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer0.org2.example.com | [84b 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | [577 01-05 06:36:30.40 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 -peer1.org1.example.com | [811 01-05 06:37:27.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 | [85b 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [578 01-05 06:36:30.40 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 -peer1.org2.example.com | [890 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [84c 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org1.example.com | [812 01-05 06:37:27.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" -orderer.example.com | [579 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -peer0.org1.example.com | [85c 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [891 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [84d 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [813 01-05 06:37:27.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 | [85d 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [57a 01-05 06:36:30.40 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.org2.example.com | [84e 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 -peer1.org2.example.com | [892 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423a597e0 env 0xc423a49350 txn 0 -orderer.example.com | [57b 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer1.org1.example.com | [814 01-05 06:37:27.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 | [85e 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -orderer.example.com | [57c 01-05 06:36:30.40 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 | [84f 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [893 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423a49350 -peer1.org1.example.com | [815 01-05 06:37:27.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 | [85f 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [850 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [894 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -orderer.example.com | [57d 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [895 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [57e 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [816 01-05 06:37:27.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.org2.example.com | [851 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [860 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel chaincode id: name:"exp02" -peer1.org2.example.com | [896 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [57f 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [852 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [897 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | [580 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [861 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org1.example.com | [817 01-05 06:37:27.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" -peer1.org2.example.com | [898 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [581 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -peer0.org2.example.com | [853 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [862 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [899 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [582 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -peer1.org1.example.com | [818 01-05 06:37:27.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [89a 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423a84800, header channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -peer0.org1.example.com | [863 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3,syscc=true,proposal=0xc421ee97c0,canname=escc:1.1.0 -peer0.org2.example.com | [854 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [583 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -peer1.org2.example.com | [89b 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [864 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org2.example.com | [855 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [819 01-05 06:37:27.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [584 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [89c 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [856 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [865 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [81a 01-05 06:37:27.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [585 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [89d 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [857 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [89e 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [586 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [866 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org2.example.com | [858 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [81b 01-05 06:37:27.95 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 | [89f 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | [587 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [867 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [81c 01-05 06:37:27.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.org2.example.com | [859 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [8a0 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [588 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [868 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [8a1 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423a49350 envbytes 0xc421a9b400 -peer0.org2.example.com | [85a 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42865ce00 env 0xc428668660 txn 0 -orderer.example.com | [589 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -peer1.org1.example.com | [81d 01-05 06:37:27.95 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 | [8a2 01-05 06:37:16.35 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 = [79a73ed6-d233-4f39-923c-ab47a435b0e9] -peer0.org2.example.com | [85b 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc428668660 -peer0.org1.example.com | [869 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [58a 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -peer1.org2.example.com | [8a3 01-05 06:37:16.35 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 | [81e 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [85c 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer1.org2.example.com | [8a4 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [79a73ed6-d233-4f39-923c-ab47a435b0e9] -peer0.org1.example.com | [86a 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [58b 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -peer1.org2.example.com | [8a5 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a9b400 -peer1.org1.example.com | [81f 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [85d 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [8a6 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [58c 01-05 06:36:30.41 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 -peer0.org1.example.com | [86b 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Move state message TRANSACTION -peer1.org2.example.com | [8a7 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -peer1.org1.example.com | [820 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [58d 01-05 06:36:30.41 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 -peer0.org1.example.com | [86c 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [85e 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [58e 01-05 06:36:30.41 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 | [8a8 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=0d8a4775-69d3-4ff7-b233-c122946f4be0,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [821 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [86d 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [85f 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -orderer.example.com | [58f 01-05 06:36:30.41 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 -peer1.org2.example.com | [8a9 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 chaindID businesschannel -peer0.org1.example.com | [86e 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]sending state message TRANSACTION -peer1.org1.example.com | [822 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [860 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [8aa 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [590 01-05 06:36:30.41 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 -peer0.org1.example.com | [86f 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Received message TRANSACTION from shim -peer1.org1.example.com | [823 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [8ab 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [861 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [870 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [591 01-05 06:36:30.41 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 [] -peer1.org1.example.com | [824 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [8ac 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [862 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4286a8a80, header channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer0.org1.example.com | [871 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [539af21d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [592 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org1.example.com | [825 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [863 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [8ad 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0d8a4775]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [872 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [593 01-05 06:36:30.41 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 -peer1.org1.example.com | [826 01-05 06:37:27.96 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 | [864 01-05 06:37:27.88 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 | [873 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [8ae 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [827 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [594 01-05 06:36:30.41 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] -peer0.org1.example.com | [874 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [8af 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0d8a4775]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [828 01-05 06:37:27.96 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 | [865 01-05 06:37:27.88 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 | [595 01-05 06:36:30.41 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 -peer1.org2.example.com | [8b0 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d8a4775]Move state message TRANSACTION -peer1.org1.example.com | [829 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [866 01-05 06:37:27.88 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 | [875 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Move state message COMPLETED -orderer.example.com | [596 01-05 06:36:30.41 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 -peer1.org2.example.com | [8b1 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d8a4775]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [876 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [867 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [597 01-05 06:36:30.41 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 [] -peer1.org1.example.com | [82a 01-05 06:37:27.96 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 | [868 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [598 01-05 06:36:30.41 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 == -peer1.org2.example.com | [8b2 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [877 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]send state message COMPLETED -orderer.example.com | [599 01-05 06:36:30.41 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 0xc42000e9b8 gate 1515134190413670500 evaluation starts -peer1.org1.example.com | [82b 01-05 06:37:27.96 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 | [869 01-05 06:37:27.88 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 | [86a 01-05 06:37:27.89 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 | [86b 01-05 06:37:27.89 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 | [82c 01-05 06:37:27.96 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 | [82d 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [59a 01-05 06:36:30.41 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 0xc42000e9b8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [878 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message COMPLETED from shim -peer1.org2.example.com | [8b3 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d8a4775]sending state message TRANSACTION -peer1.org2.example.com | [8b4 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d8a4775]Received message TRANSACTION from shim -peer1.org2.example.com | [8b5 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d8a4775]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [8b6 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0d8a4775]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [8b7 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [8b8 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [8b9 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [86c 01-05 06:37:27.89 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 | [86d 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [86e 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [86f 01-05 06:37:27.90 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 | [82e 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [59b 01-05 06:36:30.41 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 0xc42000e9b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [879 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [870 01-05 06:37:27.90 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 | [82f 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [8ba 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d8a4775]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [87a 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [871 01-05 06:37:27.90 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 | [872 01-05 06:37:27.90 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 | [873 01-05 06:37:27.90 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 | [874 01-05 06:37:27.90 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 | [875 01-05 06:37:27.90 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 | [876 01-05 06:37:27.90 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 | [8bb 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d8a4775]Move state message COMPLETED -orderer.example.com | [59c 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -peer1.org2.example.com | [8bc 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d8a4775]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [8bd 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d8a4775]send state message COMPLETED -peer1.org2.example.com | [8be 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d8a4775]Received message COMPLETED from shim -peer1.org1.example.com | [830 01-05 06:37:27.97 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 | [87b 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3, channelID:businesschannel -peer0.org2.example.com | [877 01-05 06:37:27.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [59d 01-05 06:36:30.41 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 0xc42000e9b8 principal matched by identity 0 -peer0.org1.example.com | [87c 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [87d 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [8bf 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d8a4775]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [8c0 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0d8a4775-69d3-4ff7-b233-c122946f4be0]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [8c1 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0d8a4775-69d3-4ff7-b233-c122946f4be0, channelID:businesschannel -peer0.org2.example.com | [878 01-05 06:37:27.93 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 | [831 01-05 06:37:27.97 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 | [87e 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [59e 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7d 1e dc cf 17 d5 a8 4e 1b e1 62 18 e4 33 dd 59 |}......N..b..3.Y| -peer0.org2.example.com | [879 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer1.org1.example.com | [832 01-05 06:37:27.97 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 | [833 01-05 06:37:27.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 | [87f 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -orderer.example.com | 00000010 41 f8 0c 43 8b d7 cc a4 01 f5 4b c5 89 6b 2a 28 |A..C......K..k*(| -peer1.org2.example.com | [8c2 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [880 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37202) -peer0.org2.example.com | [87a 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -orderer.example.com | [59f 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c9 fc f2 46 e5 ca 22 7c ad 0c c9 |0E.!....F.."|...| -peer1.org1.example.com | [834 01-05 06:37:27.97 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 | [835 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [836 01-05 06:37:27.97 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 | [8c3 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | 00000010 9a 26 c6 f7 59 38 f7 3e 52 80 cb f8 3a ce 2c 64 |.&..Y8.>R...:.,d| -orderer.example.com | 00000020 7a 4a 18 06 76 02 20 32 9f e9 de c5 d7 20 3c 18 |zJ..v. 2..... <.| -orderer.example.com | 00000030 f5 d9 ef 9f ae 9f 2f 51 62 c6 72 62 e5 86 55 72 |....../Qb.rb..Ur| -orderer.example.com | 00000040 63 46 38 65 91 c7 60 |cF8e..`| -peer0.org1.example.com | [881 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37206 -peer1.org1.example.com | [837 01-05 06:37:27.98 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 | [87b 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [5a0 01-05 06:36:30.41 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 0xc42000e9b8 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [8c4 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a9b400 -peer0.org2.example.com | [87c 01-05 06:37:27.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org1.example.com | [838 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [5a1 01-05 06:36:30.41 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 0xc42000e9b8 gate 1515134190413670500 evaluation succeeds -peer1.org2.example.com | [8c5 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423a49350 envbytes 0xc421a9b400 -peer1.org2.example.com | [8c6 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423a597e0 env 0xc423a49350 txn 0 -peer0.org1.example.com | [882 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42349dbf0 -peer0.org1.example.com | [883 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [884 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [839 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [83a 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [87d 01-05 06:37:27.93 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 | [83b 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [83c 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [83d 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [5a2 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [87e 01-05 06:37:27.93 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 | [885 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [886 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [887 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [888 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422601810, header 0xc42349dc20 -peer0.org1.example.com | [889 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [88a 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e -peer0.org1.example.com | [88b 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -orderer.example.com | [5a3 01-05 06:36:30.41 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 | [5a4 01-05 06:36:30.41 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 | [5a5 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [8c7 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [8c8 01-05 06:37:16.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [8c9 01-05 06:37:16.35 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 | [88c 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [5a6 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [87f 01-05 06:37:27.93 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 | [83e 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [83f 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [840 01-05 06:37:27.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [841 01-05 06:37:27.99 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 | [842 01-05 06:37:28.01 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 | [8ca 01-05 06:37:16.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 | [88d 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -peer0.org2.example.com | [880 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [5a7 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [88e 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel -peer0.org1.example.com | [88f 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [8cb 01-05 06:37:16.35 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 | [8cc 01-05 06:37:16.35 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 | [8cd 01-05 06:37:16.35 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 | [8ce 01-05 06:37:16.35 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 | [881 01-05 06:37:27.94 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 | [882 01-05 06:37:27.94 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 | [883 01-05 06:37:27.94 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 | [884 01-05 06:37:27.94 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 | [885 01-05 06:37:27.94 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 | [886 01-05 06:37:27.94 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 | [887 01-05 06:37:27.94 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 | [888 01-05 06:37:27.94 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 | [889 01-05 06:37:27.94 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 | [88a 01-05 06:37:27.94 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 | [890 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e,syscc=true,proposal=0xc422601810,canname=lscc:1.1.0 -peer0.org1.example.com | [891 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [843 01-05 06:37:28.01 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 | [8cf 01-05 06:37:16.35 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 | [8d0 01-05 06:37:16.36 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 | [8d1 01-05 06:37:16.36 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 | [8d2 01-05 06:37:16.36 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 | [8d3 01-05 06:37:16.36 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 | [8d4 01-05 06:37:16.36 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 [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] marked as valid by state validator -peer1.org2.example.com | [8d5 01-05 06:37:16.36 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 | [8d6 01-05 06:37:16.36 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 | [8d7 01-05 06:37:16.36 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 | [8d8 01-05 06:37:16.36 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 | [8d9 01-05 06:37:16.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 [6] -peer1.org2.example.com | [8da 01-05 06:37:16.43 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{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -peer1.org2.example.com | txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 +peer1.org2.example.com | txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 +peer1.org1.example.com | [779 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e1493cb4]Received GET_STATE, invoking get state from ledger +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +peer0.org1.example.com | [79f 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Move state message TRANSACTION peer1.org2.example.com | ] -peer1.org2.example.com | [8db 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to index -peer0.org2.example.com | [88b 01-05 06:37:27.94 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 | [88c 01-05 06:37:27.94 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 | [88d 01-05 06:37:27.94 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 | [88e 01-05 06:37:27.94 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 | [88f 01-05 06:37:27.96 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 | [890 01-05 06:37:27.96 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 | [891 01-05 06:37:27.96 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 | [5a8 01-05 06:36:30.41 UTC] [github.com/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 | [5a9 01-05 06:36:30.41 UTC] [github.com/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.org2.example.com | [892 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [892 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [893 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [894 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [8dc 01-05 06:37:16.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx number:[0] ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to blockNumTranNum index -peer1.org2.example.com | [8dd 01-05 06:37:16.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=[60308], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org2.example.com | [8de 01-05 06:37:16.44 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 | [8df 01-05 06:37:16.47 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 | [8e0 01-05 06:37:16.48 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 | [8e1 01-05 06:37:16.49 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 | [8e2 01-05 06:37:16.49 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 | [844 01-05 06:37:28.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 -peer1.org1.example.com | [845 01-05 06:37:28.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 -peer1.org1.example.com | [846 01-05 06:37:28.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 | [895 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [893 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [8e3 01-05 06:37:16.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [5aa 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [894 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [895 01-05 06:37:27.96 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 | [896 01-05 06:37:27.96 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 | [847 01-05 06:37:28.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 | [896 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [8e4 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | [5ab 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [897 01-05 06:37:27.96 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 | [8e5 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [848 01-05 06:37:28.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 | [897 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [5ac 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [849 01-05 06:37:28.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 | [898 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Move state message TRANSACTION -orderer.example.com | [5ad 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [84a 01-05 06:37:28.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 -peer1.org2.example.com | [8e6 01-05 06:37:16.52 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 | [5ae 01-05 06:36:30.41 UTC] [github.com/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.org2.example.com | [898 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [899 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [8e7 01-05 06:37:16.52 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 | [84b 01-05 06:37:28.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.org2.example.com | [899 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [89a 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [5af 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [89a 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [89b 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [8e8 01-05 06:37:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org1.example.com | [84c 01-05 06:37:28.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 -orderer.example.com | [5b0 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [89b 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]sending state message TRANSACTION -peer0.org2.example.com | [89c 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [5b1 01-05 06:36:30.41 UTC] [github.com/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" -peer1.org2.example.com | [8e9 01-05 06:37:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org1.example.com | [84d 01-05 06:37:28.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 | [89c 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Received message TRANSACTION from shim -peer0.org2.example.com | [89d 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [8ea 01-05 06:37:16.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [5b2 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [84e 01-05 06:37:28.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.org1.example.com | [89d 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [89e 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [8eb 01-05 06:37:16.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 -orderer.example.com | [5b3 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [89e 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [849bd9b5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [84f 01-05 06:37:28.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 | [89f 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [8ec 01-05 06:37:16.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [89f 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [849bd9b5]Sending GET_STATE -peer0.org2.example.com | [8a0 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [850 01-05 06:37:28.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 -orderer.example.com | [5b4 01-05 06:36:30.41 UTC] [github.com/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 | [8ed 01-05 06:37:16.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [851 01-05 06:37:28.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 | [8a1 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [5b5 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [8a0 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Received message GET_STATE from shim -peer1.org2.example.com | [8ee 01-05 06:37:16.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [852 01-05 06:37:28.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [5b6 01-05 06:36:30.41 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" -peer0.org2.example.com | [8a2 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [8a1 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [8ef 01-05 06:37:16.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [853 01-05 06:37:28.02 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 | [8a3 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [5b7 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [8a2 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [849bd9b5]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [8f0 01-05 06:37:16.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [8a4 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5b8 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [854 01-05 06:37:28.02 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 | [8a3 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [8f1 01-05 06:37:16.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [5b9 01-05 06:36:30.41 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 -peer1.org1.example.com | [855 01-05 06:37:28.02 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 | [8a5 01-05 06:37:27.97 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 | [8a4 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [849bd9b5] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [8f2 01-05 06:37:16.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [5ba 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [856 01-05 06:37:28.02 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 | [8a6 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5bb 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [8a5 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [8f3 01-05 06:37:16.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [857 01-05 06:37:28.02 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 | [8a7 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [5bc 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [8f4 01-05 06:37:16.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [8a6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [849bd9b5]Got state. Sending RESPONSE -peer1.org1.example.com | [858 01-05 06:37:28.02 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 | [8a8 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [8f5 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -peer1.org2.example.com | [8f6 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -peer0.org2.example.com | [8a9 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [8a7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [849bd9b5]handleGetState serial send RESPONSE -orderer.example.com | [5bd 01-05 06:36:30.42 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 -peer1.org2.example.com | [8f7 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [859 01-05 06:37:28.02 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 | [5be 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [8aa 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [8a8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Received message RESPONSE from shim -peer1.org1.example.com | [85a 01-05 06:37:28.02 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 | [5bf 01-05 06:36:30.42 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 -peer0.org2.example.com | [8ab 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [8f8 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [8a9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [85b 01-05 06:37:28.02 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 | [8ac 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [5c0 01-05 06:36:30.42 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 | [8f9 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc427a8f1c0 env 0xc427a81e30 txn 0 -peer1.org1.example.com | [85c 01-05 06:37:28.02 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 | [5c1 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [8aa 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [849bd9b5]before send -peer0.org2.example.com | [8ad 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [8fa 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc427a81e30 -peer1.org1.example.com | [85d 01-05 06:37:28.02 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 | [8ab 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [849bd9b5]after send -orderer.example.com | [5c2 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [8ae 01-05 06:37:27.98 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 | [8fb 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer1.org1.example.com | [85e 01-05 06:37:28.02 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 | [8ac 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [849bd9b5]Received RESPONSE, communicated (state:ready) -orderer.example.com | [5c3 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [8af 01-05 06:37:27.98 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 | [85f 01-05 06:37:28.02 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 | [8ad 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [849bd9b5]GetState received payload RESPONSE -peer1.org2.example.com | [8fc 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [8b0 01-05 06:37:27.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [5c4 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [8ae 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [860 01-05 06:37:28.02 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 | [8fd 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [5c5 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [8af 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Move state message COMPLETED -peer0.org2.example.com | [8b1 01-05 06:37:27.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [5c6 01-05 06:36:30.42 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 -peer1.org2.example.com | [8fe 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org1.example.com | [861 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [5c7 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [8b0 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [8ff 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [5c8 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [8b2 01-05 06:37:27.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [900 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [862 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [5c9 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [8b1 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]send state message COMPLETED -peer0.org2.example.com | [8b3 01-05 06:37:27.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5ca 01-05 06:36:30.42 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 | [901 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc427ae0a80, header channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer1.org1.example.com | [863 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [8b2 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Received message COMPLETED from shim -peer0.org2.example.com | [8b4 01-05 06:37:27.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [5cb 01-05 06:36:30.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [902 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [8b3 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [8b5 01-05 06:37:27.99 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 | [864 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [8b4 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [8b6 01-05 06:37:28.00 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 | [903 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8b5 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e, channelID:businesschannel -peer1.org1.example.com | [865 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [904 01-05 06:37:27.86 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 | [8b7 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [8b6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [866 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [8b8 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org1.example.com | [8b7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [905 01-05 06:37:27.86 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 | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [8b8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [867 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [906 01-05 06:37:27.86 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 | [8b9 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [8b9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -peer1.org1.example.com | [868 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [907 01-05 06:37:27.86 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 | [8ba 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org1.example.com | [8ba 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [869 01-05 06:37:28.03 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 | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org1.example.com | [8bb 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel chaincode id: name:"lscc" -peer0.org2.example.com | [8bb 01-05 06:37:28.00 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 | [86a 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [908 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [8bc 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org1.example.com | [86b 01-05 06:37:28.03 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 | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer0.org1.example.com | [8bd 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [8bc 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [909 01-05 06:37:27.86 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 | [86c 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org1.example.com | [8be 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e,syscc=true,proposal=0xc422601810,canname=escc:1.1.0 -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org1.example.com | [86d 01-05 06:37:28.03 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 | [8bf 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org2.example.com | [90a 01-05 06:37:27.86 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 | [86e 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [8bd 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [8c0 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [86f 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [5cc 01-05 06:36:30.42 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----- -peer0.org1.example.com | [8c1 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [870 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [90b 01-05 06:37:27.87 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 | [8c2 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [8be 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [871 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [8c3 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [872 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [90c 01-05 06:37:27.87 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 | [8c4 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [873 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [8c5 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [8bf 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [90d 01-05 06:37:27.87 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 | [874 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [8c6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Move state message TRANSACTION -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [875 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [8c0 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [8c7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [90e 01-05 06:37:27.87 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 | [876 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org2.example.com | [8c1 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [877 01-05 06:37:28.04 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 -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [8c8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [878 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [8c2 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [90f 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org1.example.com | [879 01-05 06:37:28.09 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [8c3 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [8c9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]sending state message TRANSACTION -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org1.example.com | [87a 01-05 06:37:28.09 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 | [910 01-05 06:37:27.87 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 | [8ca 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Received message TRANSACTION from shim -peer0.org2.example.com | [8c4 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org1.example.com | [87b 01-05 06:37:28.09 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 | [8c5 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [87c 01-05 06:37:28.10 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 | [87d 01-05 06:37:28.10 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 | [87e 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [87f 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423440ae0 env 0xc4229b3b30 txn 0 -peer1.org1.example.com | [880 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [881 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [882 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [883 01-05 06:37:28.10 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 | [884 01-05 06:37:28.10 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 | [885 01-05 06:37:28.10 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 | [886 01-05 06:37:28.10 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 | [887 01-05 06:37:28.10 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 | [911 01-05 06:37:27.87 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 | [8cb 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [8cc 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [849bd9b5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [8cd 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [8ce 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5cd 01-05 06:36:30.43 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 | [912 01-05 06:37:27.87 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 | [913 01-05 06:37:27.87 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 | [914 01-05 06:37:27.87 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 | [8c6 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [8c7 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [8c8 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [8c9 01-05 06:37:28.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 -peer0.org2.example.com | [8ca 01-05 06:37:28.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.org2.example.com | [8cb 01-05 06:37:28.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 -orderer.example.com | [5ce 01-05 06:36:30.43 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 | [888 01-05 06:37:28.10 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 | [8cf 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [915 01-05 06:37:27.87 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 | [916 01-05 06:37:27.87 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 | [917 01-05 06:37:27.87 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 | [889 01-05 06:37:28.10 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 | [918 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [5cf 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [8cc 01-05 06:37:28.01 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 | [919 01-05 06:37:27.87 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 | [8d0 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Move state message COMPLETED -orderer.example.com | [5d0 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [88a 01-05 06:37:28.10 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 | [8cd 01-05 06:37:28.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 -peer1.org2.example.com | [91a 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org2.example.com | [8ce 01-05 06:37:28.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.org1.example.com | [8d1 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [5d1 01-05 06:36:30.43 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.org2.example.com | [91b 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org1.example.com | [88b 01-05 06:37:28.10 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 | [8cf 01-05 06:37:28.02 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 | [8d2 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]send state message COMPLETED -orderer.example.com | [5d2 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [91c 01-05 06:37:27.87 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 | [8d0 01-05 06:37:28.02 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 | [8d3 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Received message COMPLETED from shim -peer1.org1.example.com | [88c 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [91d 01-05 06:37:27.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [5d3 01-05 06:36:30.43 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 | [88d 01-05 06:37:28.10 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" > -orderer.example.com | [5d4 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [91e 01-05 06:37:27.87 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 | [8d4 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [88e 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [8d1 01-05 06:37:28.02 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 | [91f 01-05 06:37:27.87 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 | [88f 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [8d5 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e]HandleMessage- COMPLETED. Notify -orderer.example.com | [5d5 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [890 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [8d2 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [920 01-05 06:37:27.87 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 | [891 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [5d6 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [8d6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e, channelID:businesschannel -peer1.org1.example.com | [892 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [8d3 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [921 01-05 06:37:27.87 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 | [893 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [8d7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [8d4 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [5d7 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [922 01-05 06:37:27.87 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 | [894 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [8d8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [5d8 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [8d5 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [895 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [8d9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [5d9 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [923 01-05 06:37:27.87 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 | [8d6 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [896 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [8da 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [8d7 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [924 01-05 06:37:27.87 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 | [897 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [8db 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37206) -peer0.org2.example.com | [8d8 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [898 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [925 01-05 06:37:27.87 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 | [899 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [8dc 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37208 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [8d9 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [89a 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [926 01-05 06:37:27.87 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 | [8dd 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422854a20 -peer0.org2.example.com | [8da 01-05 06:37:28.04 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 | [89b 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8de 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [89c 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [927 01-05 06:37:27.87 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 | [8db 01-05 06:37:28.04 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 | [89d 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [89e 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [89f 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [8a0 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [8a1 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [8df 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [8e0 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [8e1 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [928 01-05 06:37:27.87 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 | [8e2 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [8a2 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [8dc 01-05 06:37:28.04 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [8a3 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [8e3 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422601e50, header 0xc422854a50 -peer1.org2.example.com | [929 01-05 06:37:27.87 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 | [8dd 01-05 06:37:28.04 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 | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer0.org1.example.com | [8e4 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org1.example.com | [8a4 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org2.example.com | [92a 01-05 06:37:27.87 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 | [8de 01-05 06:37:28.06 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 | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org1.example.com | [8a5 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [8e5 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 -peer0.org2.example.com | [8df 01-05 06:37:28.06 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 | [92b 01-05 06:37:27.87 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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer0.org1.example.com | [8e6 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -peer1.org1.example.com | [8a6 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [8e0 01-05 06:37:28.06 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 | [92c 01-05 06:37:27.87 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 | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org2.example.com | [8e1 01-05 06:37:28.06 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 | [92d 01-05 06:37:27.87 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 | [8e7 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [8a7 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org2.example.com | [8e2 01-05 06:37:28.06 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 | [92e 01-05 06:37:27.87 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 | [8a8 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [8e8 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -peer1.org2.example.com | [92f 01-05 06:37:27.87 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 | oQmWQsjpiQ== -peer0.org2.example.com | [8e3 01-05 06:37:28.07 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 | [930 01-05 06:37:27.87 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 | [8a9 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [8e9 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [931 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [8e4 01-05 06:37:28.07 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 | [8ea 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [8aa 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -orderer.example.com | [5da 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [932 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [8e5 01-05 06:37:28.07 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 | [8ab 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer0.org1.example.com | [8eb 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229,syscc=true,proposal=0xc422601e50,canname=lscc:1.1.0 -peer1.org2.example.com | [933 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [934 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [8ac 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8ec 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [935 01-05 06:37:27.88 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 | [8e6 01-05 06:37:28.07 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [8ad 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [936 01-05 06:37:27.88 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 | [8ed 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [8e7 01-05 06:37:28.07 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 | [8ae 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [937 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [8e8 01-05 06:37:28.07 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 | [8e9 01-05 06:37:28.08 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 | [8ee 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [8af 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [938 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [939 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [93a 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [93b 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [93c 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [93d 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [93e 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [93f 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [940 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [941 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [942 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [943 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [944 01-05 06:37:27.88 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 | [945 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [946 01-05 06:37:27.88 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 | [947 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [948 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [949 01-05 06:37:27.88 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 | [94a 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [94b 01-05 06:37:27.88 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 | [94c 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [94d 01-05 06:37:27.88 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 | [94e 01-05 06:37:27.88 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 | [94f 01-05 06:37:27.88 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 | [950 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [8ea 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [951 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8ef 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [8b0 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [8eb 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [8f0 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [952 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [8b1 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [8ec 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [953 01-05 06:37:27.88 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 | [8f1 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [8b2 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [8ed 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [8ee 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [954 01-05 06:37:27.88 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 | [8b3 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [8f2 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [8ef 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org2.example.com | [955 01-05 06:37:27.88 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 | [8b4 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [8f0 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [8f3 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Move state message TRANSACTION -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org2.example.com | [8f1 01-05 06:37:28.12 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 | [956 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [8b5 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [8f4 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org2.example.com | [957 01-05 06:37:27.88 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 | [8b6 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [8f2 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [8f5 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [8f6 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]sending state message TRANSACTION -peer1.org2.example.com | [958 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [8f3 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [8b7 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [8b8 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [8b9 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [8f7 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Received message TRANSACTION from shim -peer1.org2.example.com | [959 01-05 06:37:27.88 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 | [8f4 01-05 06:37:28.24 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 | [8ba 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [8f8 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [95a 01-05 06:37:27.88 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [8f5 01-05 06:37:28.24 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 | [8bb 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [95b 01-05 06:37:27.88 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 | [8f9 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cde09275]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [5db 01-05 06:36:30.43 UTC] [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 | [8f6 01-05 06:37:28.24 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 | [8bc 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [5dc 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [95c 01-05 06:37:27.88 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 | [8fa 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cde09275]Sending GET_STATE -peer0.org2.example.com | [8f7 01-05 06:37:28.24 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 | [8bd 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [8f8 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [95d 01-05 06:37:27.88 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 | [5dd 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [8fb 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Received message GET_STATE from shim -peer0.org2.example.com | [8f9 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42865ce00 env 0xc428668660 txn 0 -peer1.org1.example.com | [8be 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [5de 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [95e 01-05 06:37:27.88 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 | [8fc 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [8fa 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [95f 01-05 06:37:27.88 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 | [5df 01-05 06:36:30.43 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 | [8bf 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [8fb 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [8fd 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cde09275]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [8fc 01-05 06:37:28.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [5e0 01-05 06:36:30.43 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: -peer1.org1.example.com | [8c0 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [960 01-05 06:37:27.88 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 | [8fd 01-05 06:37:28.26 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 | [8fe 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cde09275] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org2.example.com | [8fe 01-05 06:37:28.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [5e1 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [8ff 01-05 06:37:28.26 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 | [8c1 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [5e2 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [900 01-05 06:37:28.26 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 | [8ff 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [901 01-05 06:37:28.26 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 | [961 01-05 06:37:27.88 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [5e3 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [8c2 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [962 01-05 06:37:27.88 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 | [900 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cde09275]Got state. Sending RESPONSE -peer0.org2.example.com | [902 01-05 06:37:28.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | [5e4 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org2.example.com | [963 01-05 06:37:27.88 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 | [8c3 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org2.example.com | [903 01-05 06:37:28.26 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 | [901 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cde09275]handleGetState serial send RESPONSE -orderer.example.com | [5e5 01-05 06:36:30.43 UTC] [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 | [8c4 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org2.example.com | [904 01-05 06:37:28.26 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 | [964 01-05 06:37:27.88 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 | [902 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Received message RESPONSE from shim -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [965 01-05 06:37:27.88 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 | [8c5 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org2.example.com | [905 01-05 06:37:28.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 = [] -peer0.org1.example.com | [903 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [966 01-05 06:37:27.88 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 | [8c6 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [906 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [967 01-05 06:37:27.88 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 | [904 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cde09275]before send -peer1.org1.example.com | [8c7 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [907 01-05 06:37:28.27 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 | [8c8 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [968 01-05 06:37:27.88 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 | [905 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cde09275]after send -peer0.org2.example.com | [908 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org1.example.com | [8c9 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [909 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [969 01-05 06:37:27.88 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 | [906 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cde09275]Received RESPONSE, communicated (state:ready) -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [90a 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [8ca 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [907 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cde09275]GetState received payload RESPONSE -peer0.org2.example.com | [90b 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [96a 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [8cb 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [90c 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [96b 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [90d 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [8cc 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [908 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [96c 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [90e 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [909 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Move state message COMPLETED -peer1.org1.example.com | [8cd 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [90f 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org2.example.com | [96d 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [90a 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [8ce 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [910 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [90b 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]send state message COMPLETED -peer1.org2.example.com | [96e 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [8cf 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [911 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org1.example.com | [90c 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [912 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [96f 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer1.org1.example.com | [8d0 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [913 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [970 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer0.org1.example.com | [90d 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Received message COMPLETED from shim -peer0.org2.example.com | [914 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [8d1 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [915 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [971 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | [8d2 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [916 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [90e 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [8d3 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [917 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [8d4 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [972 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [918 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [5e6 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [90f 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [8d5 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [973 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [919 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [8d6 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [574 01-13 06:14:13.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26078], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [77b 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +explorer | code: 'ER_NO_SUCH_TABLE', +peer1.org1.example.com | [77a 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [76d 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50812, bytesLength=2916] for tx ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to index +peer0.org1.example.com | [7a0 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [575 01-13 06:14:13.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 +explorer | errno: 1146, +peer0.org2.example.com | [77c 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [77b 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e1493cb4] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [76e 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50812, bytesLength=2916] for tx number:[0] ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to blockNumTranNum index +orderer.example.com | [576 01-13 06:14:15.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [7a1 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer0.org2.example.com | [77d 01-13 06:14:46.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [77c 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [76f 01-13 06:14:46.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=[55522], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [577 01-13 06:14:15.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50088 +explorer | sqlState: '42S02', +peer0.org2.example.com | [77e 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:59068 +peer0.org1.example.com | [7a2 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]sending state message TRANSACTION +peer1.org1.example.com | [77d 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e1493cb4]Got state. Sending RESPONSE +peer1.org2.example.com | [770 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +explorer | index: 0, +peer0.org2.example.com | [77f 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423bba9c0 +orderer.example.com | [578 01-13 06:14:15.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.8:50088 +peer1.org1.example.com | [77e 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e1493cb4]handleGetState serial send RESPONSE +peer0.org1.example.com | [7a3 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Received message TRANSACTION from shim +peer0.org1.example.com | [7a4 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [780 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [771 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | [579 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org2.example.com | [781 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [7a5 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c13d44be]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [77f 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message COMPLETED from shim +peer1.org2.example.com | [772 01-13 06:14:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +explorer | [2018-01-13 06:15:06.204] [ERROR] blockscanner - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.blocks' doesn't exist +peer0.org2.example.com | [782 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +orderer.example.com | [57a 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50090 +peer0.org1.example.com | [7a6 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer1.org1.example.com | [780 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [783 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [773 01-13 06:14:46.64 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 | [784 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [781 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7a7 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [785 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423b81360, header 0xc423bbad20 +orderer.example.com | [57b 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.8:50090 +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +peer1.org2.example.com | [774 01-13 06:14:46.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.org2.example.com | [786 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [7a8 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Move state message COMPLETED +peer1.org1.example.com | [782 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5, channelID:businesschannel +orderer.example.com | [57c 01-13 06:14:15.29 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 +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org2.example.com | [787 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2 +peer1.org2.example.com | [775 01-13 06:14:46.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 +peer1.org1.example.com | [783 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [57d 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org1.example.com | [7a9 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [788 01-13 06:14:52.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2] +peer1.org2.example.com | [776 01-13 06:14:46.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}] +orderer.example.com | [57e 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [789 01-13 06:14:52.45 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 | [784 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +peer0.org2.example.com | [78a 01-13 06:14:52.45 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 = [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2] +peer1.org2.example.com | [777 01-13 06:14:46.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}] +orderer.example.com | [57f 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer0.org1.example.com | [7aa 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]send state message COMPLETED +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +peer0.org2.example.com | [78b 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2 channel id: businesschannel +peer1.org1.example.com | [785 01-13 06:14:51.77 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 | [778 01-13 06:14:46.66 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 | [580 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [786 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5] +peer0.org2.example.com | [78c 01-13 06:14:52.45 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.1.0,txid=039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2,syscc=true,proposal=0xc423b81360,canname=lscc:1.1.0 +peer0.org1.example.com | [7ab 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Received message COMPLETED from shim +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +orderer.example.com | [581 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org2.example.com | [78d 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer1.org1.example.com | [787 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [779 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +explorer | at emitOne (events.js:96:13) +peer0.org1.example.com | [7ac 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [78e 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [77a 01-13 06:14:46.66 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 +explorer | at Socket.emit (events.js:188:7) +peer0.org1.example.com | [7ad 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [78f 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer1.org1.example.com | [788 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5 channel id: businesschannel chaincode id: name:"exp02" +peer1.org2.example.com | [77b 01-13 06:14:46.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 [5] +explorer | at readableAddChunk (_stream_readable.js:176:18) +orderer.example.com | [582 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [790 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [039ffea0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [78a 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org2.example.com | [77c 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +peer0.org1.example.com | [7ae 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d, channelID:businesschannel +peer0.org2.example.com | [791 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [583 01-13 06:14:15.29 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 | [78b 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5 channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [792 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [91a 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [8d7 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [910 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229, channelID:businesschannel -peer1.org2.example.com | [974 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [8d8 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +explorer | -------------------- +peer1.org2.example.com | [77d 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +peer1.org1.example.com | [789 01-13 06:14:51.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 +peer0.org2.example.com | [793 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [039ffea0]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7af 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [91b 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [911 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [975 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [8d9 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [91c 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer1.org1.example.com | [78c 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5,syscc=true,proposal=0xc422bf9860,canname=escc:1.1.0 +peer0.org2.example.com | [794 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Move state message TRANSACTION +peer1.org2.example.com | [77e 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [912 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [8da 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [976 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [78d 01-13 06:14:51.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)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [7b0 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [795 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [77f 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +peer0.org2.example.com | [796 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7b1 01-13 06:14:27.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 orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org2.example.com | [91d 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [8db 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [913 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [977 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [8dc 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [91e 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer1.org1.example.com | [78f 01-13 06:14:51.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)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [780 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [797 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]sending state message TRANSACTION +peer1.org1.example.com | [78e 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | [798 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Received message TRANSACTION from shim +peer0.org1.example.com | [7b2 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [978 01-05 06:37:27.89 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 | [8dd 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [914 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -peer0.org2.example.com | [91f 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer1.org2.example.com | [781 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [799 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [039ffea0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [7b3 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [790 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [8de 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [979 01-05 06:37:27.89 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 | [915 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [920 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [8df 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [79a 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [039ffea0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer1.org2.example.com | [782 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer1.org2.example.com | [97a 01-05 06:37:27.89 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 | [916 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel chaincode id: name:"lscc" -peer1.org1.example.com | [8e0 01-05 06:37:28.20 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 | [921 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [922 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [923 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [924 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [925 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [7b4 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel chaincode id: name:"qscc" +peer0.org2.example.com | [79b 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [039ffea0]Sending GET_STATE +peer1.org1.example.com | [791 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org2.example.com | [783 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org1.example.com | [7b5 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +explorer | at getCurBlockNum (/blockchain-explorer/service/blockscanner.js:109:16) +peer1.org1.example.com | [792 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [79c 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Received message GET_STATE from shim orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +peer0.org1.example.com | [7b6 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [784 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +explorer | at Object.syncBlock (/blockchain-explorer/service/blockscanner.js:41:9) +peer0.org2.example.com | [79d 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer0.org1.example.com | [7b7 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d,syscc=true,proposal=0xc421e95540,canname=escc:1.1.0 +peer1.org2.example.com | [785 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [793 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [79e 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [039ffea0]Received GET_STATE, invoking get state from ledger +explorer | at Timeout._onTimeout (/blockchain-explorer/listener/blocklistener.js:50:22) +peer0.org1.example.com | [7b8 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer1.org1.example.com | [794 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [786 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +explorer | at ontimeout (timers.js:386:11) +peer0.org2.example.com | [79f 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7b9 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [795 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1493cb4]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [787 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:57194 orderer.example.com | R0L5Jr8878bLU6IcEA== +explorer | at tryOnTimeout (timers.js:250:5) +peer0.org1.example.com | [7ba 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [796 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Move state message TRANSACTION +peer0.org2.example.com | [7a0 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [039ffea0] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [788 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422d31c20 +explorer | at Timer.listOnTimeout (timers.js:214:5) orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [917 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org2.example.com | [926 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [97b 01-05 06:37:27.89 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 -orderer.example.com | [5e7 01-05 06:36:30.43 UTC] [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 -peer0.org1.example.com | [918 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [8e1 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [8e2 01-05 06:37:28.20 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 | [8e3 01-05 06:37:28.20 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 -orderer.example.com | [5e8 01-05 06:36:30.43 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 | [97c 01-05 06:37:27.89 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 | [927 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [919 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229,syscc=true,proposal=0xc422601e50,canname=escc:1.1.0 -peer1.org1.example.com | [8e4 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [5e9 01-05 06:36:30.43 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 | [97d 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [928 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [91a 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [8e5 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [5ea 01-05 06:36:30.43 UTC] [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.org1.example.com | [91b 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [97e 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [97f 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [980 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [981 01-05 06:37:27.89 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 | [982 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [929 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [8e6 01-05 06:37:28.20 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 | [91c 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [5eb 01-05 06:36:30.43 UTC] [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.org2.example.com | [983 01-05 06:37:27.89 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 | [8e7 01-05 06:37:28.20 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 | [92a 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [5ec 01-05 06:36:30.43 UTC] [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 | [92b 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [91d 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [8e8 01-05 06:37:28.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] -peer1.org2.example.com | [984 01-05 06:37:27.89 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 | [985 01-05 06:37:27.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [5ed 01-05 06:36:30.43 UTC] [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 | [5ee 01-05 06:36:30.43 UTC] [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 | [91e 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [8e9 01-05 06:37:28.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{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -orderer.example.com | [5ef 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [91f 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [92c 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [986 01-05 06:37:27.89 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 | txId= locPointer=offset=71, bytesLength=19401 -orderer.example.com | [5f0 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org1.example.com | [920 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [92d 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | ] -peer1.org2.example.com | [987 01-05 06:37:27.89 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 | [921 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Move state message TRANSACTION -peer1.org1.example.com | [8ea 01-05 06:37:28.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=60379, bytesLength=19401] for tx ID: [] to index -peer0.org2.example.com | [92e 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [5f1 01-05 06:36:30.43 UTC] [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.org2.example.com | [988 01-05 06:37:27.89 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 | [922 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [92f 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer1.org1.example.com | [8eb 01-05 06:37:28.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=60379, bytesLength=19401] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [989 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [5f2 01-05 06:36:30.43 UTC] [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 -peer0.org1.example.com | [923 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [930 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org1.example.com | [8ec 01-05 06:37:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81574], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org2.example.com | [931 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org2.example.com | [932 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [933 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [98a 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [98b 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [98c 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [5f3 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org2.example.com | [934 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [8ed 01-05 06:37:28.27 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 | [98d 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [924 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]sending state message TRANSACTION -orderer.example.com | [5f4 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [935 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [936 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [937 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [938 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [98e 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [5f5 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [925 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Received message TRANSACTION from shim -peer1.org1.example.com | [8ee 01-05 06:37:28.28 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 | [939 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [5f6 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [926 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [98f 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer1.org1.example.com | [8ef 01-05 06:37:28.28 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 | [93a 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [5f7 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer1.org2.example.com | [990 01-05 06:37:27.99 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [93b 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [5f8 01-05 06:36:30.43 UTC] [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.org1.example.com | [927 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cde09275]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [991 01-05 06:37:28.03 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [93c 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [5f9 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org2.example.com | [93d 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [928 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [8f0 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -orderer.example.com | [5fa 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [992 01-05 06:37:28.03 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 | [93e 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [929 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [8f1 01-05 06:37:28.29 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 | [993 01-05 06:37:28.03 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 | [994 01-05 06:37:28.03 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 | [995 01-05 06:37:28.03 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 | [996 01-05 06:37:28.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [997 01-05 06:37:28.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc427a8f1c0 env 0xc427a81e30 txn 0 -orderer.example.com | [5fb 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org1.example.com | [8f2 01-05 06:37:28.29 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 | [93f 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [940 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [941 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [942 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [92a 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [92b 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Move state message COMPLETED -peer0.org1.example.com | [92c 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [92d 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]send state message COMPLETED -peer0.org1.example.com | [92e 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Received message COMPLETED from shim -peer0.org1.example.com | [92f 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [930 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [998 01-05 06:37:28.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [999 01-05 06:37:28.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [5fc 01-05 06:36:30.43 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 | [943 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [931 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229, channelID:businesschannel -peer1.org1.example.com | [8f3 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[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 | [99a 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [5fd 01-05 06:36:30.43 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 | [944 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [932 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [8f4 01-05 06:37:28.30 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 | [99b 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -orderer.example.com | [5fe 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [933 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [945 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [5ff 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [99c 01-05 06:37:28.06 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 | [8f5 01-05 06:37:28.30 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 | [934 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [935 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -peer0.org1.example.com | [936 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37208) -peer0.org1.example.com | [937 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37210 -peer0.org1.example.com | [938 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225acc30 -peer0.org1.example.com | [939 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [93a 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [93b 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [93c 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [93d 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [93e 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202f30e0, header 0xc4225acc60 -peer0.org1.example.com | [93f 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [940 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a -peer0.org1.example.com | [941 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -peer0.org1.example.com | [942 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [943 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -peer0.org1.example.com | [944 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel -peer0.org1.example.com | [945 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [946 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a,syscc=true,proposal=0xc4202f30e0,canname=lscc:1.1.0 -peer1.org2.example.com | [99d 01-05 06:37:28.06 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 | [946 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [8f6 01-05 06:37:28.30 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 -orderer.example.com | [600 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 | [601 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [947 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [99e 01-05 06:37:28.06 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 | [947 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [8f7 01-05 06:37:28.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 -orderer.example.com | [602 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [603 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [604 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 | [605 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 | [606 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -peer0.org1.example.com | [948 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [99f 01-05 06:37:28.06 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 | [948 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [8f8 01-05 06:37:28.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 [7] -orderer.example.com | [607 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -peer0.org1.example.com | [949 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [94a 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [94b 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [949 01-05 06:37:28.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [8f9 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [9a0 01-05 06:37:28.06 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 | [9a1 01-05 06:37:28.06 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 | [608 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [8fa 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [8fb 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [94a 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [94c 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [9a2 01-05 06:37:28.06 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 | [9a3 01-05 06:37:28.06 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 | [609 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8fc 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [94b 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [94d 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [9a4 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [60a 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8fd 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [94c 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [60b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [9a5 01-05 06:37:28.06 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 | [94d 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [8fe 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [94e 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Move state message TRANSACTION -orderer.example.com | [60c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [9a6 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [94e 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [60d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [8ff 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [94f 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [94f 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [950 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [951 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [952 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [953 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [954 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [955 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [956 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [957 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [958 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [959 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [95a 01-05 06:37:28.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.org2.example.com | [95b 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [95c 01-05 06:37:28.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.org2.example.com | [95d 01-05 06:37:28.35 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 | [95e 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [60e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [9a7 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [900 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [950 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [95f 01-05 06:37:28.35 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 | [960 01-05 06:37:28.35 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 | [961 01-05 06:37:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -orderer.example.com | [60f 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [901 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [951 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]sending state message TRANSACTION -peer0.org1.example.com | [952 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Received message TRANSACTION from shim -peer0.org1.example.com | [953 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [962 01-05 06:37:28.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 [7] -orderer.example.com | [610 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [611 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [612 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [613 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [614 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [615 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [616 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [617 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [618 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [619 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [61a 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 | [61b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -peer1.org2.example.com | [9a8 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [9a9 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [9aa 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [9ab 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [9ac 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [9ad 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [9ae 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [9af 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [9b0 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [9b1 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [9b2 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [9b3 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [9b4 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [9b5 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [9b6 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [9b7 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [9b8 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [9b9 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [954 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b89a09fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [963 01-05 06:37:28.36 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{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -peer1.org1.example.com | [902 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [61c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [61d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [61e 01-05 06:36:30.44 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 | [61f 01-05 06:36:30.44 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 | [620 01-05 06:36:30.44 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 | [621 01-05 06:36:30.44 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 | [9ba 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | txId= locPointer=offset=71, bytesLength=19401 +peer1.org1.example.com | [797 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7bb 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [7a1 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [789 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [7a2 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [039ffea0]Got state. Sending RESPONSE +orderer.example.com | [584 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c890 gate 1515824055300147432 evaluation starts +peer0.org1.example.com | [7bc 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [798 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [78a 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [7a3 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [039ffea0]handleGetState serial send RESPONSE +peer0.org1.example.com | [7bd 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +explorer | errno: 1146, +orderer.example.com | [585 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [799 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]sending state message TRANSACTION +peer0.org2.example.com | [7a4 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Received message RESPONSE from shim +peer0.org1.example.com | [7be 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [78b 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +orderer.example.com | [586 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +explorer | sqlMessage: 'Table \'fabricexplorer.blocks\' doesn\'t exist', +peer1.org1.example.com | [79a 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Received message TRANSACTION from shim +peer0.org1.example.com | [7bf 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Move state message TRANSACTION +peer1.org2.example.com | [78c 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [7a5 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [039ffea0]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [587 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer1.org1.example.com | [79b 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | sqlState: '42S02', +peer1.org2.example.com | [78d 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [7c0 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [7a6 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [039ffea0]before send +orderer.example.com | [588 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 principal evaluation fails +peer1.org1.example.com | [79c 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1493cb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | index: 0, +peer1.org2.example.com | [78e 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422ec83c0, header 0xc422d31f80 +peer0.org2.example.com | [7a7 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [039ffea0]after send +peer0.org1.example.com | [7c1 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [589 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c890 gate 1515824055300147432 evaluation fails +peer1.org1.example.com | [79d 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +explorer | sql: 'select max(blocknum) as blocknum from blocks where channelname=\'businesschannel\'' } +peer1.org2.example.com | [78f 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [7c2 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]sending state message TRANSACTION +orderer.example.com | [58a 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [7a9 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [039ffea0]GetState received payload RESPONSE +peer1.org1.example.com | [79e 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [790 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252 +explorer | [2018-01-13 06:15:06.522] [ERROR] metricservice - { Error: ER_NO_SUCH_TABLE: Table 'fabricexplorer.chaincodes' doesn't exist +peer0.org1.example.com | [7c3 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Received message TRANSACTION from shim +orderer.example.com | [58b 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [79f 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [7a8 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [039ffea0]Received RESPONSE, communicated (state:ready) +explorer | at Query.Sequence._packetToError (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Sequence.js:52:14) +peer1.org2.example.com | [791 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252] +orderer.example.com | [58c 01-13 06:14:15.30 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 ] +peer0.org1.example.com | [7c4 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [7a0 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]Move state message COMPLETED +peer0.org2.example.com | [7aa 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [7c5 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c13d44be]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +explorer | at Query.ErrorPacket (/blockchain-explorer/node_modules/mysql/lib/protocol/sequences/Query.js:77:18) +orderer.example.com | [58d 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +peer1.org2.example.com | [792 01-13 06:14:51.94 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 | [7ab 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Move state message COMPLETED +peer0.org1.example.com | [7c6 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [7a1 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1493cb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [58e 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer1.org2.example.com | [793 01-13 06:14:51.94 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 = [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252] +explorer | at Protocol._parsePacket (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:279:23) +peer0.org1.example.com | [7c7 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [7ac 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [039ffea0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [7a2 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1493cb4]send state message COMPLETED +peer1.org2.example.com | [794 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252 channel id: businesschannel +explorer | at Parser.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Parser.js:76:12) +orderer.example.com | [58f 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer0.org2.example.com | [7ad 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]send state message COMPLETED +peer1.org1.example.com | [7a3 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1493cb4]Received message COMPLETED from shim +peer1.org2.example.com | [795 01-13 06:14:51.94 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.1.0,txid=0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252,syscc=true,proposal=0xc422ec83c0,canname=lscc:1.1.0 +peer0.org1.example.com | [7c8 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Transaction completed. Sending COMPLETED +explorer | at Protocol.write (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:39:16) +orderer.example.com | [590 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [7ae 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Received message COMPLETED from shim +peer1.org1.example.com | [7a4 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7c9 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Move state message COMPLETED +orderer.example.com | [591 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +explorer | at Socket. (/blockchain-explorer/node_modules/mysql/lib/Connection.js:103:28) +peer0.org2.example.com | [7af 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [7a5 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [796 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [7ca 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +explorer | at emitOne (events.js:96:13) +peer0.org2.example.com | [7b0 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [797 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [7a6 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5, channelID:businesschannel +orderer.example.com | [592 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c8a8 gate 1515824055303480465 evaluation starts +peer0.org1.example.com | [7cb 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]send state message COMPLETED +peer0.org2.example.com | [7b1 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2, channelID:businesschannel +peer1.org2.example.com | [798 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +explorer | at Socket.emit (events.js:188:7) +peer1.org1.example.com | [7a7 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [7cc 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Received message COMPLETED from shim +orderer.example.com | [593 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [7b2 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [7a8 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [799 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e8597d9]Inside sendExecuteMessage. Message TRANSACTION +explorer | at readableAddChunk (_stream_readable.js:176:18) +peer0.org2.example.com | [7b3 01-13 06:14:52.45 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 | [7cd 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [7a9 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +explorer | at Socket.Readable.push (_stream_readable.js:134:10) +orderer.example.com | [594 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [79a 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [7b4 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [7ce 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d]HandleMessage- COMPLETED. Notify +explorer | -------------------- +orderer.example.com | [595 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer1.org2.example.com | [79b 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [7b5 01-13 06:14:52.45 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=039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2,syscc=false,proposal=0xc423b81360,canname=exp02:1.0 +explorer | at Protocol._enqueue (/blockchain-explorer/node_modules/mysql/lib/protocol/Protocol.js:145:48) +peer0.org1.example.com | [7cf 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d, channelID:businesschannel +orderer.example.com | [596 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | [7aa 01-13 06:14:51.77 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 [e1493cb4a24620a6b505b9a882ecf40c23a542e1516dd5b59f1f1f5c84e65da5] +peer1.org2.example.com | [79c 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e8597d9]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [597 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 principal matched by identity 0 +peer1.org1.example.com | [7ab 01-13 06:14:51.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:38852) +peer0.org2.example.com | [7b6 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org1.example.com | [7d0 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +explorer | at Connection.query (/blockchain-explorer/node_modules/mysql/lib/Connection.js:208:25) +orderer.example.com | [598 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 34 41 16 ad 3d 61 af af 8b 39 aa 83 f9 91 b9 |I4A..=a...9.....| +peer1.org1.example.com | [7ac 01-13 06:14:51.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 | [79d 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Move state message TRANSACTION +peer0.org1.example.com | [7d1 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 00000010 a2 b3 48 1f 2c da 32 67 38 3a ae 3e 57 71 7f ee |..H.,.2g8:.>Wq..| +explorer | at /blockchain-explorer/db/mysqlservice.js:523:20 +peer0.org2.example.com | [7b7 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [7ad 01-13 06:14:51.77 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 | [7d2 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [599 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f ae ef c3 d2 a1 3f cb 29 2e 08 be |0D. ......?.)...| +peer1.org1.example.com | [7ae 01-13 06:14:51.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 [5] with [1] transactions +peer1.org2.example.com | [79e 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [7b8 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +explorer | at Object.getRowsBySQlCase (/blockchain-explorer/db/mysqlservice.js:519:12) +peer1.org1.example.com | [7af 01-13 06:14:51.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 [5] +orderer.example.com | 00000010 3e 1c bb c1 5d a5 e1 b1 e5 39 49 35 9b 40 dd 1a |>...]....9I5.@..| +peer0.org2.example.com | [7b9 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [039ffea0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [7b0 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | 00000020 30 c0 99 99 02 20 62 65 47 1b 84 62 05 c2 5a 52 |0.... beG..b..ZR| +peer0.org1.example.com | [7d3 01-13 06:14:27.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 [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +peer1.org2.example.com | [79f 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +explorer | at getChaincodeCount (/blockchain-explorer/service/metricservice.js:28:16) +peer0.org2.example.com | [7ba 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [7b1 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +orderer.example.com | 00000030 24 2f 22 59 7b 64 99 ce c8 99 b5 40 a3 87 bd 8d |$/"Y{d.....@....| +explorer | at getStatusGenerate (/blockchain-explorer/service/metricservice.js:73:31) +peer0.org1.example.com | [7d4 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53678) +peer1.org2.example.com | [7a0 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]sending state message TRANSACTION +peer0.org2.example.com | [7bb 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 00000040 cd eb 78 43 15 db |..xC..| +peer1.org1.example.com | [7b2 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +explorer | at next (native) +peer0.org1.example.com | [7d5 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53680 +peer1.org2.example.com | [7a1 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Received message TRANSACTION from shim +orderer.example.com | [59a 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [7b3 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [7bc 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [039ffea0]sendExecuteMsg trigger event TRANSACTION +explorer | at onFulfilled (/blockchain-explorer/node_modules/co/index.js:65:19) +peer0.org1.example.com | [7d6 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d18c30 +orderer.example.com | [59b 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c8a8 gate 1515824055303480465 evaluation succeeds +peer1.org1.example.com | [7b4 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [7bd 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Move state message TRANSACTION +peer1.org2.example.com | [7a2 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e8597d9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +explorer | at /blockchain-explorer/node_modules/co/index.js:54:5 +orderer.example.com | [59c 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [7b5 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [7d7 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [7a3 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e8597d9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [7be 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +explorer | at co (/blockchain-explorer/node_modules/co/index.js:50:10) +orderer.example.com | [59d 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [7b6 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [7a4 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0e8597d9]Sending GET_STATE +peer0.org1.example.com | [7d8 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +explorer | code: 'ER_NO_SUCH_TABLE', +peer0.org2.example.com | [7bf 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [59e 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +peer1.org1.example.com | [7b7 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [7a5 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Received message GET_STATE from shim +explorer | errno: 1146, +peer1.org1.example.com | [7b8 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [59f 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +peer0.org2.example.com | [7c0 01-13 06:14:52.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]sending state message TRANSACTION +peer0.org1.example.com | [7d9 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org1.example.com | [7b9 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [7a6 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [5a0 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +explorer | sqlMessage: 'Table \'fabricexplorer.chaincodes\' doesn\'t exist', +peer1.org1.example.com | [7ba 01-13 06:14:51.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [7c1 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Received message GET_STATE from shim +peer1.org2.example.com | [7a7 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0e8597d9]Received GET_STATE, invoking get state from ledger +orderer.example.com | [5a1 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +peer1.org1.example.com | [7bb 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +explorer | sqlState: '42S02', +peer0.org1.example.com | [7da 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [7a8 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [5a2 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [7bc 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42318a740 env 0xc422f9c7e0 txn 0 +peer0.org2.example.com | [7c2 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [5a3 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [7db 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [7bd 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422f9c7e0 +peer1.org2.example.com | [7a9 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e8597d9] getting state for chaincode lscc, key exp02, channel businesschannel +explorer | index: 0, +orderer.example.com | [5a4 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [7c3 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [039ffea0]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [7be 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +peer0.org1.example.com | [7dc 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c8b590, header 0xc421d18f90 +peer1.org2.example.com | [7aa 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +explorer | sql: 'select count(1) c from chaincodes where channelname=\'businesschannel\' ' } +orderer.example.com | [5a5 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +peer1.org1.example.com | [7bf 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [7c4 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [7ab 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e8597d9]Got state. Sending RESPONSE +peer0.org1.example.com | [7dd 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer1.org1.example.com | [7c0 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [7c5 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [039ffea0] getting state for chaincode exp02, key a, channel businesschannel +orderer.example.com | [5a6 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [7de 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded +peer1.org1.example.com | [7c1 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer0.org2.example.com | [7c6 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [7ac 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0e8597d9]handleGetState serial send RESPONSE +orderer.example.com | [5a7 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [7df 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +peer0.org2.example.com | [7c7 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [039ffea0]Got state. Sending RESPONSE +peer1.org1.example.com | [7c2 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [5a8 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +peer1.org2.example.com | [7ad 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Received message RESPONSE from shim +peer0.org2.example.com | [7c8 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [039ffea0]handleGetState serial send RESPONSE +peer0.org1.example.com | [7e0 01-13 06:14:28.04 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 | [7c3 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [5a9 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [7c9 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Received message COMPLETED from shim +peer1.org2.example.com | [7ae 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e8597d9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [7e1 01-13 06:14:28.04 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 = [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +peer0.org2.example.com | [7ca 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [7c4 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422dfe800, header channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +orderer.example.com | [5aa 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [7af 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0e8597d9]before send +peer0.org2.example.com | [7cb 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7e2 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel +peer1.org1.example.com | [7c5 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [7cc 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2, channelID:businesschannel +peer1.org2.example.com | [7b0 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0e8597d9]after send +peer0.org1.example.com | [7e3 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [7cd 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [5ab 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +peer1.org1.example.com | [7c6 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [7e4 01-13 06:14:28.04 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.1.0,txid=8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded,syscc=true,proposal=0xc421c8b590,canname=qscc:1.1.0 +peer0.org2.example.com | [7ce 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [7b1 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0e8597d9]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [7c7 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [5ac 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [7cf 01-13 06:14:52.46 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 | [7e5 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org2.example.com | [7b2 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0e8597d9]GetState received payload RESPONSE +peer0.org2.example.com | [7d0 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2] +peer1.org1.example.com | [7c8 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [7e6 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [7b3 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [7d1 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [5ad 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [7d2 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2 channel id: businesschannel chaincode id: name:"exp02" +peer1.org2.example.com | [7b4 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Move state message COMPLETED +peer1.org1.example.com | [7c9 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | [5ae 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [7d3 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org1.example.com | [7e7 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org2.example.com | [7b5 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e8597d9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [7d4 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2 channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | [7ca 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer0.org1.example.com | [7e8 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [5af 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +peer0.org2.example.com | [7d5 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2,syscc=true,proposal=0xc423b81360,canname=escc:1.1.0 +peer1.org2.example.com | [7b6 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]send state message COMPLETED +peer1.org1.example.com | [7cb 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [7e9 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [5b0 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +peer0.org2.example.com | [7d6 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org2.example.com | [7b7 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Received message COMPLETED from shim +peer1.org1.example.com | [7cc 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422f9c7e0 envbytes 0xc422b92400 +orderer.example.com | [5b1 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [7d7 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7ea 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [7d8 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [7b8 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [5b2 01-13 06:14:15.31 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 +peer1.org1.example.com | [7cd 01-13 06:14:54.25 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 = [f29117e3-eada-4448-91ac-8db6835e5d7b] +peer0.org2.example.com | [7d9 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [039ffea0]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [7eb 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [7b9 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252]HandleMessage- COMPLETED. Notify +orderer.example.com | [5b3 01-13 06:14:15.31 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 +peer0.org2.example.com | [7da 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [7ce 01-13 06:14:54.25 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 | [7ec 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Move state message TRANSACTION +peer0.org2.example.com | [7db 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [5b4 01-13 06:14:15.31 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 | [7ba 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252, channelID:businesschannel +peer1.org1.example.com | [7cf 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [f29117e3-eada-4448-91ac-8db6835e5d7b] +peer0.org2.example.com | [7dc 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [039ffea0]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [7bb 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [5b5 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [7d0 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422b92400 +peer0.org2.example.com | [7dd 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Move state message TRANSACTION +peer0.org1.example.com | [7ed 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [7bc 01-13 06:14:51.94 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 +orderer.example.com | [5b6 01-13 06:14:15.31 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 +peer1.org2.example.com | [7bd 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252 channel id: businesschannel version: 1.0 +peer0.org2.example.com | [7de 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7ee 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [7d1 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [5b7 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [7ef 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]sending state message TRANSACTION +peer0.org2.example.com | [7df 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [7be 01-13 06:14:51.94 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=0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252,syscc=false,proposal=0xc422ec83c0,canname=exp02:1.0 +peer0.org1.example.com | [7f0 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Received message TRANSACTION from shim +orderer.example.com | [5b8 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org2.example.com | [7e0 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]sending state message TRANSACTION +peer1.org1.example.com | [7d2 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer0.org2.example.com | [7e1 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Received message TRANSACTION from shim +peer1.org2.example.com | [7bf 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +orderer.example.com | [5b9 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [7d3 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=63bf7fb6-aba7-4fdb-8dc1-32afb24cc471,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [7f1 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [7e2 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [039ffea0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [5ba 01-13 06:14:15.31 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] +peer1.org2.example.com | [7c0 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7f2 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a99fdce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [7d4 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 chaindID businesschannel +peer0.org1.example.com | [7f3 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org2.example.com | [7e3 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [039ffea0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [7c1 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +orderer.example.com | [5bb 01-13 06:14:15.31 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 +peer1.org1.example.com | [7d5 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [7e4 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [7f4 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [7c2 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e8597d9]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [7f5 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Move state message COMPLETED +peer1.org1.example.com | [7d6 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7f6 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [5bc 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org2.example.com | [7e5 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [7f7 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]send state message COMPLETED +peer1.org2.example.com | [7c3 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [5bd 01-13 06:14:15.31 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 [] +peer1.org1.example.com | [7d7 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [7f8 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Received message COMPLETED from shim +peer0.org2.example.com | [7e6 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [7c4 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [7f9 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [7e7 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]Move state message COMPLETED +peer1.org1.example.com | [7d8 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [63bf7fb6]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [5be 01-13 06:14:15.31 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 == +peer0.org1.example.com | [7fa 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [7c5 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e8597d9]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [7e8 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [039ffea0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [7d9 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [7fb 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded, channelID:businesschannel +orderer.example.com | [5bf 01-13 06:14:15.31 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 0xc42011cc40 gate 1515824055314129438 evaluation starts +peer1.org2.example.com | [7c6 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Move state message TRANSACTION +peer0.org1.example.com | [7fc 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [7e9 01-13 06:14:52.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [039ffea0]send state message COMPLETED +orderer.example.com | [5c0 01-13 06:14:15.31 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 0xc42011cc40 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [7da 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [63bf7fb6]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7fd 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [7c7 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7fe 01-13 06:14:28.04 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 | [7ea 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [039ffea0]Received message COMPLETED from shim +peer1.org1.example.com | [7db 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63bf7fb6]Move state message TRANSACTION +peer1.org2.example.com | [7c8 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [5c1 01-13 06:14:15.31 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 0xc42011cc40 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [7ff 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +peer0.org2.example.com | [7eb 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [7dc 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63bf7fb6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [5c2 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +peer0.org1.example.com | [800 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [7c9 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]sending state message TRANSACTION +peer0.org2.example.com | [7ec 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [801 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel chaincode id: name:"qscc" +peer1.org2.example.com | [7ca 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Received message GET_STATE from shim +orderer.example.com | [5c3 01-13 06:14:15.31 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 0xc42011cc40 principal matched by identity 0 +peer1.org1.example.com | [7dd 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [7ed 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2, channelID:businesschannel +peer0.org1.example.com | [802 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [5c4 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e5 7b 2f 8b 7e 3e 73 76 bf ba 28 ee ae 4d ae f5 |.{/.~>sv..(..M..| +peer1.org1.example.com | [7de 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63bf7fb6]sending state message TRANSACTION +peer1.org2.example.com | [7cb 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [7ee 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [803 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel version: 1.1.0 +orderer.example.com | 00000010 de 7a 8d 26 cd 82 48 cc 62 0c 52 56 d0 d1 9f 36 |.z.&..H.b.RV...6| +peer0.org1.example.com | [804 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded,syscc=true,proposal=0xc421c8b590,canname=escc:1.1.0 +peer1.org2.example.com | [7cc 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0e8597d9]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [7ef 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [7df 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63bf7fb6]Received message TRANSACTION from shim +orderer.example.com | [5c5 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f 8a a6 39 ab 13 67 10 18 5e f2 30 |0D. ...9..g..^.0| +peer0.org1.example.com | [805 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [806 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [807 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [808 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [7f0 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [7cd 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000010 de db b5 c2 60 7b 1d 2f b5 bc 6c aa cc 9c 69 1d |....`{./..l...i.| +peer1.org1.example.com | [7e0 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63bf7fb6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [7ce 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e8597d9] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [809 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [7f1 01-13 06:14:52.47 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 [039ffea029b7b058e338d99e84be5c3fc78ea6b03b45acf76b8c0586bf7525c2] +orderer.example.com | 00000020 38 30 c9 a4 02 20 04 c1 b5 8b 6f c7 d1 f6 c3 42 |80... ....o....B| +peer1.org2.example.com | [7cf 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [7e1 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [63bf7fb6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [7f2 01-13 06:14:52.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:59068) +peer0.org1.example.com | [80a 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [7d0 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0e8597d9]Got state. Sending RESPONSE +orderer.example.com | 00000030 88 aa 66 9c c6 ca f4 5b cf 83 b1 72 12 9f fd 16 |..f....[...r....| +peer1.org1.example.com | [7e2 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [7f3 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [7d1 01-13 06:14:51.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0e8597d9]handleGetState serial send RESPONSE +peer0.org1.example.com | [80b 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 00000040 d4 03 01 7c b2 55 |...|.U| +peer1.org2.example.com | [7d2 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Received message COMPLETED from shim +peer1.org1.example.com | [7e3 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [7f4 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [5c6 01-13 06:14:15.31 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 0xc42011cc40 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [7d3 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [80c 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Move state message TRANSACTION +peer0.org2.example.com | [7f5 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423e54ba0 env 0xc423e29650 txn 0 +orderer.example.com | [5c7 01-13 06:14:15.31 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 0xc42011cc40 gate 1515824055314129438 evaluation succeeds +peer1.org2.example.com | [7d4 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [80d 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [7e4 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [7d5 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252, channelID:businesschannel +peer1.org2.example.com | [7d6 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [80e 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [5c8 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [7f6 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423e29650 +peer1.org1.example.com | [7e5 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63bf7fb6]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [7d7 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [5c9 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [7f7 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +peer1.org2.example.com | [7d8 01-13 06:14:51.95 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 | [80f 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]sending state message TRANSACTION +peer1.org1.example.com | [7e6 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63bf7fb6]Move state message COMPLETED +peer1.org2.example.com | [7d9 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252] +peer0.org2.example.com | [7f8 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [5ca 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [7da 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [810 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Received message TRANSACTION from shim +peer0.org2.example.com | [7f9 01-13 06:14:54.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [7db 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [811 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [7fa 01-13 06:14:54.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer1.org2.example.com | [7dc 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +orderer.example.com | [5cb 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [7e7 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63bf7fb6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [812 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a99fdce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [7dd 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252 channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [7fb 01-13 06:14:54.20 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [5cc 01-13 06:14:15.31 UTC] [github.com/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 | [7de 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252,syscc=true,proposal=0xc422ec83c0,canname=escc:1.1.0 +peer0.org1.example.com | [813 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [7e8 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63bf7fb6]send state message COMPLETED +peer0.org2.example.com | [7fc 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [7df 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [814 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [7fd 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423e64000, header channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +orderer.example.com | [5cd 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [7e0 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [7e9 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [63bf7fb6]Received message COMPLETED from shim +peer0.org2.example.com | [7fe 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [5ce 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [7e1 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [815 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [7ea 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63bf7fb6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [7ff 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [5cf 01-13 06:14:15.31 UTC] [github.com/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 | [7e2 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e8597d9]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [7eb 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [63bf7fb6-aba7-4fdb-8dc1-32afb24cc471]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [816 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Move state message COMPLETED +peer0.org2.example.com | [800 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [7e3 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [7ec 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:63bf7fb6-aba7-4fdb-8dc1-32afb24cc471, channelID:businesschannel +orderer.example.com | [5d0 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [801 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [817 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [7ed 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [7e4 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [5d1 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [818 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]send state message COMPLETED +peer0.org2.example.com | [802 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer1.org1.example.com | [7ee 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +orderer.example.com | [5d2 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [819 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Received message COMPLETED from shim +peer0.org2.example.com | [803 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [5d3 01-13 06:14:15.31 UTC] [github.com/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 | [7e5 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e8597d9]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [7ef 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422b92400 +orderer.example.com | [5d4 01-13 06:14:15.31 UTC] [github.com/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 +peer0.org2.example.com | [804 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423e29650 envbytes 0xc423c39000 +peer1.org2.example.com | [7e6 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Move state message TRANSACTION +peer1.org1.example.com | [7f0 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422f9c7e0 envbytes 0xc422b92400 +peer0.org2.example.com | [805 01-13 06:14:54.23 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 = [6cfcb51e-19d6-4def-bdbe-ca6d9cf038db] +peer0.org1.example.com | [81a 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [5d5 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [806 01-13 06:14:54.23 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 | [7f1 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42318a740 env 0xc422f9c7e0 txn 0 +peer0.org2.example.com | [807 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6cfcb51e-19d6-4def-bdbe-ca6d9cf038db] +peer1.org1.example.com | [7f2 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [808 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423c39000 +orderer.example.com | [5d6 01-13 06:14:15.31 UTC] [github.com/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 +peer1.org2.example.com | [7e7 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [81b 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [809 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [7f3 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [7e8 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [5d7 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [81c 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded, channelID:businesschannel +peer0.org2.example.com | [80a 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer1.org1.example.com | [7f4 01-13 06:14:54.27 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 | [7e9 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]sending state message TRANSACTION +orderer.example.com | [5d8 01-13 06:14:15.31 UTC] [github.com/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 | [81d 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [80b 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=95959c07-34f6-41b2-95e8-ce7549bff48e,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org1.example.com | [7f5 01-13 06:14:54.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.org2.example.com | [7ea 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Received message TRANSACTION from shim +orderer.example.com | [5d9 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [7f6 01-13 06:14:54.27 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 | [81e 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [5da 01-13 06:14:15.31 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" +peer0.org2.example.com | [80c 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 chaindID businesschannel +peer0.org1.example.com | [81f 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [5db 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [820 01-13 06:14:28.05 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 [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +peer1.org1.example.com | [7f7 01-13 06:14:54.28 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 | [7eb 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e8597d9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [80d 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [821 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53680) +orderer.example.com | [5dc 01-13 06:14:15.32 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" +peer1.org1.example.com | [7f8 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | [5dd 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [7ec 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e8597d9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [80e 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [7f9 01-13 06:14:54.28 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 | [822 01-13 06:14:29.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +orderer.example.com | [5de 01-13 06:14:15.32 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 +peer1.org2.example.com | [7ed 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [7fa 01-13 06:14:54.28 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 | [823 01-13 06:14:29.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | [5df 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [80f 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +orderer.example.com | [5e0 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [7ee 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [824 01-13 06:14:29.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +orderer.example.com | [5e1 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [7fb 01-13 06:14:54.28 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 | [810 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [95959c07]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [7ef 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Transaction completed. Sending COMPLETED +orderer.example.com | [5e2 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [825 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53682 +peer1.org1.example.com | [7fc 01-13 06:14:54.28 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 | [811 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [7f0 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]Move state message COMPLETED +orderer.example.com | [5e3 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [826 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4219b75c0 +orderer.example.com | [5e4 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [7fd 01-13 06:14:54.28 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 | [812 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [95959c07]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [5e5 01-13 06:14:15.32 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 | [7f1 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e8597d9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [7fe 01-13 06:14:54.28 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 | [827 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [5e6 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [813 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95959c07]Move state message TRANSACTION +peer1.org1.example.com | [7ff 01-13 06:14:54.28 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 [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] marked as valid by state validator +orderer.example.com | [5e7 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [828 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [814 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [95959c07]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [7f2 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e8597d9]send state message COMPLETED +orderer.example.com | [5e8 01-13 06:14:15.32 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 +peer1.org1.example.com | [800 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [5e9 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [815 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [829 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [5ea 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [816 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95959c07]sending state message TRANSACTION +peer1.org2.example.com | [7f3 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e8597d9]Received message COMPLETED from shim +peer0.org1.example.com | [82a 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [801 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [5eb 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [817 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95959c07]Received message TRANSACTION from shim +peer1.org2.example.com | [7f4 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [82b 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [5ec 01-13 06:14:15.32 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 +peer1.org1.example.com | [802 01-13 06:14:54.29 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 | [7f5 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252]HandleMessage- COMPLETED. Notify +orderer.example.com | [5ed 01-13 06:14:15.32 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 +peer1.org1.example.com | [803 01-13 06:14:54.29 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 | [7f6 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252, channelID:businesschannel +peer0.org1.example.com | [82c 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421938a50, header 0xc4219b7c50 +peer0.org2.example.com | [818 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95959c07]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [82d 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [5ee 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [804 01-13 06:14:54.29 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 | [7f7 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [819 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [95959c07]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [5ef 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [82e 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 +peer1.org1.example.com | [805 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +peer0.org2.example.com | [81a 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [7f8 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [5f0 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [82f 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +peer0.org2.example.com | [81b 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 +peer1.org2.example.com | [7f9 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [830 01-13 06:14:29.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 +orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [81c 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | ] +peer0.org2.example.com | [81d 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95959c07]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [7fa 01-13 06:14:51.95 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 [0e8597d9f7b079f5914348ce70b689f6f12362ce0cc69bed72d855a9c0851252] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [831 01-13 06:14:29.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 = [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +peer0.org2.example.com | [81e 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95959c07]Move state message COMPLETED +peer1.org2.example.com | [7fb 01-13 06:14:51.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:57194) +peer1.org1.example.com | [806 01-13 06:14:54.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=55592, bytesLength=2919] for tx ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to index +peer0.org2.example.com | [81f 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95959c07]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [832 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel +peer1.org2.example.com | [7fc 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:57196 +peer0.org2.example.com | [820 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95959c07]send state message COMPLETED +peer1.org1.example.com | [807 01-13 06:14:54.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=55592, bytesLength=2919] for tx number:[0] ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to blockNumTranNum index +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [833 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [7fd 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422ed4bd0 +peer1.org1.example.com | [808 01-13 06:14:54.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=[60306], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org2.example.com | [821 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95959c07]Received message COMPLETED from shim +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [822 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [95959c07]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [823 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [95959c07-34f6-41b2-95e8-ce7549bff48e]HandleMessage- COMPLETED. Notify +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [809 01-13 06:14:54.31 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +peer0.org1.example.com | [834 01-13 06:14:29.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=qscc,version=1.1.0,txid=7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147,syscc=true,proposal=0xc421938a50,canname=qscc:1.1.0 +peer0.org2.example.com | [824 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:95959c07-34f6-41b2-95e8-ce7549bff48e, channelID:businesschannel +peer1.org2.example.com | [7fe 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [80a 01-13 06:14:54.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +peer0.org2.example.com | [825 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [7ff 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [835 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org1.example.com | [80b 01-13 06:14:54.32 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 | [800 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer0.org2.example.com | [826 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer1.org1.example.com | [80c 01-13 06:14:54.32 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 | [836 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [801 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [827 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423c39000 +peer1.org1.example.com | [80d 01-13 06:14:54.32 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 | [802 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [837 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer0.org2.example.com | [828 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423e29650 envbytes 0xc423c39000 +peer1.org1.example.com | [80e 01-13 06:14:54.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 +peer1.org2.example.com | [803 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422ec89b0, header 0xc422ed4f30 +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer0.org2.example.com | [829 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423e54ba0 env 0xc423e29650 txn 0 +peer1.org1.example.com | [80f 01-13 06:14:54.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)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [838 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [804 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org2.example.com | [82a 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [839 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [810 01-13 06:14:54.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)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org2.example.com | [82b 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [82c 01-13 06:14:54.24 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 | [805 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 +peer0.org1.example.com | [83a 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [5f1 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [806 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer1.org1.example.com | [811 01-13 06:14:54.33 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 | [82d 01-13 06:14:54.24 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 | [83b 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [807 01-13 06:14:52.08 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 | [812 01-13 06:14:54.33 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 | [82e 01-13 06:14:54.24 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 | [808 01-13 06:14:52.08 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 = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [83c 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Move state message TRANSACTION +peer0.org2.example.com | [82f 01-13 06:14:54.24 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 | [809 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 channel id: businesschannel +peer1.org1.example.com | [813 01-13 06:14:54.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 [6] with [1] transactions +peer0.org2.example.com | [830 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [83d 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [831 01-13 06:14:54.28 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 | [814 01-13 06:14:54.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 [6] +peer0.org1.example.com | [83e 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [80a 01-13 06:14:52.08 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.1.0,txid=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13,syscc=true,proposal=0xc422ec89b0,canname=lscc:1.1.0 +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer1.org1.example.com | [815 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [83f 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]sending state message TRANSACTION +peer0.org2.example.com | [832 01-13 06:14:54.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} +peer1.org2.example.com | [80b 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [816 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 +peer0.org2.example.com | [833 01-13 06:14:54.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 | [80c 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [817 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [840 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Received message TRANSACTION from shim +peer0.org2.example.com | [834 01-13 06:14:54.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 | [80d 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [818 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [841 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [835 01-13 06:14:54.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 +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer1.org2.example.com | [80e 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66980797]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [819 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [836 01-13 06:14:54.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} +peer0.org1.example.com | [842 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7ec0b2bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [837 01-13 06:14:54.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 [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] marked as valid by state validator +peer1.org1.example.com | [81a 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [843 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer1.org2.example.com | [80f 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer0.org2.example.com | [838 01-13 06:14:54.34 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 | [844 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [81b 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer1.org2.example.com | [810 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [845 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Move state message COMPLETED +peer1.org1.example.com | [81c 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [839 01-13 06:14:54.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 | [811 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66980797]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org1.example.com | [846 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [81d 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [83a 01-13 06:14:54.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 | [812 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Move state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [847 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]send state message COMPLETED +peer1.org1.example.com | [81e 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [813 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [83b 01-13 06:14:54.34 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 | [848 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Received message COMPLETED from shim +orderer.example.com | [5f2 01-13 06:14:15.32 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 | [814 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [83c 01-13 06:14:54.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.org1.example.com | [81f 01-13 06:14:54.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [5f3 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [849 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [820 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [83d 01-13 06:14:54.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{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +orderer.example.com | [5f4 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [815 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]sending state message TRANSACTION +peer0.org1.example.com | [84a 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [821 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 +orderer.example.com | [5f5 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [84b 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147, channelID:businesschannel +peer1.org2.example.com | [816 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Received message TRANSACTION from shim peer0.org2.example.com | ] -orderer.example.com | [622 01-05 06:36:30.44 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 | [9bb 01-05 06:37:28.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [623 01-05 06:36:30.44 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 | [624 01-05 06:36:30.44 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 | [625 01-05 06:36:30.44 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 | [626 01-05 06:36:30.44 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 | [627 01-05 06:36:30.44 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 | [955 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b89a09fd]Sending GET_STATE -peer1.org2.example.com | [9bc 01-05 06:37:28.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [9bd 01-05 06:37:28.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [628 01-05 06:36:30.44 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 | [964 01-05 06:37:28.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=60379, bytesLength=19401] for tx ID: [] to index -peer0.org2.example.com | [965 01-05 06:37:28.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=60379, bytesLength=19401] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [956 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Received message GET_STATE from shim -orderer.example.com | [629 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer1.org2.example.com | [9be 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [9bf 01-05 06:37:28.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [966 01-05 06:37:28.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org1.example.com | [957 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [958 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b89a09fd]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [959 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [95a 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b89a09fd] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [95b 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [95c 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b89a09fd]Got state. Sending RESPONSE -peer0.org1.example.com | [95d 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b89a09fd]handleGetState serial send RESPONSE -peer0.org1.example.com | [95e 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Received message RESPONSE from shim -peer0.org1.example.com | [95f 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [9c0 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [62a 01-05 06:36:30.44 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 | [967 01-05 06:37:28.36 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 | [960 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b89a09fd]before send -peer0.org2.example.com | [968 01-05 06:37:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -orderer.example.com | [62b 01-05 06:36:30.44 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 | [961 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b89a09fd]after send -orderer.example.com | [62c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer1.org2.example.com | [9c1 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [969 01-05 06:37:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -orderer.example.com | [62d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org2.example.com | [9c2 01-05 06:37:28.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [962 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b89a09fd]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [96a 01-05 06:37:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -orderer.example.com | [62e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [9c3 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [963 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b89a09fd]GetState received payload RESPONSE -peer0.org1.example.com | [964 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [965 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Move state message COMPLETED -peer0.org2.example.com | [96b 01-05 06:37:28.36 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 | [9c4 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [9c5 01-05 06:37:28.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [9c6 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [62f 01-05 06:36:30.44 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 | [630 01-05 06:36:30.44 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 | [631 01-05 06:36:30.44 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 | [632 01-05 06:36:30.44 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 | [633 01-05 06:36:30.44 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 | [634 01-05 06:36:30.44 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.org2.example.com | [96c 01-05 06:37:28.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 | [966 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [9c7 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [635 01-05 06:36:30.44 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.org2.example.com | [96d 01-05 06:37:28.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 | [967 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]send state message COMPLETED -orderer.example.com | [636 01-05 06:36:30.44 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.org2.example.com | [96e 01-05 06:37:28.36 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 | [9c8 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer0.org1.example.com | [968 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Received message COMPLETED from shim -orderer.example.com | [637 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [96f 01-05 06:37:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -orderer.example.com | [638 01-05 06:36:30.44 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 | [969 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [9c9 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -orderer.example.com | [639 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [970 01-05 06:37:28.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 [7] with [1] transactions -peer0.org1.example.com | [96a 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [9ca 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [63a 01-05 06:36:30.44 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 | [971 01-05 06:37:28.36 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 | [9cb 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [9cc 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [96b 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a, channelID:businesschannel -peer0.org1.example.com | [96c 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [96d 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [96e 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [96f 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -peer0.org1.example.com | [970 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [972 01-05 06:37:28.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 [7] -peer1.org2.example.com | [9cd 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [63b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608EEB9BCD20522...E92C66A50E6ABC22AA089ECC0D41D2B4 -orderer.example.com | [63c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 4998F1183D2AE74421D96437EFCB1F0FC2342B98725B69A948744FB7CCD59926 -orderer.example.com | [63d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [63e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [63f 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -peer0.org1.example.com | [971 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel chaincode id: name:"lscc" -peer0.org2.example.com | [973 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [9ce 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [640 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [641 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [642 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [972 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org2.example.com | [9cf 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [973 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [9d0 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [643 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [974 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [974 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a,syscc=true,proposal=0xc4202f30e0,canname=escc:1.1.0 +peer1.org1.example.com | [822 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421d536c0 env 0xc423219e90 txn 0 +peer0.org1.example.com | [84c 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [83e 01-13 06:14:54.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=55592, bytesLength=2919] for tx ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to index +orderer.example.com | [5f6 01-13 06:14:15.32 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.org2.example.com | [817 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66980797]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [84d 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [83f 01-13 06:14:54.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=55592, bytesLength=2919] for tx number:[0] ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to blockNumTranNum index +peer1.org1.example.com | [823 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423219e90 +orderer.example.com | [5f7 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [840 01-13 06:14:54.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=[60306], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org1.example.com | [824 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer0.org1.example.com | [84e 01-13 06:14:29.09 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 | [818 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66980797]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [841 01-13 06:14:54.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +orderer.example.com | [5f8 01-13 06:14:15.32 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 | [825 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [842 01-13 06:14:54.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 | [819 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66980797]Sending GET_STATE +peer0.org1.example.com | [84f 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +peer1.org1.example.com | [826 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [843 01-13 06:14:54.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +orderer.example.com | [5f9 01-13 06:14:15.32 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: +peer1.org2.example.com | [81a 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message GET_STATE from shim +peer1.org1.example.com | [827 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer0.org2.example.com | [844 01-13 06:14:54.35 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 | [850 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [828 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [81b 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [845 01-13 06:14:54.35 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 | [5fa 01-13 06:14:15.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [829 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [846 01-13 06:14:54.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 +orderer.example.com | [5fb 01-13 06:14:15.32 UTC] [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.org2.example.com | [81c 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66980797]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [851 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel chaincode id: name:"qscc" +peer1.org1.example.com | [82a 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422a04a80, header channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer0.org2.example.com | [847 01-13 06:14:54.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 | [82b 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [81d 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [852 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [5fc 01-13 06:14:15.32 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 | [848 01-13 06:14:54.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 | [82c 01-13 06:15:02.13 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 | [853 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [81e 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | [5fd 01-13 06:14:15.32 UTC] [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 +peer0.org2.example.com | [849 01-13 06:14:54.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 | [82d 01-13 06:15:02.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.org2.example.com | [81f 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [854 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147,syscc=true,proposal=0xc421938a50,canname=escc:1.1.0 +peer0.org2.example.com | [84a 01-13 06:14:54.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +orderer.example.com | [5fe 01-13 06:14:15.33 UTC] [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 | [82e 01-13 06:15:02.14 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 | [84b 01-13 06:14:54.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 | [820 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]Got state. Sending RESPONSE +peer0.org1.example.com | [855 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [82f 01-13 06:15:02.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 +orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [84c 01-13 06:14:54.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 | [830 01-13 06:15:02.14 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 | [821 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66980797]handleGetState serial send RESPONSE +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [84d 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [856 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [831 01-13 06:15:02.14 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 | [84e 01-13 06:14:54.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: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [822 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Received message RESPONSE from shim +peer0.org1.example.com | [857 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [832 01-13 06:15:02.15 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 | [84f 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer1.org1.example.com | [833 01-13 06:15:02.15 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 | [850 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [858 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [823 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66980797]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [834 01-13 06:15:02.15 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 | [851 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [859 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [824 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66980797]before send +peer1.org1.example.com | [835 01-13 06:15:02.15 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 | [852 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [836 01-13 06:15:02.15 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 | [853 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [85a 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [825 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66980797]after send +peer1.org1.example.com | [837 01-13 06:15:02.15 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 | [854 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [85b 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [838 01-13 06:15:02.15 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 | [855 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | [827 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66980797]GetState received payload RESPONSE +peer0.org1.example.com | [85c 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Move state message TRANSACTION +peer1.org1.example.com | [839 01-13 06:15:02.15 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 | [856 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer0.org1.example.com | [85d 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [828 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [857 01-13 06:14:54.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [83a 01-13 06:15:02.15 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 | [85e 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [826 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [66980797]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [83b 01-13 06:15:02.15 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 | [83c 01-13 06:15:02.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 | [83d 01-13 06:15:02.15 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 | [85f 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]sending state message TRANSACTION +peer1.org2.example.com | [829 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Move state message COMPLETED +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org2.example.com | [858 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [83e 01-13 06:15:02.15 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 | [860 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Received message TRANSACTION from shim +peer1.org2.example.com | [82a 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66980797]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [859 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [83f 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer0.org2.example.com | [85a 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423a3dd80 env 0xc421b94510 txn 0 +peer1.org2.example.com | [82b 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]send state message COMPLETED +peer1.org1.example.com | [840 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer0.org2.example.com | [85b 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b94510 +peer0.org1.example.com | [861 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [82c 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message COMPLETED from shim +orderer.example.com | vA2BLfriqQ== +peer0.org2.example.com | [85c 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer1.org1.example.com | [841 01-13 06:15:02.15 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 | [82d 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [862 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7ec0b2bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [82e 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [85d 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [863 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [85e 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [864 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [5ff 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [82f 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13, channelID:businesschannel +peer1.org1.example.com | [842 01-13 06:15:02.15 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 | [85f 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer0.org1.example.com | [865 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [830 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [860 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [843 01-13 06:15:02.15 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 | [831 01-13 06:14:52.08 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 | [866 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Move state message COMPLETED +peer0.org2.example.com | [861 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [867 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [844 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer0.org2.example.com | [862 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422f5aa80, header channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer1.org2.example.com | [832 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 channel id: businesschannel version: 1.0 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [868 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]send state message COMPLETED +peer0.org2.example.com | [863 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer1.org1.example.com | [845 01-13 06:15:02.16 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 | [833 01-13 06:14:52.08 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=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13,syscc=false,proposal=0xc422ec89b0,canname=exp02:1.0 +peer0.org1.example.com | [869 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Received message COMPLETED from shim +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [864 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [86a 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [834 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer1.org1.example.com | [846 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer0.org2.example.com | [865 01-13 06:15:02.12 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 | [86b 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [835 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer1.org1.example.com | [847 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer1.org2.example.com | [836 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org1.example.com | [86c 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147, channelID:businesschannel +peer0.org2.example.com | [866 01-13 06:15:02.12 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 | [837 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66980797]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [848 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +peer0.org1.example.com | [86d 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer0.org2.example.com | [867 01-13 06:15:02.12 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 | [838 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer1.org1.example.com | [849 01-13 06:15:02.16 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 | [868 01-13 06:15:02.12 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 | [86e 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [839 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org2.example.com | [869 01-13 06:15:02.12 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 | [84a 01-13 06:15:02.16 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 | [86f 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [83a 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66980797]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | R0L5Jr8878bLU6IcEA== +peer1.org1.example.com | [84b 01-13 06:15:02.16 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 | [86a 01-13 06:15:02.12 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 | [870 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [83b 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Move state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [84c 01-13 06:15:02.16 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 | [871 01-13 06:14:29.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 [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +peer0.org2.example.com | [86b 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [600 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [83c 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [872 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53682) +peer1.org1.example.com | [84d 01-13 06:15:02.16 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 | [601 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [86c 01-13 06:15:02.12 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 | [83d 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [873 01-13 06:14:29.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +peer1.org1.example.com | [84e 01-13 06:15:02.17 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 | [602 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [86d 01-13 06:15:02.12 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 | [874 01-13 06:14:29.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) +peer1.org2.example.com | [83e 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]sending state message TRANSACTION +peer0.org1.example.com | [875 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer1.org1.example.com | [84f 01-13 06:15:02.17 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 | [86e 01-13 06:15:02.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [603 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [876 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [83f 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message GET_STATE from shim +peer1.org1.example.com | [850 01-13 06:15:02.17 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 | [604 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [877 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [840 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [86f 01-13 06:15:02.12 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 | [878 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [851 01-13 06:15:02.17 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 | [605 01-13 06:14:15.33 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: +peer0.org1.example.com | [879 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [870 01-13 06:15:02.12 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 | [841 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66980797]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [87a 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +orderer.example.com | [606 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [852 01-13 06:15:02.17 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 | [87b 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org2.example.com | [871 01-13 06:15:02.12 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 +orderer.example.com | [607 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [87c 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [853 01-13 06:15:02.17 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 | [842 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [87d 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org2.example.com | [872 01-13 06:15:02.12 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 +orderer.example.com | [608 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [843 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [87e 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [854 01-13 06:15:02.17 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 | [873 01-13 06:15:02.12 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 +orderer.example.com | [609 01-13 06:14:15.33 UTC] [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.org2.example.com | [844 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [87f 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [874 01-13 06:15:02.13 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 | [845 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]Got state. Sending RESPONSE +peer1.org1.example.com | [855 01-13 06:15:02.17 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 | [60a 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [880 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [846 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66980797]handleGetState serial send RESPONSE +peer1.org1.example.com | [856 01-13 06:15:02.17 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 | [875 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [881 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message READY +peer1.org2.example.com | [847 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message GET_STATE from shim +peer0.org2.example.com | [876 01-13 06:15:02.13 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 | [857 01-13 06:15:02.17 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [848 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [882 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [877 01-13 06:15:02.13 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 | [849 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66980797]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [858 01-13 06:15:02.17 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [878 01-13 06:15:02.13 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 | [84a 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [883 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [cbfac003]Entered state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org2.example.com | [84b 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797] getting state for chaincode exp02, key b, channel businesschannel +peer1.org1.example.com | [859 01-13 06:15:02.17 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 | [879 01-13 06:15:02.13 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 | [84c 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [884 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +peer1.org2.example.com | [84d 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]Got state. Sending RESPONSE +peer1.org1.example.com | [85a 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [84e 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66980797]handleGetState serial send RESPONSE +peer0.org2.example.com | [87a 01-13 06:15:02.14 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 | [885 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message READY +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org1.example.com | [85b 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [84f 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message PUT_STATE from shim +peer0.org1.example.com | [886 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [87b 01-13 06:15:02.14 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 | [850 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +peer0.org1.example.com | [887 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [85c 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [87c 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer1.org2.example.com | [851 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [888 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [85d 01-13 06:15:02.17 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 | [852 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]state is ready +peer0.org1.example.com | [889 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org2.example.com | [853 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +peer0.org2.example.com | [87d 01-13 06:15:02.14 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 | [85e 01-13 06:15:02.17 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 | [854 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66980797]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [88a 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [87e 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +peer1.org2.example.com | [855 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Move state message RESPONSE +peer1.org1.example.com | [85f 01-13 06:15:02.17 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 | [87f 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [88b 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [856 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +peer1.org1.example.com | [860 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [88c 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [857 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [880 01-13 06:15:02.14 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 | [88d 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]sendExecuteMsg trigger event INIT +orderer.example.com | oQmWQsjpiQ== +peer1.org1.example.com | [861 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [858 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]sending state message RESPONSE +peer0.org1.example.com | [88e 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message INIT +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [859 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message PUT_STATE from shim +peer0.org2.example.com | [881 01-13 06:15:02.14 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 | [862 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [85a 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [88f 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [60b 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [863 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [882 01-13 06:15:02.14 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 | [85b 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [890 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [864 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [883 01-13 06:15:02.14 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 | [891 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message INIT +peer1.org2.example.com | [85c 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]state is ready +peer1.org1.example.com | [865 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [884 01-13 06:15:02.14 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 | [85d 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66980797]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [892 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message PUT_STATE from shim +peer1.org1.example.com | [866 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [85e 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66980797]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [885 01-13 06:15:02.14 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 | [867 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [893 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer1.org2.example.com | [85f 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Move state message RESPONSE +peer0.org2.example.com | [886 01-13 06:15:02.14 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 | [868 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [860 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [894 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [887 01-13 06:15:02.14 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 | [869 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [895 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]state is ready +peer0.org2.example.com | [888 01-13 06:15:02.14 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 | [861 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer1.org1.example.com | [86a 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [889 01-13 06:15:02.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" +peer0.org1.example.com | [896 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +peer1.org2.example.com | [862 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]sending state message RESPONSE +peer1.org1.example.com | [86b 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer0.org2.example.com | [88a 01-13 06:15:02.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" +peer0.org1.example.com | [897 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [863 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message COMPLETED from shim +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer1.org1.example.com | [86c 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [88b 01-13 06:15:02.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" +peer0.org1.example.com | [898 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message RESPONSE +peer1.org2.example.com | [864 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer1.org1.example.com | [86d 01-13 06:15:02.18 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 | [88c 01-13 06:15:02.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 | [86e 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [899 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer1.org2.example.com | [865 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [86f 01-13 06:15:02.18 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 | [88d 01-13 06:15:02.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" +peer0.org1.example.com | [89a 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [866 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13, channelID:businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [870 01-13 06:15:02.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [88e 01-13 06:15:02.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" +peer0.org1.example.com | [89b 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message RESPONSE +orderer.example.com | [60c 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [867 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [88f 01-13 06:15:02.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 | [871 01-13 06:15:02.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [89c 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message PUT_STATE from shim +orderer.example.com | [60d 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [890 01-13 06:15:02.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" +orderer.example.com | [60e 01-13 06:14:15.33 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 | [89d 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [872 01-13 06:15:02.19 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 | [868 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [891 01-13 06:15:02.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" +orderer.example.com | [60f 01-13 06:14:15.33 UTC] [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 | [89e 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [869 01-13 06:14:52.09 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 | [873 01-13 06:15:02.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [610 01-13 06:14:15.33 UTC] [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.org1.example.com | [89f 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]state is ready +peer0.org2.example.com | [892 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [86a 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +orderer.example.com | [611 01-13 06:14:15.33 UTC] [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 | [874 01-13 06:15:02.19 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 | [893 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [8a0 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [86b 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [875 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [612 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org2.example.com | [894 01-13 06:15:02.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 | [8a1 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [876 01-13 06:15:02.20 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 | [86c 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 channel id: businesschannel chaincode id: name:"exp02" +peer0.org2.example.com | [895 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [613 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org1.example.com | [8a2 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message RESPONSE +peer1.org1.example.com | [877 01-13 06:15:02.20 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 | [614 01-13 06:14:15.33 UTC] [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 +peer1.org2.example.com | [86d 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org2.example.com | [896 01-13 06:15:02.15 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 | [8a3 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [878 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [615 01-13 06:14:15.33 UTC] [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 +peer1.org2.example.com | [86e 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [8a4 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [879 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [897 01-13 06:15:02.15 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 | [616 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [8a5 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message RESPONSE +peer1.org2.example.com | [86f 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13,syscc=true,proposal=0xc422ec89b0,canname=escc:1.1.0 +peer0.org2.example.com | [898 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [617 01-13 06:14:15.33 UTC] [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 | [87a 01-13 06:15:02.21 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 | [8a6 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message COMPLETED from shim +peer1.org2.example.com | [870 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | [899 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [87b 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [618 01-13 06:14:15.33 UTC] [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.org2.example.com | [871 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [8a7 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [87c 01-13 06:15:02.21 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 | [89a 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [619 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [8a8 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [872 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [87d 01-13 06:15:02.21 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 | [89b 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [8a9 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +peer1.org2.example.com | [873 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66980797]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [61a 01-13 06:14:15.33 UTC] [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 | [87e 01-13 06:15:02.22 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 | [89c 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [874 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [8aa 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit +orderer.example.com | [61b 01-13 06:14:15.33 UTC] [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 | [87f 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [89d 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [8ab 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [875 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [61c 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org1.example.com | [8ac 01-13 06:14:29.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 | [880 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [61d 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer1.org2.example.com | [876 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66980797]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [881 01-13 06:15:02.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 | [89e 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [8ad 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer1.org2.example.com | [877 01-13 06:14:52.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Move state message TRANSACTION +orderer.example.com | [61e 01-13 06:14:15.33 UTC] [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.org1.example.com | [8ae 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [882 01-13 06:15:02.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 | [878 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [89f 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [61f 01-13 06:14:15.33 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 | [8af 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel chaincode id: name:"lscc" +peer1.org1.example.com | [883 01-13 06:15:02.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 | [879 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [8a0 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [8b0 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org1.example.com | [884 01-13 06:15:02.23 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 | [87a 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]sending state message TRANSACTION +orderer.example.com | [620 01-13 06:14:15.33 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 | [8a1 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [8b1 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [87b 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Received message TRANSACTION from shim +orderer.example.com | [621 01-13 06:14:15.33 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 +peer1.org1.example.com | [885 01-13 06:15:02.24 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 | [8a2 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [622 01-13 06:14:15.33 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 | [8b2 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95,syscc=true,proposal=0xc4232fd540,canname=escc:1.1.0 +peer1.org1.example.com | [886 01-13 06:15:02.24 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 | [623 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/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 +peer1.org2.example.com | [87c 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66980797]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [8b3 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org2.example.com | [8a3 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [624 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [87d 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66980797]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [887 01-13 06:15:02.25 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 | [625 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 | [8b4 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [8a4 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [87e 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [888 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [626 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [627 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [628 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [8a5 01-13 06:15:02.16 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 | [8b5 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org1.example.com | [889 01-13 06:15:02.25 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 | [87f 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [629 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 | [880 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [8a6 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [88a 01-13 06:15:02.25 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 | [62a 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [8b6 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [881 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]Move state message COMPLETED +orderer.example.com | [62b 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +peer0.org2.example.com | [8a7 01-13 06:15:02.16 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 | [88b 01-13 06:15:02.25 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 | [8b7 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [62c 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 | [882 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66980797]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [62d 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +peer0.org2.example.com | [8a8 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [8b8 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [8a9 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [62e 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [88c 01-13 06:15:02.25 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 | [8b9 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [8aa 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [62f 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [883 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66980797]send state message COMPLETED +peer0.org2.example.com | [8ab 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [630 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [8ba 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message TRANSACTION +peer0.org2.example.com | [8ac 01-13 06:15:02.17 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 | [88d 01-13 06:15:02.25 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 | [631 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org2.example.com | [8ad 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [88e 01-13 06:15:02.25 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 | [884 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66980797]Received message COMPLETED from shim +peer0.org2.example.com | [8ae 01-13 06:15:02.17 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 | [88f 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [632 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [8bb 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [885 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [8af 01-13 06:15:02.18 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 | [890 01-13 06:15:02.25 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 | [8bc 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [8b0 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [633 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [891 01-13 06:15:02.25 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 | [8b1 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [8bd 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message TRANSACTION +peer1.org2.example.com | [886 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [892 01-13 06:15:02.25 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 | [8b2 01-13 06:15:02.19 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 | [8be 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message TRANSACTION from shim +orderer.example.com | [634 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +peer1.org1.example.com | [893 01-13 06:15:02.25 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 | [8b3 01-13 06:15:02.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [887 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13, channelID:businesschannel +peer1.org1.example.com | [894 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [635 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [8bf 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [8b4 01-13 06:15:02.19 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 | [895 01-13 06:15:02.25 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 | [636 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8b5 01-13 06:15:02.19 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 | [888 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8c0 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cbfac003]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [896 01-13 06:15:02.25 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 | [8b6 01-13 06:15:02.19 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 | [889 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [637 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [8c1 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [897 01-13 06:15:02.25 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 | [8b7 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [88a 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8c2 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [898 01-13 06:15:02.25 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 | [8b8 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [638 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org1.example.com | [899 01-13 06:15:02.25 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 | [8b9 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [89a 01-13 06:15:02.25 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 | [88b 01-13 06:14:52.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 [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer0.org1.example.com | [8c3 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Transaction completed. Sending COMPLETED +orderer.example.com | [639 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +peer0.org2.example.com | [8ba 01-13 06:15:02.20 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 | [89b 01-13 06:15:02.25 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 | [88c 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:57196) +peer0.org1.example.com | [8c4 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Move state message COMPLETED +peer0.org2.example.com | [8bb 01-13 06:15:02.20 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 | [89c 01-13 06:15:02.25 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 +orderer.example.com | [63a 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [8c5 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [8bc 01-13 06:15:02.20 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 | [89d 01-13 06:15:02.25 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 | [88d 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org2.example.com | [8bd 01-13 06:15:02.21 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 | [63b 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +peer1.org1.example.com | [89e 01-13 06:15:02.25 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 | [8c6 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]send state message COMPLETED +peer0.org2.example.com | [8be 01-13 06:15:02.21 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 | [89f 01-13 06:15:02.25 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 | [88e 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +orderer.example.com | [63c 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [8a0 01-13 06:15:02.25 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 | [8bf 01-13 06:15:02.21 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 | [8c7 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message COMPLETED from shim +peer1.org1.example.com | [8a1 01-13 06:15:02.25 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 | [63d 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [88f 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [8a2 01-13 06:15:02.25 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 | [8c0 01-13 06:15:02.25 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 | [8a3 01-13 06:15:02.25 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 | [8c8 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [890 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [63e 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org1.example.com | [8a4 01-13 06:15:02.25 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 | [8c1 01-13 06:15:02.25 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 | [891 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422314820 env 0xc4222f0960 txn 0 +peer0.org1.example.com | [8c9 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95]HandleMessage- COMPLETED. Notify +orderer.example.com | [63f 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [8a5 01-13 06:15:02.25 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 | [8c2 01-13 06:15:02.25 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 | [892 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222f0960 +peer0.org1.example.com | [8ca 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +orderer.example.com | [640 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8c3 01-13 06:15:02.25 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 | [893 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +peer1.org1.example.com | [8a6 01-13 06:15:02.25 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 | [8cb 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [8c4 01-13 06:15:02.25 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 | [894 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [641 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org1.example.com | [8a7 01-13 06:15:02.25 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 | [8cc 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [8c5 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [642 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer1.org1.example.com | [8a8 01-13 06:15:02.25 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 | [895 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [8c6 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [643 01-13 06:14:15.35 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 +peer0.org1.example.com | [8cd 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org1.example.com | [8a9 01-13 06:15:02.25 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 | [8ce 01-13 06:14:29.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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer1.org2.example.com | [896 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +orderer.example.com | [644 01-13 06:14:15.35 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 +peer0.org2.example.com | [8c7 01-13 06:15:02.25 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 | [8aa 01-13 06:15:02.25 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 | [8cf 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40096) +orderer.example.com | [645 01-13 06:14:15.35 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.org2.example.com | [8c8 01-13 06:15:02.25 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 | [897 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [8d0 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53690 +peer1.org1.example.com | [8ab 01-13 06:15:02.25 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 | [646 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [8d1 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42274c690 +peer0.org2.example.com | [8c9 01-13 06:15:02.25 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 | [8ac 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [647 01-13 06:14:15.35 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 +peer0.org1.example.com | [8d2 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [898 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [8ca 01-13 06:15:02.25 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 | [648 01-13 06:14:15.35 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 +peer1.org1.example.com | [8ad 01-13 06:15:02.26 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 | [899 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422303800, header channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +peer0.org2.example.com | [8cb 01-13 06:15:02.25 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 | [8d3 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [8ae 01-13 06:15:02.26 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 | [649 01-13 06:14:15.35 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 +peer1.org2.example.com | [89a 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [8d4 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [64a 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [8af 01-13 06:15:02.26 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 | [8cc 01-13 06:15:02.25 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 | [8d5 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [89b 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [8b0 01-13 06:15:02.26 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 | [8cd 01-13 06:15:02.25 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 | [64b 01-13 06:14:15.35 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' +peer1.org2.example.com | [89c 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [8d6 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [8b1 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [64c 01-13 06:14:15.35 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.org2.example.com | [8ce 01-13 06:15:02.25 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 | [8d7 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4225adae0, header 0xc42274ca50 +peer1.org2.example.com | [89d 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [8b2 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [8cf 01-13 06:15:02.25 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 | [64d 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [8d8 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer1.org2.example.com | [89e 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer1.org1.example.com | [8b3 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [64e 01-13 06:14:15.35 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 | [8d0 01-13 06:15:02.25 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 | [89f 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [8b4 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [8d9 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 +peer0.org2.example.com | [8d1 01-13 06:15:02.25 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 | [64f 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [8b5 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [8da 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +peer1.org2.example.com | [8a0 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4222f0960 envbytes 0xc42230b000 +peer0.org2.example.com | [8d2 01-13 06:15:02.25 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 | [8b6 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [8db 01-13 06:14:30.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 +orderer.example.com | [650 01-13 06:14:15.35 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 [] +peer1.org1.example.com | [8b7 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [8a1 01-13 06:14:54.17 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 = [47980bdc-2773-4631-a3fd-d1ce91973646] +peer0.org1.example.com | [8dc 01-13 06:14:30.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 = [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +orderer.example.com | [651 01-13 06:14:15.35 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 | [8d3 01-13 06:15:02.25 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 | [8b8 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +orderer.example.com | [652 01-13 06:14:15.36 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 | [8d4 01-13 06:15:02.25 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 | [8a2 01-13 06:14:54.17 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 | [8b9 01-13 06:15:02.27 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 | [8dd 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel +orderer.example.com | [653 01-13 06:14:15.36 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 | [8d5 01-13 06:15:02.26 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 | [8de 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [8a3 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [47980bdc-2773-4631-a3fd-d1ce91973646] +peer1.org1.example.com | [8ba 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [8d6 01-13 06:15:02.26 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 | [8df 01-13 06:14:30.15 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.1.0,txid=b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098,syscc=true,proposal=0xc4225adae0,canname=qscc:1.1.0 +orderer.example.com | [654 01-13 06:14:15.36 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 | [8d7 01-13 06:15:02.26 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 | [8a4 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42230b000 +peer0.org1.example.com | [8e0 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org1.example.com | [8bb 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [8d8 01-13 06:15:02.26 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 | [8a5 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [655 01-13 06:14:15.36 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' +peer1.org1.example.com | [8bc 01-13 06:15:02.36 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 | [8e1 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [8d9 01-13 06:15:02.26 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 | [8a6 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +orderer.example.com | [656 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org1.example.com | [8e2 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer1.org1.example.com | [8bd 01-13 06:15:02.36 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 | [8a7 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=e7346da3-d1cf-48ef-bf54-9e81b5a4b2ae,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [8e3 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [8da 01-13 06:15:02.26 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 | [8be 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +orderer.example.com | [657 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [8e4 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [8a8 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 chaindID businesschannel +peer1.org1.example.com | [8bf 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | [658 01-13 06:14:15.36 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 | [8e5 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [8a9 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org2.example.com | [8db 01-13 06:15:02.26 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 | [8e6 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [8dc 01-13 06:15:02.26 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 | [8c0 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [8aa 01-13 06:14:54.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [659 01-13 06:14:15.36 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 | [8e7 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Move state message TRANSACTION +peer1.org2.example.com | [8ab 01-13 06:14:54.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org2.example.com | [8dd 01-13 06:15:02.26 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 | [8c1 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421d536c0 env 0xc423219e90 txn 0 +peer0.org1.example.com | [8e8 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [8de 01-13 06:15:02.27 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 | [65a 01-13 06:14:15.36 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 +peer1.org2.example.com | [8ac 01-13 06:14:54.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e7346da3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [8e9 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [8c2 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [8ea 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]sending state message TRANSACTION +peer1.org2.example.com | [8ad 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [65b 01-13 06:14:15.36 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.org2.example.com | [8df 01-13 06:15:02.27 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 | [8eb 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Received message TRANSACTION from shim +peer1.org2.example.com | [8ae 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e7346da3]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [65c 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [8c3 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [8ec 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [8e0 01-13 06:15:02.27 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 | [8c4 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | [65d 01-13 06:14:15.36 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.org2.example.com | [8af 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7346da3]Move state message TRANSACTION +peer0.org1.example.com | [8ed 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b8ee017c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [8c5 01-13 06:15:02.37 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 | [8e1 01-13 06:15:02.27 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 | [8ee 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [65e 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [8b0 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7346da3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [8e2 01-13 06:15:02.27 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 | [8ef 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Transaction completed. Sending COMPLETED +orderer.example.com | [65f 01-13 06:14:15.36 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 | [8c6 01-13 06:15:02.37 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 | [8b1 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8f0 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Move state message COMPLETED +peer0.org2.example.com | [8e3 01-13 06:15:02.27 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 | [8f1 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [660 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608B7C7E6D20522...99CEC899B540A387BD8DCDEB784315DB +peer1.org2.example.com | [8b2 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7346da3]sending state message TRANSACTION +peer1.org1.example.com | [8c7 01-13 06:15:02.37 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 | [8f2 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]send state message COMPLETED +peer1.org1.example.com | [8c8 01-13 06:15:02.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 | [661 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: B799F8B60BF5067E6B528E034307C8C7A08EE508319546F141D30CC1D0F6E6A5 +peer1.org2.example.com | [8b3 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7346da3]Received message TRANSACTION from shim +peer0.org2.example.com | [8e4 01-13 06:15:02.27 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 | [8f3 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Received message COMPLETED from shim +peer1.org1.example.com | [8c9 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +orderer.example.com | [662 01-13 06:14:15.36 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 | [8f4 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [8b4 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e7346da3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [8e5 01-13 06:15:02.27 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 | [663 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [8f5 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [8ca 01-13 06:15:02.37 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 | [8b5 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e7346da3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8f6 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098, channelID:businesschannel +orderer.example.com | [664 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer0.org2.example.com | [8e6 01-13 06:15:02.27 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 | [8f7 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [8b6 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [8cb 01-13 06:15:02.37 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 | [8e7 01-13 06:15:02.27 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 | [8f8 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [665 01-13 06:14:15.36 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 | [8b7 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [8cc 01-13 06:15:02.37 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 | [8f9 01-13 06:14:30.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.org2.example.com | [8e8 01-13 06:15:02.27 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 | [8b8 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [8cd 01-13 06:15:02.37 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 | [666 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org1.example.com | [8fa 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +peer0.org2.example.com | [8e9 01-13 06:15:02.27 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 | [8ce 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [8b9 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7346da3]Transaction completed. Sending COMPLETED +orderer.example.com | [667 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [8ea 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [8fb 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [8ba 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7346da3]Move state message COMPLETED +peer1.org1.example.com | [8cf 01-13 06:15:02.38 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 | [8eb 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [8fc 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [668 01-13 06:14:15.36 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 | [8d0 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [8bb 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e7346da3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [8ec 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [8fd 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer1.org1.example.com | [8d1 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [8ed 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [8bc 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e7346da3]send state message COMPLETED +peer1.org1.example.com | [8d2 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [8fe 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel version: 1.1.0 +peer0.org2.example.com | [8ee 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [8d3 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [8d4 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [8bd 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e7346da3]Received message COMPLETED from shim +peer0.org1.example.com | [8ff 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098,syscc=true,proposal=0xc4225adae0,canname=escc:1.1.0 +peer0.org2.example.com | [8ef 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV +peer0.org1.example.com | [900 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [8d5 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [8f0 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer1.org2.example.com | [8be 01-13 06:14:54.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7346da3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [8d6 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [901 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [8f1 01-13 06:15:02.28 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 orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +peer1.org1.example.com | [8d7 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [902 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [8bf 01-13 06:14:54.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e7346da3-d1cf-48ef-bf54-9e81b5a4b2ae]HandleMessage- COMPLETED. Notify orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR +peer1.org1.example.com | [8d8 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [8f2 01-13 06:15:02.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 | [903 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [8c0 01-13 06:14:54.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e7346da3-d1cf-48ef-bf54-9e81b5a4b2ae, channelID:businesschannel orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA +peer1.org1.example.com | [8d9 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [8c1 01-13 06:14:54.20 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [8f3 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer1.org2.example.com | [9d1 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [975 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [976 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [977 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [978 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [904 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [8da 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [8c2 01-13 06:14:54.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer0.org1.example.com | [975 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org2.example.com | [9d2 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [979 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [97a 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [8f4 01-13 06:15:02.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 | [905 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [8db 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [8c3 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42230b000 +peer0.org1.example.com | [906 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [8dc 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [8c4 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4222f0960 envbytes 0xc42230b000 +peer0.org1.example.com | [907 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Move state message TRANSACTION orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer1.org2.example.com | [9d3 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [976 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [97b 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [8dd 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [8c5 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422314820 env 0xc4222f0960 txn 0 +peer0.org2.example.com | [8f5 01-13 06:15:02.30 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 | [8de 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [8c6 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [908 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [8f6 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [9d4 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [97c 01-05 06:37:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [977 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [644 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d28 gate 1515134190447623300 evaluation starts -peer0.org1.example.com | [978 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [9d5 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [9d6 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [9d7 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [645 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [979 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [9d8 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [646 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [9d9 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [9da 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [9db 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org1.example.com | [97a 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [647 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -peer1.org2.example.com | [9dc 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org1.example.com | [97b 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [97c 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Move state message TRANSACTION -peer0.org1.example.com | [97d 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [9dd 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [648 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 principal evaluation fails -peer1.org2.example.com | [9de 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org1.example.com | [97e 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [9df 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [649 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d28 gate 1515134190447623300 evaluation fails -peer1.org2.example.com | [9e0 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [97f 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]sending state message TRANSACTION -orderer.example.com | [64a 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [980 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Received message TRANSACTION from shim -peer1.org2.example.com | [9e1 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [981 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [9e2 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [982 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b89a09fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [9e3 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [64b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [983 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [64c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -peer1.org2.example.com | [9e4 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [984 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [64d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d38 gate 1515134190448787100 evaluation starts -peer1.org2.example.com | [9e5 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [985 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Transaction completed. Sending COMPLETED -orderer.example.com | [64e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [64f 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [9e6 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [986 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Move state message COMPLETED -orderer.example.com | [650 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -peer1.org2.example.com | [9e7 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [987 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [651 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 principal evaluation fails -peer1.org2.example.com | [9e8 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [988 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]send state message COMPLETED -orderer.example.com | [652 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d38 gate 1515134190448787100 evaluation fails -peer1.org2.example.com | [9e9 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [989 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Received message COMPLETED from shim -orderer.example.com | [653 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [9ea 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [654 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [98a 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [9eb 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [655 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Writers Org2MSP.Writers ] -peer0.org1.example.com | [98b 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a]HandleMessage- COMPLETED. Notify -orderer.example.com | [656 01-05 06:36:30.44 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 -peer1.org2.example.com | [9ec 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [98c 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a, channelID:businesschannel -orderer.example.com | [657 01-05 06:36:30.44 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 | [658 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer0.org1.example.com | [98d 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [9ed 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [659 01-05 06:36:30.45 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 | [9ee 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [98e 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [65a 01-05 06:36:30.45 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 | [9ef 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [65b 01-05 06:36:30.45 UTC] [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 0xc420138d40 gate 1515134190450206400 evaluation starts -peer1.org2.example.com | [9f0 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [9f1 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [9f2 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [65c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [98f 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [9f3 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [65d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [65e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer1.org2.example.com | [9f4 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [9f5 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [990 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -orderer.example.com | [65f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [9f6 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [9f7 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [9f8 01-05 06:37:28.22 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 | [9f9 01-05 06:37:28.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [9fa 01-05 06:37:28.24 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 | [9fb 01-05 06:37:28.25 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 | [9fc 01-05 06:37:28.25 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 | [991 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37210) -orderer.example.com | [660 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 principal matched by identity 0 -peer0.org1.example.com | [992 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37212 -peer1.org2.example.com | [9fd 01-05 06:37:28.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [661 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 98 f1 18 3d 2a e7 44 21 d9 64 37 ef cb 1f 0f |I...=*.D!.d7....| -orderer.example.com | 00000010 c2 34 2b 98 72 5b 69 a9 48 74 4f b7 cc d5 99 26 |.4+.r[i.HtO....&| -peer0.org1.example.com | [993 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225adb30 -orderer.example.com | [662 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 80 7f fb 03 2b 80 77 ba 9b 9e 73 |0D. #....+.w...s| -peer1.org2.example.com | [9fe 01-05 06:37:28.25 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 | [994 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 00000010 99 f2 d2 48 4a 51 a1 00 6f 13 52 ff 89 7a bd b3 |...HJQ..o.R..z..| -peer0.org1.example.com | [995 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [9ff 01-05 06:37:28.25 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 | [996 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -orderer.example.com | 00000020 5d d2 3c b7 02 20 42 64 8f 0a 13 af 9c 73 70 7e |].<.. Bd.....sp~| -peer0.org1.example.com | [997 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [a00 01-05 06:37:28.26 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] -orderer.example.com | 00000030 26 0c 74 09 c3 46 18 b9 f0 d9 5e af f8 01 22 a2 |&.t..F....^...".| -orderer.example.com | 00000040 99 74 cb f3 4d 54 |.t..MT| -orderer.example.com | [663 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [a01 01-05 06:37:28.28 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{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -peer0.org1.example.com | [998 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [999 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202f3630, header 0xc4225adb60 -orderer.example.com | [664 01-05 06:36:30.45 UTC] [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 0xc420138d40 gate 1515134190450206400 evaluation succeeds -peer1.org2.example.com | txId= locPointer=offset=71, bytesLength=19401 -orderer.example.com | [665 01-05 06:36:30.45 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 | [99a 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [8df 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [8c7 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [8e0 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [909 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [8f7 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +orderer.example.com | [669 01-13 06:14:15.36 UTC] [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 0xc42011d2c8 gate 1515824055366351114 evaluation starts +peer1.org2.example.com | [8c8 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +orderer.example.com | [66a 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [8e1 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [90a 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]sending state message TRANSACTION +peer0.org2.example.com | [8f8 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [8c9 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [66b 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [90b 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Received message TRANSACTION from shim +peer1.org2.example.com | [8ca 01-13 06:14:54.23 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 | [8e2 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [66c 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [90c 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [8f9 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423a3dd80 env 0xc421b94510 txn 0 +peer1.org2.example.com | [8cb 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [90d 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b8ee017c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [66d 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [8e3 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [8fa 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [8cc 01-13 06:14:54.26 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 | [90e 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [8e4 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [66e 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 principal matched by identity 0 +peer0.org2.example.com | [8fb 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [8cd 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [90f 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [8e5 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [8fc 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [8ce 01-13 06:14:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +orderer.example.com | [66f 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b7 99 f8 b6 0b f5 06 7e 6b 52 8e 03 43 07 c8 c7 |.......~kR..C...| +peer0.org1.example.com | [910 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [8e6 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [8cf 01-13 06:14:54.27 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 +orderer.example.com | 00000010 a0 8e e5 08 31 95 46 f1 41 d3 0c c1 d0 f6 e6 a5 |....1.F.A.......| +peer0.org2.example.com | [8fd 01-13 06:15:02.30 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 | [8d0 01-13 06:14:54.27 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 | [911 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Move state message COMPLETED +peer0.org2.example.com | [8fe 01-13 06:15:02.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] +peer1.org1.example.com | [8e7 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [8d1 01-13 06:14:54.27 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 | [8ff 01-13 06:15:02.30 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 | [912 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [670 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be d8 71 22 41 16 61 93 fd 07 96 |0E.!...q"A.a....| +peer1.org1.example.com | [8e8 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [8d2 01-13 06:14:54.27 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} +orderer.example.com | 00000010 a5 29 82 1e 42 9a 96 ba c4 27 7e eb 48 32 4a 86 |.)..B....'~.H2J.| +peer0.org2.example.com | [900 01-13 06:15:02.30 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 | [8d3 01-13 06:14:54.27 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 [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] marked as valid by state validator +peer1.org1.example.com | [8e9 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [913 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]send state message COMPLETED +orderer.example.com | 00000020 f3 4b 17 7b 80 02 20 71 67 b4 05 13 48 df a9 44 |.K.{.. qg...H..D| +peer1.org2.example.com | [8d4 01-13 06:14:54.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | 00000030 8e f4 ff d4 d7 39 40 70 ed 27 f1 e7 ca 02 4c ba |.....9@p.'....L.| +peer0.org2.example.com | [901 01-13 06:15:02.30 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 | [914 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Received message COMPLETED from shim +peer1.org1.example.com | [8ea 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | 00000040 12 1e d9 a5 4e e9 c3 |....N..| +peer1.org2.example.com | [8d5 01-13 06:14:54.27 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 | [915 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [671 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [902 01-13 06:15:02.30 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 | [916 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [8eb 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [672 01-13 06:14:15.36 UTC] [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 0xc42011d2c8 gate 1515824055366351114 evaluation succeeds +peer0.org2.example.com | [903 01-13 06:15:02.30 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 | [917 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098, channelID:businesschannel +peer1.org1.example.com | [8ec 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [673 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [8d6 01-13 06:14:54.27 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 | [918 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [674 01-13 06:14:15.36 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 | [904 01-13 06:15:02.30 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 | [8d7 01-13 06:14:54.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +orderer.example.com | [675 01-13 06:14:15.36 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.org1.example.com | [8ed 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [919 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [905 01-13 06:15:02.30 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 | [676 01-13 06:14:15.36 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 | [8d8 01-13 06:14:54.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 [6] +peer0.org1.example.com | [91a 01-13 06:14:30.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [677 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +peer1.org1.example.com | [8ee 01-13 06:15:02.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [8d9 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +peer0.org2.example.com | [906 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [91b 01-13 06:14:30.16 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 [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +orderer.example.com | [678 01-13 06:14:15.37 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 | txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 +peer0.org2.example.com | [907 01-13 06:15:02.30 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 | [8ef 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [67a 01-13 06:14:15.37 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 | [908 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos peer1.org2.example.com | ] -orderer.example.com | [666 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [99b 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 -peer0.org1.example.com | [99c 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -peer1.org2.example.com | [a02 01-05 06:37:28.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=60379, bytesLength=19401] for tx ID: [] to index -peer1.org2.example.com | [a03 01-05 06:37:28.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=60379, bytesLength=19401] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [a04 01-05 06:37:28.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org1.example.com | [99d 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [667 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [668 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [669 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer0.org1.example.com | [99e 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -peer0.org1.example.com | [99f 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel -orderer.example.com | [66a 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -peer1.org2.example.com | [a05 01-05 06:37:28.28 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 | [9a0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel version: 1.1.0 -orderer.example.com | [66c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [a06 01-05 06:37:28.28 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 | [9a1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4,syscc=true,proposal=0xc4202f3630,canname=lscc:1.1.0 -orderer.example.com | [66d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [9a2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [a07 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -orderer.example.com | [66e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [9a3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [66f 01-05 06:36:30.45 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 | [670 01-05 06:36:30.45 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 | [671 01-05 06:36:30.45 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 | [672 01-05 06:36:30.45 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 | [673 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [674 01-05 06:36:30.45 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 | [675 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [9a4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [a08 01-05 06:37:28.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -orderer.example.com | [676 01-05 06:36:30.45 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 | [677 01-05 06:36:30.45 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 -peer0.org1.example.com | [9a5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [678 01-05 06:36:30.45 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 | [679 01-05 06:36:30.45 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 | [67a 01-05 06:36:30.45 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 | [67b 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [a09 01-05 06:37:28.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.org2.example.com | [a0a 01-05 06:37:28.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 -orderer.example.com | [67c 01-05 06:36:30.45 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 | [67d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org1.example.com | [9a6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [9a7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [a0b 01-05 06:37:28.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}] -peer0.org1.example.com | [9a8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [67e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [67f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [9a9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Move state message TRANSACTION -peer0.org1.example.com | [9aa 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [9ab 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [680 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org1.example.com | [9ac 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]sending state message TRANSACTION -peer0.org1.example.com | [9ad 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Received message TRANSACTION from shim -peer0.org1.example.com | [9ae 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [9af 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ed5509d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [9b0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Transaction completed. Sending COMPLETED -orderer.example.com | [681 01-05 06:36:30.45 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 | [682 01-05 06:36:30.45 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 | [683 01-05 06:36:30.45 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 | [684 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [685 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [686 01-05 06:36:30.45 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 | [687 01-05 06:36:30.45 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 | [688 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e960 gate 1515134190455448400 evaluation starts -peer0.org1.example.com | [9b1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Move state message COMPLETED -orderer.example.com | [689 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [a0c 01-05 06:37:28.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 | [9b2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [9b3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]send state message COMPLETED -orderer.example.com | [68a 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [a0d 01-05 06:37:28.29 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 | [9b4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Received message COMPLETED from shim -orderer.example.com | [68b 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [68c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 principal matched by identity 0 -orderer.example.com | [68d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7d 1e dc cf 17 d5 a8 4e 1b e1 62 18 e4 33 dd 59 |}......N..b..3.Y| -orderer.example.com | 00000010 41 f8 0c 43 8b d7 cc a4 01 f5 4b c5 89 6b 2a 28 |A..C......K..k*(| -orderer.example.com | [68e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c9 fc f2 46 e5 ca 22 7c ad 0c c9 |0E.!....F.."|...| -orderer.example.com | 00000010 9a 26 c6 f7 59 38 f7 3e 52 80 cb f8 3a ce 2c 64 |.&..Y8.>R...:.,d| -orderer.example.com | 00000020 7a 4a 18 06 76 02 20 32 9f e9 de c5 d7 20 3c 18 |zJ..v. 2..... <.| -orderer.example.com | 00000030 f5 d9 ef 9f ae 9f 2f 51 62 c6 72 62 e5 86 55 72 |....../Qb.rb..Ur| -orderer.example.com | 00000040 63 46 38 65 91 c7 60 |cF8e..`| -orderer.example.com | [68f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 principal evaluation succeeds for identity 0 -orderer.example.com | [690 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e960 gate 1515134190455448400 evaluation succeeds -peer0.org1.example.com | [9b5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [691 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [a0e 01-05 06:37:28.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 [7] with [1] transactions -orderer.example.com | [692 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [9b6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [a0f 01-05 06:37:28.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 -orderer.example.com | [693 01-05 06:36:30.45 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 | [694 01-05 06:36:30.45 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 | [9b7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4, channelID:businesschannel -orderer.example.com | [695 01-05 06:36:30.45 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 | [9b8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [a10 01-05 06:37:28.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 [7] -orderer.example.com | [696 01-05 06:36:30.45 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 | [a11 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [9b9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [9ba 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [9bb 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -peer0.org1.example.com | [9bc 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [697 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [9bd 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [a12 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [698 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [9be 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org2.example.com | [a13 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [699 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [9bf 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [a14 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [69a 01-05 06:36:30.45 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 | [69b 01-05 06:36:30.45 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 | [69c 01-05 06:36:30.45 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 | [69d 01-05 06:36:30.45 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 | [69e 01-05 06:36:30.45 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 | [69f 01-05 06:36:30.45 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 | [9c0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4,syscc=true,proposal=0xc4202f3630,canname=escc:1.1.0 -orderer.example.com | [6a0 01-05 06:36:30.45 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 | [a15 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [6a1 01-05 06:36:30.45 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 | [6a2 01-05 06:36:30.45 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 | [6a3 01-05 06:36:30.45 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 | [6a4 01-05 06:36:30.45 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 | [6a5 01-05 06:36:30.45 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 | [6a6 01-05 06:36:30.45 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 | [6a7 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [6a8 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [9c1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org2.example.com | [a16 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [6a9 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [9c2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [6aa 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [6ab 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [6ac 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [9c3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [9c4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [9c5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [9c6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [9c7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [6ad 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [a17 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [9c8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Move state message TRANSACTION -orderer.example.com | [6ae 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [9c9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [6af 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [9ca 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [6b0 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [9cb 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]sending state message TRANSACTION -peer1.org2.example.com | [a18 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [6b1 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [9cc 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Received message TRANSACTION from shim -peer0.org1.example.com | [9cd 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [9ce 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ed5509d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [9cf 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [9d0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [9d1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [9d2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Move state message COMPLETED -peer0.org1.example.com | [9d3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [9d4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]send state message COMPLETED -orderer.example.com | [6b2 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [9d5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Received message COMPLETED from shim -orderer.example.com | [6b3 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [9d6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [a19 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [9d7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [9d8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4, channelID:businesschannel -peer0.org1.example.com | [9d9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [9da 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [9db 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [9dc 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -orderer.example.com | [6b4 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6b5 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6b6 01-05 06:36:30.46 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 | [6b7 01-05 06:36:30.46 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 | [9dd 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37212) -peer1.org2.example.com | [a1a 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [9de 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37214 -peer0.org1.example.com | [9df 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224834d0 -peer0.org1.example.com | [9e0 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [9e1 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [9e2 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [9e3 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [6b8 01-05 06:36:30.46 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 | [6b9 01-05 06:36:30.46 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 | [6ba 01-05 06:36:30.46 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 | [91c 01-13 06:14:30.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53690) +orderer.example.com | [67b 01-13 06:14:15.37 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 | [909 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [8f0 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [91d 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53692 +peer1.org2.example.com | [8da 01-13 06:14:54.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=55592, bytesLength=2919] for tx ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to index +orderer.example.com | [67c 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [90a 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [8f1 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [67d 01-13 06:14:15.37 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 +peer1.org2.example.com | [8db 01-13 06:14:54.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=55592, bytesLength=2919] for tx number:[0] ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to blockNumTranNum index +peer0.org2.example.com | [90b 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [91e 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ec9470 +orderer.example.com | [67e 01-13 06:14:15.37 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 +peer0.org2.example.com | [90c 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [8f2 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer1.org2.example.com | [8dc 01-13 06:14:54.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=[60306], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [67f 01-13 06:14:15.37 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 +peer0.org2.example.com | [90d 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [91f 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [8dd 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +orderer.example.com | [680 01-13 06:14:15.37 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 +peer0.org2.example.com | [90e 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [8f3 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer0.org1.example.com | [920 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [681 01-13 06:14:15.37 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 | [90f 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [8de 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +orderer.example.com | [682 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [921 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org1.example.com | [8f4 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [910 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [683 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [8df 01-13 06:14:54.28 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 | [922 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [8f5 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [684 01-13 06:14:15.37 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 +peer0.org2.example.com | [911 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [8e0 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +orderer.example.com | [685 01-13 06:14:15.37 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 +peer0.org1.example.com | [923 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [8f6 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [912 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [8e1 01-13 06:14:54.28 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 | [913 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [686 01-13 06:14:15.37 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 +peer0.org1.example.com | [924 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422b4e9b0, header 0xc421ec97d0 +peer1.org1.example.com | [8f7 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [914 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [687 01-13 06:14:15.37 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 +peer1.org2.example.com | [8e2 01-13 06:14:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [925 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer1.org1.example.com | [8f8 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [915 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [8e3 01-13 06:14:54.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)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +orderer.example.com | [688 01-13 06:14:15.37 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 +peer0.org1.example.com | [926 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 +peer1.org1.example.com | [8f9 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [916 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [689 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [8e4 01-13 06:14:54.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)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [927 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +peer0.org2.example.com | [917 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [8fa 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [8e5 01-13 06:14:54.29 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 | [928 01-13 06:14:31.19 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 | [918 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [8fb 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [68a 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +peer1.org2.example.com | [8e6 01-13 06:14:54.29 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 | [929 01-13 06:14:31.19 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 = [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +peer0.org2.example.com | [919 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [8fc 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [68b 01-13 06:14:15.37 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 | [91a 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [92a 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel +peer1.org2.example.com | [8e7 01-13 06:14:54.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 [6] with [1] transactions +peer1.org1.example.com | [8fd 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [68c 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [91b 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [92b 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel version: 1.1.0 +peer1.org1.example.com | [8fe 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [8e8 01-13 06:14:54.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 [6] +orderer.example.com | [68d 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [92c 01-13 06:14:31.19 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.1.0,txid=119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701,syscc=true,proposal=0xc422b4e9b0,canname=qscc:1.1.0 +peer0.org2.example.com | [91c 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [8ff 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [68e 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org2.example.com | [8e9 01-13 06:14:54.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [91d 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [92d 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org1.example.com | [900 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [68f 01-13 06:14:15.37 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 | [91e 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [92e 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [901 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [690 01-13 06:14:15.37 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 | [691 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +peer0.org2.example.com | [91f 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [920 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [92f 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [692 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [8ea 01-13 06:14:54.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 +peer1.org1.example.com | [902 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [921 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [930 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [8eb 01-13 06:14:54.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [903 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [693 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org2.example.com | [8ec 01-13 06:14:54.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [922 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [923 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [924 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer1.org1.example.com | [904 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [931 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [694 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +peer1.org1.example.com | [905 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [8ed 01-13 06:14:54.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [932 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [925 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer1.org1.example.com | [906 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [8ee 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [695 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +peer0.org2.example.com | [926 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [907 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [8ef 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [933 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [696 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011cf20 gate 1515824055376435069 evaluation starts +peer1.org2.example.com | [8f0 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [8f1 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [8f2 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [908 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [934 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Move state message TRANSACTION +peer0.org2.example.com | [927 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [8f3 01-13 06:14:54.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [935 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [697 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [928 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [936 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [909 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [698 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [929 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [937 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]sending state message TRANSACTION +peer0.org1.example.com | [938 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Received message TRANSACTION from shim +peer0.org1.example.com | [939 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [8f4 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] +peer0.org2.example.com | [92a 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [90a 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [699 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +peer0.org1.example.com | [93a 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [119ef019]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [8f5 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] +peer0.org2.example.com | [92b 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [90b 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org1.example.com | [93b 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [69a 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 principal matched by identity 0 +peer1.org2.example.com | [8f6 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [92c 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [90c 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org1.example.com | [93c 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Transaction completed. Sending COMPLETED +orderer.example.com | [69b 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e5 7b 2f 8b 7e 3e 73 76 bf ba 28 ee ae 4d ae f5 |.{/.~>sv..(..M..| +peer1.org2.example.com | [8f7 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [93d 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Move state message COMPLETED +peer1.org1.example.com | [90d 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [92d 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | 00000010 de 7a 8d 26 cd 82 48 cc 62 0c 52 56 d0 d1 9f 36 |.z.&..H.b.RV...6| +peer1.org2.example.com | [8f8 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423fcfcc0 env 0xc423ff0ae0 txn 0 +peer0.org1.example.com | [93e 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [92e 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [90e 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [93f 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]send state message COMPLETED +peer0.org2.example.com | [92f 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [69c 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f 8a a6 39 ab 13 67 10 18 5e f2 30 |0D. ...9..g..^.0| +peer0.org1.example.com | [940 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Received message COMPLETED from shim +peer1.org1.example.com | [90f 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org2.example.com | [930 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [8f9 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423ff0ae0 +peer0.org1.example.com | [941 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [942 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [943 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701, channelID:businesschannel +peer0.org1.example.com | [944 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [945 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [946 01-13 06:14:31.20 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 +orderer.example.com | 00000010 de db b5 c2 60 7b 1d 2f b5 bc 6c aa cc 9c 69 1d |....`{./..l...i.| +orderer.example.com | 00000020 38 30 c9 a4 02 20 04 c1 b5 8b 6f c7 d1 f6 c3 42 |80... ....o....B| +orderer.example.com | 00000030 88 aa 66 9c c6 ca f4 5b cf 83 b1 72 12 9f fd 16 |..f....[...r....| +orderer.example.com | 00000040 d4 03 01 7c b2 55 |...|.U| +peer0.org1.example.com | [947 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +peer0.org1.example.com | [948 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [949 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel chaincode id: name:"qscc" +peer1.org1.example.com | [910 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [69d 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [931 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [8fa 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer0.org1.example.com | [94a 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer1.org1.example.com | [911 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [8fb 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [932 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [94b 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [94c 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701,syscc=true,proposal=0xc422b4e9b0,canname=escc:1.1.0 +peer0.org1.example.com | [94d 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer1.org1.example.com | [912 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [69e 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011cf20 gate 1515824055376435069 evaluation succeeds +peer0.org2.example.com | [933 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [8fc 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [94e 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [913 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [69f 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [94f 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [8fd 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer1.org2.example.com | [8fe 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [934 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [935 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [8ff 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [914 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [6a0 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [950 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [936 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [915 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [900 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42407ea80, header channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer0.org1.example.com | [951 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [937 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [6a1 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [901 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [916 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [952 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [938 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [917 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [902 01-13 06:15:02.10 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 | [953 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [918 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [6a2 01-13 06:14:15.37 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 | [939 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [903 01-13 06:15:02.10 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 | [919 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [954 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Move state message TRANSACTION +orderer.example.com | [6a3 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [93a 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [91a 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [904 01-13 06:15:02.10 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 | [955 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [6a4 01-13 06:14:15.38 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 | [91b 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [956 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [93b 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [91c 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [6a5 01-13 06:14:15.38 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 | [957 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]sending state message TRANSACTION +peer0.org2.example.com | [93c 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [905 01-13 06:15:02.10 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 | [91d 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [6a6 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [93d 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer1.org1.example.com | [91e 01-13 06:15:02.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [958 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Received message TRANSACTION from shim +peer1.org2.example.com | [906 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [6a7 01-13 06:14:15.38 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 | [93e 01-13 06:15:02.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer1.org1.example.com | [91f 01-13 06:15:02.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [959 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [6a8 01-13 06:14:15.38 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 | [907 01-13 06:15:02.10 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 | [93f 01-13 06:15:02.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org1.example.com | [920 01-13 06:15:02.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [95a 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [119ef019]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [6a9 01-13 06:14:15.38 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 | [908 01-13 06:15:02.10 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 | [921 01-13 06:15:02.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [940 01-13 06:15:02.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +orderer.example.com | [6aa 01-13 06:14:15.38 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 | [909 01-13 06:15:02.10 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 | [922 01-13 06:15:02.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 +peer0.org2.example.com | [941 01-13 06:15:02.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org2.example.com | [90a 01-13 06:15:02.10 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 | [95b 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [6ab 01-13 06:14:15.38 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 | [923 01-13 06:15:02.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [90b 01-13 06:15:02.10 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 | [90c 01-13 06:15:02.10 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 | [90d 01-13 06:15:02.10 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 | [924 01-13 06:15:02.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 [] +peer0.org2.example.com | [942 01-13 06:15:02.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [95c 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [90e 01-13 06:15:02.10 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 +orderer.example.com | [6ac 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [6ad 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [6ae 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [943 01-13 06:15:02.34 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [944 01-13 06:15:02.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [925 01-13 06:15:02.44 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 +orderer.example.com | [6af 01-13 06:14:15.38 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 | [90f 01-13 06:15:02.10 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 | [95d 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [945 01-13 06:15:02.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [926 01-13 06:15:02.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [6b0 01-13 06:14:15.38 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 | [946 01-13 06:15:02.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [910 01-13 06:15:02.11 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 | [927 01-13 06:15:02.44 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 | [947 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [95e 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Move state message COMPLETED +peer1.org2.example.com | [911 01-13 06:15:02.11 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 +orderer.example.com | [6b1 01-13 06:14:15.38 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 | [95f 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [948 01-13 06:15:02.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [928 01-13 06:15:02.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 | [912 01-13 06:15:02.11 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 | [913 01-13 06:15:02.11 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 | [949 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [94a 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [929 01-13 06:15:02.44 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 | [914 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [6b2 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [960 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]send state message COMPLETED +peer0.org2.example.com | [94b 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [915 01-13 06:15:02.11 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 | [92a 01-13 06:15:02.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 [7] +orderer.example.com | [6b3 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [94c 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [961 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Received message COMPLETED from shim +orderer.example.com | [6b4 01-13 06:14:15.38 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 | [6b5 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [6b6 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [94d 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [962 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [963 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [964 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701, channelID:businesschannel +orderer.example.com | [6b7 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [94e 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [94f 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [92b 01-13 06:15:02.45 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{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +peer0.org1.example.com | [965 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [679 01-13 06:14:15.37 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.8:50090 +peer1.org2.example.com | [916 01-13 06:15:02.11 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 | [950 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | txId= locPointer=offset=71, bytesLength=19402 +orderer.example.com | [6b8 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [966 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [951 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | ] +peer1.org2.example.com | [917 01-13 06:15:02.11 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 | [967 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [952 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [92c 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60377, bytesLength=19402] for tx ID: [] to index +peer1.org2.example.com | [918 01-13 06:15:02.11 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 | [919 01-13 06:15:02.11 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 | [953 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [6b9 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [6ba 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [91a 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer1.org1.example.com | [92d 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60377, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [954 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [968 01-13 06:14:31.21 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 [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +orderer.example.com | [6bb 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [91b 01-13 06:15:02.11 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 | [955 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [6bc 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [6be 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50090, hangup +peer1.org1.example.com | [92e 01-13 06:15:02.45 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=[81574], isChainEmpty=[false], lastBlockNumber=[7] +peer1.org2.example.com | [91c 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer1.org2.example.com | [91d 01-13 06:15:02.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org2.example.com | [956 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [6bf 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [6bd 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [91e 01-13 06:15:02.11 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 | [92f 01-13 06:15:02.45 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 | [957 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [969 01-13 06:14:31.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53692) +orderer.example.com | [6c1 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [91f 01-13 06:15:02.11 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 | [930 01-13 06:15:02.45 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 | [920 01-13 06:15:02.12 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 | [6c2 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [958 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [96a 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org1.example.com | [96b 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer1.org1.example.com | [931 01-13 06:15:02.45 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 | [921 01-13 06:15:02.12 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 | [922 01-13 06:15:02.12 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 | [6c0 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50088: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [96c 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [959 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [923 01-13 06:15:02.12 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 | [6c4 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org1.example.com | [932 01-13 06:15:02.45 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 | [96d 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [95a 01-13 06:15:02.39 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 | [924 01-13 06:15:02.12 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 | [933 01-13 06:15:02.45 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 | [6c3 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [95b 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [934 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [925 01-13 06:15:02.12 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 | [96e 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422bbf4a0 env 0xc422bf31d0 txn 0 +orderer.example.com | [6c5 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [935 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[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 | [95c 01-13 06:15:02.39 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 | [926 01-13 06:15:02.12 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 | [936 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [96f 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422bf31d0 +peer1.org2.example.com | [927 01-13 06:15:02.12 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 | [95d 01-13 06:15:02.39 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 +orderer.example.com | [6c6 01-13 06:14:15.39 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 | [937 01-13 06:15:02.45 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 | [970 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +peer1.org2.example.com | [928 01-13 06:15:02.12 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 | [95e 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [6c7 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [971 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [938 01-13 06:15:02.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 [7] with [1] transactions +peer1.org2.example.com | [929 01-13 06:15:02.12 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 | [95f 01-13 06:15:02.39 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 | [939 01-13 06:15:02.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.org1.example.com | [972 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [6c8 01-13 06:14:15.39 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 | [6c9 01-13 06:14:15.39 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 | [6ca 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [92a 01-13 06:15:02.12 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 | [960 01-13 06:15:02.39 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 | [973 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org1.example.com | [93a 01-13 06:15:02.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 [7] +peer1.org2.example.com | [92b 01-13 06:15:02.12 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 | [6cb 01-13 06:14:15.39 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 | [974 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [92c 01-13 06:15:02.12 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 | [93b 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [6cc 01-13 06:14:15.39 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.org2.example.com | [961 01-13 06:15:02.39 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 | [92d 01-13 06:15:02.12 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 | [92e 01-13 06:15:02.12 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 | [975 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [93c 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [92f 01-13 06:15:02.13 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 | [962 01-13 06:15:02.39 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 | [930 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [976 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421836000, header channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [931 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [963 01-13 06:15:02.39 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{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +peer1.org2.example.com | [932 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [93d 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [93e 01-13 06:15:02.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [933 01-13 06:15:02.14 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 | txId= locPointer=offset=71, bytesLength=19402 +peer0.org1.example.com | [977 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [93f 01-13 06:15:02.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [934 01-13 06:15:02.14 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 | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer0.org1.example.com | [978 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | ] +peer1.org2.example.com | [935 01-13 06:15:02.14 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 | [979 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [936 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [940 01-13 06:15:02.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [964 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60377, bytesLength=19402] for tx ID: [] to index +peer1.org2.example.com | [937 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [941 01-13 06:15:02.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [97a 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [938 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [965 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60377, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +peer0.org1.example.com | [97b 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer1.org2.example.com | [939 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [966 01-13 06:15:02.40 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=[81574], isChainEmpty=[false], lastBlockNumber=[7] +peer1.org1.example.com | [942 01-13 06:15:02.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +peer1.org2.example.com | [93a 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [97c 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [943 01-13 06:15:02.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [93b 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [93c 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [967 01-13 06:15:02.40 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 | [97d 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422bf31d0 envbytes 0xc422bd2000 orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org1.example.com | [944 01-13 06:15:02.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [93d 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [97e 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422bd2000 orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer0.org2.example.com | [968 01-13 06:15:02.40 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 | [97f 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [93e 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer0.org2.example.com | [969 01-13 06:15:02.40 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 | [980 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +peer1.org2.example.com | [93f 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [96a 01-13 06:15:02.40 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 | [981 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=ead20c36-6f59-4017-a813-354e7b2f80f3,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer1.org2.example.com | [940 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer0.org1.example.com | [982 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 chaindID businesschannel +peer0.org2.example.com | [96b 01-13 06:15:02.40 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 | -----END CERTIFICATE----- -orderer.example.com | [66b 01-05 06:36:30.45 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:44100 -orderer.example.com | [6bb 01-05 06:36:30.46 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 | [941 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [96c 01-13 06:15:02.40 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 | [6cd 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [983 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [942 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [96d 01-13 06:15:02.40 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 | [984 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [943 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [985 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer1.org2.example.com | [944 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer0.org1.example.com | [986 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ead20c36]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [96e 01-13 06:15:02.40 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [987 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [96f 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [945 01-13 06:15:02.14 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 | [988 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ead20c36]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [970 01-13 06:15:02.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 [7] with [1] transactions orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer0.org2.example.com | [971 01-13 06:15:02.40 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 | [946 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [972 01-13 06:15:02.40 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 | [989 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ead20c36]Move state message TRANSACTION orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer1.org2.example.com | [947 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [973 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org2.example.com | [974 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer1.org2.example.com | [948 01-13 06:15:02.14 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 | [98a 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ead20c36]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6bc 01-05 06:36:30.46 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 | [6bd 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [6be 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6bf 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6c0 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6c1 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6c2 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6c3 01-05 06:36:30.46 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 | [6c4 01-05 06:36:30.46 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 | [6c5 01-05 06:36:30.46 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 | [6c6 01-05 06:36:30.46 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 | [6c7 01-05 06:36:30.46 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 | [6c8 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.5:7050->172.18.0.7:44100: read: connection reset by peer -orderer.example.com | [6c9 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44100: rpc error: code = Canceled desc = context canceled -orderer.example.com | [6ca 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [6cb 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44098: rpc error: code = Canceled desc = context canceled -orderer.example.com | [6cc 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [9e4 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [6cd 01-05 06:36:30.46 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 | [9e5 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218b6230, header 0xc422483500 -peer0.org1.example.com | [9e6 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [9e7 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 -peer0.org1.example.com | [9e8 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -peer0.org1.example.com | [9e9 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -orderer.example.com | vA2BLfriqQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6ce 01-05 06:36:30.46 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [9ea 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [9eb 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [9ec 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [9ed 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900,syscc=true,proposal=0xc4218b6230,canname=lscc:1.1.0 -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org1.example.com | [9ee 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org1.example.com | [9ef 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [9f0 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [9f1 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org1.example.com | [9f2 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org1.example.com | [9f3 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org1.example.com | [9f4 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [9f5 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Move state message TRANSACTION -peer0.org1.example.com | [9f6 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [9f7 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [9f8 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]sending state message TRANSACTION -peer0.org1.example.com | [9f9 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message TRANSACTION from shim -orderer.example.com | [6cf 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [9fa 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [6d0 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6d1 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [9fb 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [970638c2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [9fc 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [970638c2]Sending GET_STATE_BY_RANGE -peer0.org1.example.com | [9fd 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message GET_STATE_BY_RANGE from shim -orderer.example.com | [6d2 01-05 06:36:30.46 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 | [9fe 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -orderer.example.com | [6d3 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [9ff 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -orderer.example.com | [6d4 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [a00 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -orderer.example.com | [6d5 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [a01 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [6d6 01-05 06:36:30.46 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.org1.example.com | [a02 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -orderer.example.com | [6d7 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [a03 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -orderer.example.com | [6d8 01-05 06:36:30.46 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 | [6d9 01-05 06:36:30.46 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 | [a04 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -peer0.org1.example.com | [a05 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [970638c2]handleGetStateByRange serial send RESPONSE -peer0.org1.example.com | [a06 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message RESPONSE from shim +peer0.org2.example.com | [975 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [949 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6ce 01-13 06:14:15.39 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.org1.example.com | [98b 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [976 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [94a 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6cf 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [6d0 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [98c 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ead20c36]sending state message TRANSACTION +peer0.org2.example.com | [977 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [94b 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6d1 01-13 06:14:15.39 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 | [978 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [98d 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]Received message TRANSACTION from shim +peer1.org2.example.com | [94c 01-13 06:15:02.15 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 | [98e 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ead20c36]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [979 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [94d 01-13 06:15:02.15 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 | [98f 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ead20c36]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [6d2 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [990 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [97a 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [94e 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [6d3 01-13 06:14:15.39 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 | [991 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [97b 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [6d4 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [992 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [97c 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [94f 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [993 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [6d5 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [950 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6d6 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [994 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [951 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [995 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org2.example.com | [952 01-13 06:15:02.15 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 | [996 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [953 01-13 06:15:02.15 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 | [997 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [187b141a-16ca-4ff4-adca-02a631a27b7d] +orderer.example.com | [6d7 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [954 01-13 06:15:02.15 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 | [998 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [6d8 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [955 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6d9 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [999 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [187b141a-16ca-4ff4-adca-02a631a27b7d] +orderer.example.com | [6da 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [956 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [a07 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [a08 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]before send orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [a09 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]after send +peer0.org1.example.com | [99a 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [957 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [a0a 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [970638c2]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [a0b 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [970638c2]Received RESPONSE. Successfully got range orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [a0c 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [970638c2]Sending QUERY_STATE_CLOSE orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [a0d 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message QUERY_STATE_CLOSE from shim +peer0.org1.example.com | [99b 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc420396540)} orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [a0e 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -peer0.org1.example.com | [a0f 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +peer1.org2.example.com | [958 01-13 06:15:02.15 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [a10 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +peer0.org1.example.com | [99c 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer0.org1.example.com | [a11 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [a12 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [a13 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [970638c2]handleQueryStateClose serial send RESPONSE -peer0.org1.example.com | [a14 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message RESPONSE from shim +peer1.org2.example.com | [959 01-13 06:15:02.15 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 | [99d 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]Transaction completed. Sending COMPLETED orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +peer0.org1.example.com | [99e 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]Move state message COMPLETED +peer1.org2.example.com | [95a 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org1.example.com | [a15 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [99f 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ead20c36]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [95b 01-13 06:15:02.16 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 | [9a0 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]send state message COMPLETED +peer1.org2.example.com | [95c 01-13 06:15:02.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 orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy orderer.example.com | oQmWQsjpiQ== -peer0.org1.example.com | [a16 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]before send orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6da 01-05 06:36:30.46 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 | [a17 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]after send +peer0.org1.example.com | [9a1 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ead20c36]Received message COMPLETED from shim +orderer.example.com | [6db 01-13 06:14:15.39 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [a18 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [970638c2]Received RESPONSE, communicated (state:ready) orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [a19 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [970638c2]Received RESPONSE. Successfully got range orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer0.org1.example.com | [9a2 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ead20c36]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [a1a 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [a1b 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Move state message COMPLETED +peer1.org2.example.com | [95d 01-13 06:15:02.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 orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [a1c 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a1d 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]send state message COMPLETED orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org1.example.com | [9a3 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ead20c36-6f59-4017-a813-354e7b2f80f3]HandleMessage- COMPLETED. Notify orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [a1e 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message COMPLETED from shim orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org1.example.com | [a1f 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [95e 01-13 06:15:02.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 +peer0.org1.example.com | [9a4 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ead20c36-6f59-4017-a813-354e7b2f80f3, channelID:businesschannel orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer1.org2.example.com | [95f 01-13 06:15:02.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 orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [a20 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900]HandleMessage- COMPLETED. Notify orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6db 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [a21 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900, channelID:businesschannel -orderer.example.com | [6dc 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [a22 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [a23 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [6dd 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [a24 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [6de 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer0.org1.example.com | [a25 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -orderer.example.com | [6df 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org1.example.com | [a26 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [6e0 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [6e1 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org1.example.com | [a27 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [6e2 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org1.example.com | [a28 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | [6e3 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [a29 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel version: 1.1.0 -orderer.example.com | [6e4 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [6e5 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [6e6 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer0.org1.example.com | [a2a 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900,syscc=true,proposal=0xc4218b6230,canname=escc:1.1.0 -orderer.example.com | [6e7 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [a2b 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [a2c 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [a2d 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [a2e 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [a2f 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [a30 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [6e8 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [a31 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [a32 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Move state message TRANSACTION -peer0.org1.example.com | [a33 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [a34 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [a35 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]sending state message TRANSACTION -peer0.org1.example.com | [a36 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message TRANSACTION from shim -orderer.example.com | [6e9 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [a37 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [a38 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [970638c2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [a39 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [a3a 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [6ea 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org1.example.com | [a3b 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [a3c 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Move state message COMPLETED -orderer.example.com | [6eb 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [a3d 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [6ec 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org1.example.com | [a3e 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]send state message COMPLETED -peer0.org1.example.com | [a3f 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message COMPLETED from shim -peer0.org1.example.com | [a40 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [a41 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900]HandleMessage- COMPLETED. Notify -orderer.example.com | [6ed 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [a42 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900, channelID:businesschannel -peer0.org1.example.com | [a43 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [a44 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [6ee 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [a45 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [6ef 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [a46 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -orderer.example.com | [6f0 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [a47 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37214) -orderer.example.com | [6f1 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [6f2 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [a48 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | [6f3 01-05 06:36:30.47 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 | [a49 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | [6f4 01-05 06:36:30.47 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 -peer0.org1.example.com | [a4a 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [6f5 01-05 06:36:30.47 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 | [a4b 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [6f6 01-05 06:36:30.47 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 -peer0.org1.example.com | [a4c 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421b70980 env 0xc420327020 txn 0 -orderer.example.com | [6f7 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [a4d 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420327020 -orderer.example.com | [6f8 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [a4e 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -orderer.example.com | [6f9 01-05 06:36:30.47 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 | [6fa 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [a4f 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [6fb 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [a50 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [6fc 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [a51 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | [6fd 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [a52 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [a53 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [6fe 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [a54 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c33800, header channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -orderer.example.com | [6ff 01-05 06:36:30.47 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 | [700 01-05 06:36:30.47 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 | [701 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [a55 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [702 01-05 06:36:30.47 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 | [a56 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [703 01-05 06:36:30.47 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 | [704 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [a57 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [705 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [a58 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [706 01-05 06:36:30.47 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 | [707 01-05 06:36:30.47 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 | [a59 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | [708 01-05 06:36:30.47 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 | [a5a 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [709 01-05 06:36:30.47 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 | [a5b 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc420327020 envbytes 0xc422f48800 -orderer.example.com | [70a 01-05 06:36:30.47 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 | [a5c 01-05 06:37:16.33 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 = [7b875325-ee4f-4973-bc47-e57276a77bb2] -orderer.example.com | [70b 01-05 06:36:30.47 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 | [70c 01-05 06:36:30.47 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 | [a5d 01-05 06:37:16.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 -orderer.example.com | [70d 01-05 06:36:30.47 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 | [a5e 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [7b875325-ee4f-4973-bc47-e57276a77bb2] -orderer.example.com | [70e 01-05 06:36:30.47 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 | [a5f 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f48800 -orderer.example.com | [70f 01-05 06:36:30.47 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 | [a60 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [a61 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -orderer.example.com | [710 01-05 06:36:30.47 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 | [a62 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=48bcee46-86dc-4e95-990c-894684d66476,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [a63 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 chaindID businesschannel -orderer.example.com | [711 01-05 06:36:30.47 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 | [712 01-05 06:36:30.47 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 | [a64 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | [713 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [a65 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [714 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [a66 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | [715 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [a67 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48bcee46]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [716 01-05 06:36:30.47 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 | [717 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [a68 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [a69 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48bcee46]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [a6a 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48bcee46]Move state message TRANSACTION -orderer.example.com | [718 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [a6b 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48bcee46]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [a6c 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [719 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [a6d 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48bcee46]sending state message TRANSACTION -orderer.example.com | [71a 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [a6e 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]Received message TRANSACTION from shim -orderer.example.com | [71b 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [71c 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org1.example.com | [a6f 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48bcee46]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [a70 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [48bcee46]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [a71 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [71d 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [71e 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [a72 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [71f 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [720 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [721 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [722 01-05 06:36:30.47 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 | [723 01-05 06:36:30.47 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 | [724 01-05 06:36:30.47 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 | [725 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [726 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [727 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [728 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [729 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -peer0.org1.example.com | [a73 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [72a 01-05 06:36:30.47 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 | [72b 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [a74 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]Transaction completed. Sending COMPLETED -orderer.example.com | [72c 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [72d 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [a75 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]Move state message COMPLETED -orderer.example.com | [72e 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [72f 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...96E4B9E007E7FABF3D5B9C9FC89473A0 -orderer.example.com | [730 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: AD447623D1C65B3BC4349B25E855349D1576586E0492D5ECAD219CA3EFE71633 -peer0.org1.example.com | [a76 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48bcee46]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [731 01-05 06:36:30.48 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 | [732 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [733 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [734 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -peer0.org1.example.com | [a77 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]send state message COMPLETED -orderer.example.com | [735 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [736 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [a78 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48bcee46]Received message COMPLETED from shim -orderer.example.com | [737 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...96E4B9E007E7FABF3D5B9C9FC89473A0 -peer0.org1.example.com | [a79 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48bcee46]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [738 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 7445A4861CC2767571622BD537281D03FD05281F858B1872C6E0C589D4B7F321 -peer0.org1.example.com | [a7a 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48bcee46-86dc-4e95-990c-894684d66476]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [a7b 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48bcee46-86dc-4e95-990c-894684d66476, channelID:businesschannel -orderer.example.com | [739 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= -peer0.org1.example.com | [a7c 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [a7d 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] +orderer.example.com | [6dc 01-13 06:14:15.39 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 | [6dd 01-13 06:14:15.39 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 | [960 01-13 06:15:02.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 +orderer.example.com | [6de 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6df 01-13 06:14:15.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 | [6e0 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6e1 01-13 06:14:15.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 | [6e2 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [961 01-13 06:15:02.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 +peer0.org1.example.com | [9a5 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [6e3 01-13 06:14:15.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 +peer0.org1.example.com | [9a6 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +orderer.example.com | [6e4 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [962 01-13 06:15:02.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 +orderer.example.com | [6e5 01-13 06:14:15.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 +peer0.org1.example.com | [9a7 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422bd2000 +peer1.org2.example.com | [963 01-13 06:15:02.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 +orderer.example.com | [6e6 01-13 06:14:15.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----- +peer1.org2.example.com | [964 01-13 06:15:02.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 +peer0.org1.example.com | [9a8 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422bf31d0 envbytes 0xc422bd2000 +orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [9a9 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422bbf4a0 env 0xc422bf31d0 txn 0 +peer1.org2.example.com | [965 01-13 06:15:02.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 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [9aa 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [966 01-13 06:15:02.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 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [9ab 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [9ac 01-13 06:14:31.82 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 | [967 01-13 06:15:02.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 +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer0.org1.example.com | [9ad 01-13 06:14:31.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 | [968 01-13 06:15:02.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 +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [969 01-13 06:15:02.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 +peer0.org1.example.com | [9ae 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [96a 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [9af 01-13 06:14:31.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 | [96b 01-13 06:15:02.16 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 | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer1.org2.example.com | [96c 01-13 06:15:02.16 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 | [9b0 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [96d 01-13 06:15:02.16 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 | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org1.example.com | [9b1 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [96e 01-13 06:15:02.16 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 | [96f 01-13 06:15:02.16 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 | [9b2 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer0.org1.example.com | [9b3 01-13 06:14:31.82 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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] marked as valid by state validator +orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer0.org1.example.com | [9b4 01-13 06:14:31.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 | [970 01-13 06:15:02.16 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 | [9b5 01-13 06:14:31.82 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 | [9b6 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer0.org1.example.com | [9b7 01-13 06:14:31.82 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 | [9b8 01-13 06:14:31.82 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 | [9b9 01-13 06:14:31.82 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{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +peer1.org2.example.com | [971 01-13 06:15:02.16 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 | txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 +orderer.example.com | vA2BLfriqQ== +peer1.org2.example.com | [972 01-13 06:15:02.16 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 | ] +peer0.org1.example.com | [9ba 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to index +peer1.org2.example.com | [973 01-13 06:15:02.17 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 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [9bb 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx number:[0] ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to blockNumTranNum index +peer1.org2.example.com | [974 01-13 06:15:02.17 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 | [9bc 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [9bd 01-13 06:14:31.83 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 | [9be 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +orderer.example.com | [6e7 01-13 06:14:15.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----- +peer0.org1.example.com | [9bf 01-13 06:14:31.83 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 | [975 01-13 06:15:02.17 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 | [9c0 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [9c1 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [9c2 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [9c3 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [9c4 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org2.example.com | [976 01-13 06:15:02.17 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 | [9c5 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org2.example.com | [977 01-13 06:15:02.17 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 | [9c6 01-13 06:14:31.84 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [978 01-13 06:15:02.17 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [979 01-13 06:15:02.17 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 | [9c7 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | [97a 01-13 06:15:02.17 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 | [9c8 01-13 06:14:31.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 [3] with [1] transactions +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer1.org2.example.com | [97b 01-13 06:15:02.17 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 | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org1.example.com | [9c9 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [97c 01-13 06:15:02.17 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +peer0.org1.example.com | [9ca 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [97d 01-13 06:15:02.17 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 | [9cb 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +peer1.org2.example.com | [97e 01-13 06:15:02.17 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 | [9cc 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [97f 01-13 06:15:02.17 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 | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer1.org2.example.com | [980 01-13 06:15:02.17 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 | [9cd 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org1.example.com | [9ce 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [981 01-13 06:15:02.17 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 | R0L5Jr8878bLU6IcEA== +peer0.org1.example.com | [9cf 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [9d0 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [982 01-13 06:15:02.17 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 | -----END CERTIFICATE----- +peer0.org1.example.com | [9d1 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [983 01-13 06:15:02.17 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 | [6e8 01-13 06:14:15.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 +peer0.org1.example.com | [9d2 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [6e9 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org2.example.com | [984 01-13 06:15:02.17 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 | [9d3 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [6ea 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [985 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [6eb 01-13 06:14:15.40 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 | [986 01-13 06:15:02.17 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 | [9d4 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [6ec 01-13 06:14:15.40 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 | [987 01-13 06:15:02.17 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 | [9d5 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53694 +peer1.org2.example.com | [988 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [9d6 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422e08f90 +orderer.example.com | [6ed 01-13 06:14:15.40 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 | [989 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [6ee 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org1.example.com | [9d7 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [9d8 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [9d9 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [6ef 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer1.org2.example.com | [98a 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [6f0 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org1.example.com | [9da 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [98b 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [6f1 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org1.example.com | [9db 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [6f2 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [9dc 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422c47ef0, header 0xc422e092f0 +peer1.org2.example.com | [98c 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [6f3 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org1.example.com | [9dd 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [6f4 01-13 06:14:15.40 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 | [98d 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [6f5 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer1.org2.example.com | [98e 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org1.example.com | [9de 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 +orderer.example.com | [6f6 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org1.example.com | [9df 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +orderer.example.com | [6f7 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [9e0 01-13 06:14:32.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 +orderer.example.com | [6f8 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org1.example.com | [9e1 01-13 06:14:32.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 = [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +peer1.org2.example.com | [98f 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [9e2 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel +orderer.example.com | [6f9 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org1.example.com | [9e3 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [990 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [6fa 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer0.org1.example.com | [9e4 01-13 06:14:32.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=qscc,version=1.1.0,txid=826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753,syscc=true,proposal=0xc422c47ef0,canname=qscc:1.1.0 +peer1.org2.example.com | [991 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | [6fb 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [992 01-13 06:15:02.25 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 | [9e5 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer1.org2.example.com | [993 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | [6fc 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [9e6 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [6fd 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [9e7 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [6fe 01-13 06:14:15.40 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 | [994 01-13 06:15:02.25 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 | [9e8 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [9e9 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [6ff 01-13 06:14:15.40 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 | [995 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [9ea 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [996 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423fcfcc0 env 0xc423ff0ae0 txn 0 +orderer.example.com | [700 01-13 06:14:15.40 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 | [997 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | [701 01-13 06:14:15.40 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 | [998 01-13 06:15:02.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [9eb 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [702 01-13 06:14:15.40 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 | [999 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | [703 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [9ec 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Move state message TRANSACTION +peer1.org2.example.com | [99a 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +orderer.example.com | [704 01-13 06:14:15.40 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 +peer1.org2.example.com | [99b 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [705 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [9ed 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [706 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [9ee 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [99c 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +orderer.example.com | [707 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [9ef 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]sending state message TRANSACTION +peer1.org2.example.com | [99d 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [708 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [9f0 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Received message TRANSACTION from shim +peer1.org2.example.com | [99e 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +orderer.example.com | [709 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [99f 01-13 06:15:02.26 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 | [9f1 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [70a 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [9a0 01-13 06:15:02.26 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 | [9f2 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [826ee634]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [9a1 01-13 06:15:02.26 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 | [70b 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [9a2 01-13 06:15:02.26 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 | [9f3 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer1.org2.example.com | [9a3 01-13 06:15:02.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [70c 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [9f4 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [9f5 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Move state message COMPLETED +peer1.org2.example.com | [9a4 01-13 06:15:02.26 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 | [9a5 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [9a6 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [70d 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [9a7 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [9f6 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [70e 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [9a8 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [70f 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [9a9 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [9f7 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]send state message COMPLETED +peer1.org2.example.com | [9aa 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [710 01-13 06:14:15.40 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 | [9f8 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Received message COMPLETED from shim +peer1.org2.example.com | [9ab 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [711 01-13 06:14:15.40 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 | [9f9 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [9ac 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [9ad 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [9ae 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [9af 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [9b0 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [712 01-13 06:14:15.40 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 | [9fa 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [9b1 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org2.example.com | [9b2 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [9fb 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753, channelID:businesschannel +peer1.org2.example.com | [9b3 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [9b4 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [713 01-13 06:14:15.40 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 | [9fc 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [9b5 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [714 01-13 06:14:15.40 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 +peer1.org2.example.com | [9b6 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [9fd 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [715 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [9b7 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +orderer.example.com | [716 01-13 06:14:15.40 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 | [717 01-13 06:14:15.40 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 +peer0.org1.example.com | [9fe 01-13 06:14:32.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 +orderer.example.com | [718 01-13 06:14:15.40 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 +peer1.org2.example.com | [9b8 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer0.org1.example.com | [9ff 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +peer1.org2.example.com | [9b9 01-13 06:15:02.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [a00 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [719 01-13 06:14:15.40 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 | [a01 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [71a 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [a02 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer1.org2.example.com | [9ba 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [71b 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [9bb 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [a03 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel version: 1.1.0 +orderer.example.com | [71c 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [9bc 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [71d 01-13 06:14:15.40 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.org2.example.com | [9bd 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [a04 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753,syscc=true,proposal=0xc422c47ef0,canname=escc:1.1.0 +orderer.example.com | [71e 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [9be 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [a05 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [71f 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [9bf 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [720 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [9c0 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [721 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [a06 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [9c1 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [a07 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer1.org2.example.com | [9c2 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [722 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [9c3 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [a08 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [a09 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [9c4 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [723 01-13 06:14:15.41 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 | [724 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [a0a 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [725 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [9c5 01-13 06:15:02.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [726 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [a0b 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [727 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [9c6 01-13 06:15:02.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [a0c 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Move state message TRANSACTION +peer1.org2.example.com | [9c7 01-13 06:15:02.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [a0d 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [728 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [a0e 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [9c8 01-13 06:15:02.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [729 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [a0f 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]sending state message TRANSACTION +orderer.example.com | [72a 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [a10 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Received message TRANSACTION from shim +orderer.example.com | [72b 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [9c9 01-13 06:15:02.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [a11 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [72c 01-13 06:14:15.41 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 | [9ca 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [a12 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [826ee634]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [9cb 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [72d 01-13 06:14:15.41 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 | [9cc 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [a13 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [72e 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [9cd 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [9ce 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [a14 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [72f 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [9cf 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [a15 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [9d0 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [730 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [9d1 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [731 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [9d2 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [732 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org1.example.com | [a16 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Move state message COMPLETED +peer1.org2.example.com | [9d3 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [733 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [a17 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [734 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [a18 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]send state message COMPLETED +peer1.org2.example.com | [9d4 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [735 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [736 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer0.org1.example.com | [a19 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Received message COMPLETED from shim +peer1.org2.example.com | [9d5 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [a1a 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [737 01-13 06:14:15.41 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 | [738 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [a1b 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753]HandleMessage- COMPLETED. Notify +orderer.example.com | [739 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [9d6 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [a1c 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753, channelID:businesschannel +peer1.org2.example.com | [9d7 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [73a 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [a1d 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [73b 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [9d8 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [9d9 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [a1e 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [73c 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...32AE51C2BFCBEBA40C115E09E3BEA066 +peer1.org2.example.com | [9da 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [a1f 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [73d 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 1A177EAD76794C745AB46E2AF7D126F5F7E67285E60A328BB0D555594839A19E +peer1.org2.example.com | [9db 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [a20 01-13 06:14:32.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 [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +peer1.org2.example.com | [9dc 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [a21 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53694) +orderer.example.com | [73e 01-13 06:14:15.41 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 +peer1.org2.example.com | [9dd 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [a22 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53696 +orderer.example.com | [73f 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [9de 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [740 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [a23 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422fbbe00 +orderer.example.com | [741 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +peer1.org2.example.com | [9df 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [a24 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [742 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [a25 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [9e0 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +orderer.example.com | [743 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [a26 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer1.org2.example.com | [9e1 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer1.org2.example.com | [9e2 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [a27 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [a28 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [744 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...32AE51C2BFCBEBA40C115E09E3BEA066 +peer0.org1.example.com | [a29 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422f83c20, header 0xc42300c180 +peer1.org2.example.com | [9e3 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org1.example.com | [a2a 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [745 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 93FEB5B8B29127B39290E4BEA31CE7F5FCE35D5E81AF9C130094C20DE0EAE0BF +peer0.org1.example.com | [a2b 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 +peer1.org2.example.com | [9e4 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [a2c 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +orderer.example.com | [746 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= +peer1.org2.example.com | [9e5 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [a2d 01-13 06:14:33.32 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 | [9e6 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [a2e 01-13 06:14:33.32 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 = [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] orderer.example.com | txId= locPointer=offset=70, bytesLength=12151 -peer0.org1.example.com | [a7e 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f48800 +peer0.org1.example.com | [a2f 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel +peer1.org2.example.com | [9e7 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [a30 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel version: 1.1.0 orderer.example.com | ] -peer0.org1.example.com | [a7f 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc420327020 envbytes 0xc422f48800 -orderer.example.com | [73a 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40092], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org1.example.com | [a80 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421b70980 env 0xc420327020 txn 0 -peer0.org1.example.com | [a81 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [73b 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -orderer.example.com | [73c 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [a82 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [73d 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.3:40420 -peer0.org1.example.com | [a83 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -orderer.example.com | [73e 01-05 06:36:33.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.3:40420 -peer0.org1.example.com | [a84 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [73f 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [a85 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -orderer.example.com | [740 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [741 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [a86 01-05 06:37:16.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 | [742 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [a87 01-05 06:37:16.37 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 | [a88 01-05 06:37:16.37 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 -orderer.example.com | [743 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer0.org1.example.com | [a89 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -orderer.example.com | [744 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [a8a 01-05 06:37:16.37 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 -orderer.example.com | [745 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a8b 01-05 06:37:16.37 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 | [a31 01-13 06:14:33.32 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.1.0,txid=0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0,syscc=true,proposal=0xc422f83c20,canname=qscc:1.1.0 +peer0.org1.example.com | [a32 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [a33 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [a34 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [747 01-13 06:14:15.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40093], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org2.example.com | [9e8 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [a35 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [9e9 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [a36 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [9ea 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [a37 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [9eb 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [a38 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [9ec 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [9ed 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [9ee 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [9ef 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [9f0 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [a39 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Move state message TRANSACTION +peer1.org2.example.com | [9f1 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [748 01-13 06:14:15.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 +peer1.org2.example.com | [9f2 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [749 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [a3a 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [9f3 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [74a 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.3:51084 +peer1.org2.example.com | [9f4 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [74b 01-13 06:14:16.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.3:51084 +peer1.org2.example.com | [9f5 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [74c 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [a3b 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [9f6 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [74d 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [a3c 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]sending state message TRANSACTION +orderer.example.com | [74e 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org2.example.com | [9f7 01-13 06:15:02.33 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 | [74f 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [750 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [9f8 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | [751 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [a3d 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Received message TRANSACTION from shim +peer1.org2.example.com | [9f9 01-13 06:15:02.33 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 | [752 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [a8c 01-05 06:37:16.37 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 orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [a8d 01-05 06:37:16.37 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} orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [a8e 01-05 06:37:16.37 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 [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] marked as valid by state validator +peer1.org2.example.com | [9fa 01-13 06:15:02.33 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 | [a3e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +peer0.org1.example.com | [a3f 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0b0fabf0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [a8f 01-05 06:37:16.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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [a90 01-05 06:37:16.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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw -peer0.org1.example.com | [a91 01-05 06:37:16.37 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 | [9fb 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... orderer.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD -peer0.org1.example.com | [a92 01-05 06:37:16.37 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 | [a40 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 -peer0.org1.example.com | [a93 01-05 06:37:16.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 [6] orderer.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF -peer0.org1.example.com | [a94 01-05 06:37:16.45 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{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -peer0.org1.example.com | txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 -peer0.org1.example.com | ] -peer0.org1.example.com | [a95 01-05 06:37:16.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to index -peer0.org1.example.com | [a96 01-05 06:37:16.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx number:[0] ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to blockNumTranNum index orderer.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk -peer0.org1.example.com | [a97 01-05 06:37:16.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=[60308], isChainEmpty=[false], lastBlockNumber=[6] orderer.example.com | oOWGb8BDg2Tnm3LS -peer0.org1.example.com | [a98 01-05 06:37:16.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a99 01-05 06:37:16.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -orderer.example.com | [746 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134193223488700 evaluation starts -peer0.org1.example.com | [a9a 01-05 06:37:16.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -orderer.example.com | [747 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a9b 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -orderer.example.com | [748 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [a9c 01-05 06:37:16.47 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 | [749 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [a9d 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [74a 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -orderer.example.com | [74b 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134193223488700 evaluation fails -peer0.org1.example.com | [a9e 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | [74c 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [a9f 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | [74d 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [aa0 01-05 06:37:16.47 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 | [74e 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer0.org1.example.com | [aa1 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -orderer.example.com | [74f 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134193225070800 evaluation starts -orderer.example.com | [750 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [aa2 01-05 06:37:16.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 [6] with [1] transactions -peer0.org1.example.com | [aa3 01-05 06:37:16.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 [6] -peer0.org1.example.com | [aa4 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [751 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [aa5 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 -orderer.example.com | [752 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer0.org1.example.com | [aa6 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [aa7 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [aa8 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [aa9 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [753 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [aaa 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [aab 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [aac 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [aad 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [754 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal matched by identity 0 -peer0.org1.example.com | [aae 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [755 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 25 97 8d e1 ec f1 fe 3d 55 d2 3e 34 d0 9c b9 19 |%......=U.>4....| -peer0.org1.example.com | [aaf 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37216 -peer0.org1.example.com | [ab0 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421990840 -peer0.org1.example.com | [ab1 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 00000010 23 5d 41 55 29 6e 92 64 2a 32 dd 80 d5 5d f6 b6 |#]AU)n.d*2...]..| -peer0.org1.example.com | [ab2 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [ab3 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [ab4 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [756 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 2b 20 7e 5d cf 07 9d ca 69 7b 7e |0D. ,+ ~]....i{~| -peer0.org1.example.com | [ab5 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [ab6 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b92a50, header 0xc421990870 -orderer.example.com | 00000010 5e 69 fc 7e c9 33 12 88 7f 0e 5c 1d 27 a4 3c fe |^i.~.3....\.'.<.| -peer0.org1.example.com | [ab7 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | 00000020 7f 1f 12 5e 02 20 76 5e 13 59 d4 cd 3b 83 42 e8 |...^. v^.Y..;.B.| -peer0.org1.example.com | [ab8 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 -peer0.org1.example.com | [ab9 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -peer0.org1.example.com | [aba 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 00000030 40 ee 47 fc 75 cf 04 26 99 8d c1 66 d1 0d 4c 41 |@.G.u..&...f..LA| -orderer.example.com | 00000040 a2 96 e7 c6 1d 05 |......| -peer0.org1.example.com | [abb 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -orderer.example.com | [757 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [abc 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel -orderer.example.com | [758 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134193225070800 evaluation succeeds -peer0.org1.example.com | [abd 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel version: 1.1.0 -orderer.example.com | [759 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [75a 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [75b 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org1.example.com | [abe 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773,syscc=true,proposal=0xc421b92a50,canname=qscc:1.1.0 -orderer.example.com | [75c 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [abf 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -orderer.example.com | [75d 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [ac0 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [75e 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [ac1 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -orderer.example.com | [75f 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a72560) start: > stop: > from 172.18.0.3:40420 -peer0.org1.example.com | [ac2 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [ac3 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [760 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -peer0.org1.example.com | [ac4 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [761 01-05 06:36:33.23 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 | [762 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -peer0.org1.example.com | [ac5 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [763 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [764 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -peer0.org1.example.com | [ac6 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Move state message TRANSACTION -peer0.org1.example.com | [ac7 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [765 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -peer0.org1.example.com | [ac8 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [766 01-05 06:36:33.23 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 | [767 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -peer0.org1.example.com | [ac9 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]sending state message TRANSACTION -orderer.example.com | [768 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -peer0.org1.example.com | [aca 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Received message TRANSACTION from shim -orderer.example.com | [769 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -peer0.org1.example.com | [acb 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [76a 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -peer0.org1.example.com | [acc 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1ab908ca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [acd 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | [76b 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [ace 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [acf 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Move state message COMPLETED -orderer.example.com | [76c 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.2:50070 -peer0.org1.example.com | [ad0 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [76d 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.2:50070 -peer0.org1.example.com | [ad1 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]send state message COMPLETED -orderer.example.com | [76e 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [ad2 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Received message COMPLETED from shim -orderer.example.com | [76f 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [ad3 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [770 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [ad4 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773]HandleMessage- COMPLETED. Notify -orderer.example.com | [771 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [ad5 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773, channelID:businesschannel -orderer.example.com | [772 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer0.org1.example.com | [ad6 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [773 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [ad7 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [ad8 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [774 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [ad9 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] +orderer.example.com | [753 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d680 gate 1515824056907526241 evaluation starts +peer1.org2.example.com | [9fc 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [754 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [9fd 01-13 06:15:02.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [755 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [9fe 01-13 06:15:02.33 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 | [a41 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Transaction completed. Sending COMPLETED +orderer.example.com | [756 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +peer0.org1.example.com | [a42 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Move state message COMPLETED +peer1.org2.example.com | [9ff 01-13 06:15:02.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 [7] +orderer.example.com | [757 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 principal evaluation fails +peer0.org1.example.com | [a43 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [a00 01-13 06:15:02.34 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{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +orderer.example.com | [758 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d680 gate 1515824056907526241 evaluation fails +peer0.org1.example.com | [a44 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]send state message COMPLETED +orderer.example.com | [759 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | txId= locPointer=offset=71, bytesLength=19402 +peer1.org2.example.com | ] +orderer.example.com | [75a 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [a45 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Received message COMPLETED from shim +peer1.org2.example.com | [a01 01-13 06:15:02.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=60377, bytesLength=19402] for tx ID: [] to index +orderer.example.com | [75b 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +peer0.org1.example.com | [a46 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [a02 01-13 06:15:02.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=60377, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [75c 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +peer0.org1.example.com | [a47 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [a03 01-13 06:15:02.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] +peer0.org1.example.com | [a48 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0, channelID:businesschannel +peer1.org2.example.com | [a04 01-13 06:15:02.34 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 | [a49 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [75d 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [a4a 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [75e 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [a05 01-13 06:15:02.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +orderer.example.com | [75f 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [a06 01-13 06:15:02.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +orderer.example.com | [760 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [a4b 01-13 06:14:33.33 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 | [a07 01-13 06:15:02.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +orderer.example.com | [761 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d690 gate 1515824056909788109 evaluation starts +peer1.org2.example.com | [a08 01-13 06:15:02.35 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 | [a4c 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +peer1.org2.example.com | [a09 01-13 06:15:02.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 +orderer.example.com | [762 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [a4d 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [a0a 01-13 06:15:02.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)=[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 | [763 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [a4e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [764 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer0.org1.example.com | [a4f 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [765 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [a50 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel version: 1.1.0 +peer1.org2.example.com | [a0b 01-13 06:15:02.35 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 | [766 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 principal matched by identity 0 +peer0.org1.example.com | [a51 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0,syscc=true,proposal=0xc422f83c20,canname=escc:1.1.0 +peer1.org2.example.com | [a0c 01-13 06:15:02.35 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 | [a52 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [767 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 12 9a be bd 3d 0d a9 f6 bf f3 e1 0f 5f ff 04 3c |....=......._..<| +peer1.org2.example.com | [a0d 01-13 06:15:02.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 [7] with [1] transactions +peer0.org1.example.com | [a53 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 00000010 0d 62 04 6e 15 09 9f 48 7e 88 9c f7 b2 61 6d 40 |.b.n...H~....am@| +peer0.org1.example.com | [a54 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [768 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 ec 20 2c 7f 3d 8f de f3 25 98 |0E.!... ,.=...%.| +peer1.org2.example.com | [a0e 01-13 06:15:02.35 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 | 00000010 7c 3d df f9 99 57 85 ef 74 47 cf 43 a9 5a 97 ba ||=...W..tG.C.Z..| +peer1.org2.example.com | [a0f 01-13 06:15:02.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 [7] +orderer.example.com | 00000020 0d 64 e1 e4 1b 02 20 4d e4 7f 28 18 be 55 54 f9 |.d.... M..(..UT.| +peer1.org2.example.com | [a10 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | 00000030 00 22 e1 87 dd 87 09 8b 56 02 10 1a a4 e8 0f 91 |."......V.......| +peer0.org1.example.com | [a55 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [a11 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [a56 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [a12 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | 00000040 60 04 03 f4 c6 8a 13 |`......| +peer1.org2.example.com | [a13 01-13 06:15:02.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [a57 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [769 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [a14 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [76a 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d690 gate 1515824056909788109 evaluation succeeds +peer0.org1.example.com | [a58 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [76b 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [a15 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [a59 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Move state message TRANSACTION +orderer.example.com | [76c 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [a16 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [a5a 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [76d 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [76e 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org1.example.com | [a5b 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [76f 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [a5c 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]sending state message TRANSACTION +peer1.org2.example.com | [a17 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [a5d 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Received message TRANSACTION from shim +peer1.org2.example.com | [a18 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [770 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [a5e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [a19 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [771 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209667c0) start: > stop: > from 172.18.0.3:51084 +peer0.org1.example.com | [a5f 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0b0fabf0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [772 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [773 01-13 06:14:16.91 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] +peer0.org1.example.com | [a60 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [774 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes +orderer.example.com | [775 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +peer0.org1.example.com | [a61 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [776 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +peer0.org1.example.com | [a62 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Transaction completed. Sending COMPLETED +orderer.example.com | [777 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +peer0.org1.example.com | [a63 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Move state message COMPLETED +orderer.example.com | [778 01-13 06:14:16.91 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 | [779 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +orderer.example.com | [77a 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +peer0.org1.example.com | [a64 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [77b 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +peer0.org1.example.com | [a65 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]send state message COMPLETED +orderer.example.com | [77c 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +peer0.org1.example.com | [a66 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Received message COMPLETED from shim +orderer.example.com | [77d 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [a67 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [a68 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0]HandleMessage- COMPLETED. Notify +orderer.example.com | [77e 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:44740 +orderer.example.com | [77f 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:44740 +peer0.org1.example.com | [a69 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0, channelID:businesschannel +orderer.example.com | [780 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [a6a 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [781 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [a6b 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [782 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [783 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [a6c 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [a6d 01-13 06:14:33.33 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 [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +orderer.example.com | [784 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [a6e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53696) +orderer.example.com | [785 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [a6f 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53698 +orderer.example.com | [786 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAPlZcLcMzfzgE68ZzSaaSeYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [ada 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [a70 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42334e030 orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [a71 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [adb 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [a72 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer0.org1.example.com | [a73 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [a74 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [a75 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [adc 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [a76 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422ffda90, header 0xc42334e390 +peer0.org1.example.com | [a77 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [a78 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIsTFoftFSbhQW3yKTX+bQC+Ry/3z9tx -peer0.org1.example.com | [add 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [a79 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] orderer.example.com | r/X846QAFI3FX4DI5Bg1ICvwRzTFDa1LBkuYhiVkFYf5Q6S2oXFTAm6jTTBLMA4G -peer0.org1.example.com | [ade 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773,syscc=true,proposal=0xc421b92a50,canname=escc:1.1.0 -peer0.org1.example.com | [adf 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [a7a 01-13 06:14:34.38 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 orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +peer0.org1.example.com | [a7b 01-13 06:14:34.38 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 = [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Mu6 -peer0.org1.example.com | [ae0 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [a7c 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel +peer0.org1.example.com | [a7d 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [a7e 01-13 06:14:34.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=qscc,version=1.1.0,txid=f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0,syscc=true,proposal=0xc422ffda90,canname=qscc:1.1.0 orderer.example.com | IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 +peer0.org1.example.com | [a7f 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 orderer.example.com | dblSJ0Unez2++mFCUWE= -peer0.org1.example.com | [ae1 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [a80 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [775 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138660 gate 1515134193655920800 evaluation starts -peer0.org1.example.com | [ae2 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [ae3 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [776 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [ae4 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [ae5 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [777 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [778 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [779 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [ae6 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Move state message TRANSACTION -orderer.example.com | [77a 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 principal matched by identity 0 -orderer.example.com | [77b 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6f 1e 98 cd d3 ea 1d af d7 3f 6b 1d 49 20 d6 d7 |o........?k.I ..| -orderer.example.com | 00000010 b5 eb 4e d5 4e 1c 39 9c 1e ab 96 79 ae 07 e2 c4 |..N.N.9....y....| -orderer.example.com | [77c 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 29 15 e1 05 c5 a5 65 5c 25 00 ab 45 |0D. ).....e\%..E| -orderer.example.com | 00000010 92 68 64 5c bc 5f e4 0e e5 a0 0a d7 8f 1a a4 fd |.hd\._..........| -orderer.example.com | 00000020 b4 1c 3a 08 02 20 36 a7 bf c3 e5 b5 2d ea f2 f9 |..:.. 6.....-...| -orderer.example.com | 00000030 61 17 6f 55 94 dc e7 1b 09 69 3f 3b a4 3e 2b 2c |a.oU.....i?;.>+,| -peer0.org1.example.com | [ae7 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 00000040 f3 84 a0 31 35 9f |...15.| -orderer.example.com | [77d 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [ae8 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [77e 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138660 gate 1515134193655920800 evaluation succeeds -orderer.example.com | [77f 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [780 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [781 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [782 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [783 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [ae9 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]sending state message TRANSACTION -orderer.example.com | [784 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [785 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a458c0) start: > stop: > from 172.18.0.2:50070 -peer0.org1.example.com | [aea 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Received message TRANSACTION from shim -orderer.example.com | [786 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -orderer.example.com | [787 01-05 06:36:33.68 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 | [788 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -peer0.org1.example.com | [aeb 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [789 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [78a 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -orderer.example.com | [78b 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a458c0) for 172.18.0.2:50070 -peer0.org1.example.com | [aec 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1ab908ca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [78c 01-05 06:36:33.68 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 | [78d 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -peer0.org1.example.com | [aed 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [aee 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [78e 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [78f 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a458c0) for 172.18.0.2:50070 -orderer.example.com | [790 01-05 06:36:33.69 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 | [791 01-05 06:36:33.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [aef 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [af0 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Move state message COMPLETED -orderer.example.com | [792 01-05 06:36:33.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:47452 -peer0.org1.example.com | [af1 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [af2 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]send state message COMPLETED -orderer.example.com | [793 01-05 06:36:33.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.4:47452 -orderer.example.com | [794 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [af3 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Received message COMPLETED from shim -orderer.example.com | [795 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [796 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [af4 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [797 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [af5 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773]HandleMessage- COMPLETED. Notify -orderer.example.com | [798 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer0.org1.example.com | [af6 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773, channelID:businesschannel -orderer.example.com | [799 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [af7 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [79a 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [af8 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [787 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d6f8 gate 1515824057360761376 evaluation starts +peer0.org1.example.com | [a81 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [788 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [789 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [a82 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [a83 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [a84 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [78a 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer0.org1.example.com | [a85 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [a86 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Move state message TRANSACTION +peer0.org1.example.com | [a87 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [a88 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [a89 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]sending state message TRANSACTION +orderer.example.com | [78b 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 principal evaluation fails +peer0.org1.example.com | [a8a 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Received message TRANSACTION from shim +peer0.org1.example.com | [a8b 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [a8c 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f38f56f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [78c 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d6f8 gate 1515824057360761376 evaluation fails +peer0.org1.example.com | [a8d 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [a8e 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Transaction completed. Sending COMPLETED +orderer.example.com | [78d 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [a8f 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Move state message COMPLETED +peer0.org1.example.com | [a90 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [78e 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [a91 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]send state message COMPLETED +peer0.org1.example.com | [a92 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Received message COMPLETED from shim +peer0.org1.example.com | [a93 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [a94 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [a95 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0, channelID:businesschannel +peer0.org1.example.com | [a96 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [a97 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [a98 01-13 06:14:34.39 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 +orderer.example.com | [78f 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +peer0.org1.example.com | [a99 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] +peer0.org1.example.com | [a9a 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [790 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +peer0.org1.example.com | [a9b 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [791 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [a9c 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [792 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org1.example.com | [a9d 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel version: 1.1.0 +orderer.example.com | [793 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [794 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [a9e 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0,syscc=true,proposal=0xc422ffda90,canname=escc:1.1.0 +orderer.example.com | [795 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d708 gate 1515824057366003676 evaluation starts +peer0.org1.example.com | [a9f 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [796 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [aa0 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [aa1 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [797 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [798 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +peer0.org1.example.com | [aa2 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [799 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 principal evaluation fails +orderer.example.com | [79a 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d708 gate 1515824057366003676 evaluation fails +orderer.example.com | [79b 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [79c 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [79d 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [79e 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d710 gate 1515824057367260276 evaluation starts +orderer.example.com | [79f 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [7a0 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [aa3 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [7a1 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [aa4 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [7a2 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [aa5 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [7a3 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 principal matched by identity 0 +peer0.org1.example.com | [aa6 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Move state message TRANSACTION +peer0.org1.example.com | [aa7 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [7a4 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0f 6b b9 80 34 c4 79 dc e8 b4 67 76 db 6e 66 49 |.k..4.y...gv.nfI| +peer0.org1.example.com | [aa8 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000010 67 be c3 ac 88 c6 35 80 f1 33 94 06 03 4b fb b9 |g.....5..3...K..| +peer0.org1.example.com | [aa9 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]sending state message TRANSACTION +orderer.example.com | [7a5 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 35 90 7d 62 25 ef 14 68 08 5b 25 c9 |0D. 5.}b%..h.[%.| +orderer.example.com | 00000010 c8 1d 29 0c 4d 81 00 75 0a 92 7f 09 b8 7f 00 60 |..).M..u.......`| +peer0.org1.example.com | [aaa 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Received message TRANSACTION from shim +orderer.example.com | 00000020 bb ff 35 c6 02 20 62 55 0f 86 2d 21 8a 91 ce 1c |..5.. bU..-!....| +orderer.example.com | 00000030 0e 92 a1 c0 91 1f 58 d5 95 ef bb 55 94 c6 37 1b |......X....U..7.| +peer0.org1.example.com | [aab 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 00000040 f7 dd 3c 0b c3 d4 |..<...| +peer0.org1.example.com | [aac 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f38f56f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [aad 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [7a6 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [aae 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [7a7 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d710 gate 1515824057367260276 evaluation succeeds +peer0.org1.example.com | [aaf 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Transaction completed. Sending COMPLETED +orderer.example.com | [7a8 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [ab0 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Move state message COMPLETED +peer0.org1.example.com | [ab1 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [7a9 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [ab2 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]send state message COMPLETED +peer0.org1.example.com | [ab3 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Received message COMPLETED from shim +orderer.example.com | [7aa 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [7ab 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [7ac 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [ab4 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [7ad 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [7ae 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420976f60) start: > stop: > from 172.18.0.5:44740 +peer0.org1.example.com | [ab5 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0]HandleMessage- COMPLETED. Notify +orderer.example.com | [7af 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +peer0.org1.example.com | [ab6 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0, channelID:businesschannel +peer0.org1.example.com | [ab7 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [7b0 01-13 06:14:17.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=[12121] +peer0.org1.example.com | [ab8 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [ab9 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [7b1 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes +peer0.org1.example.com | [aba 01-13 06:14:34.39 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 [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] +orderer.example.com | [7b2 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +peer0.org1.example.com | [abb 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53698) +peer0.org1.example.com | [abc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53700 +orderer.example.com | [7b3 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +peer0.org1.example.com | [abd 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c60240 +orderer.example.com | [7b4 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420976f60) for 172.18.0.5:44740 +peer0.org1.example.com | [abe 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [7b5 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes +peer0.org1.example.com | [abf 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [7b6 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +peer0.org1.example.com | [ac0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [7b7 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +peer0.org1.example.com | [ac1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [ac2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [ac3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421d79a90, header 0xc421c605a0 +orderer.example.com | [7b8 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420976f60) for 172.18.0.5:44740 +peer0.org1.example.com | [ac4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [ac5 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 +orderer.example.com | [7b9 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +peer0.org1.example.com | [ac6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +orderer.example.com | [7ba 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [ac7 01-13 06:14:35.43 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 +orderer.example.com | [7bb 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.6:47998 +peer0.org1.example.com | [ac8 01-13 06:14:35.43 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 = [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +orderer.example.com | [7bc 01-13 06:14:18.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.6:47998 +orderer.example.com | [7bd 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [ac9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel +orderer.example.com | [7be 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [aca 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel version: 1.1.0 +orderer.example.com | [7bf 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [acb 01-13 06:14:35.43 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.1.0,txid=7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179,syscc=true,proposal=0xc421d79a90,canname=qscc:1.1.0 +orderer.example.com | [7c0 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [acc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [7c1 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [7c2 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [acd 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [7c3 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [af9 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [ace 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [afa 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -peer0.org1.example.com | [afb 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37216) +peer0.org1.example.com | [acf 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [afc 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37218 +peer0.org1.example.com | [ad0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 -peer0.org1.example.com | [afd 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421991d10 +peer0.org1.example.com | [ad1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [afe 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd -peer0.org1.example.com | [aff 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G -peer0.org1.example.com | [b00 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [ad2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]sendExecuteMsg trigger event TRANSACTION orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -peer0.org1.example.com | [b01 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [ad3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Move state message TRANSACTION +peer0.org1.example.com | [ad4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U orderer.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB -peer0.org1.example.com | [b02 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [ad5 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [ad6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]sending state message TRANSACTION orderer.example.com | IMM+3uC8p/M1qCSaOiQ= -peer0.org1.example.com | [b03 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b92f00, header 0xc421991d40 +peer0.org1.example.com | [ad7 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Received message TRANSACTION from shim +peer0.org1.example.com | [ad8 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [b04 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -peer0.org1.example.com | [b05 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 -orderer.example.com | [79b 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386d8 gate 1515134193855148900 evaluation starts -peer0.org1.example.com | [b06 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -orderer.example.com | [79c 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [b07 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [79d 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b08 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -orderer.example.com | [79e 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -peer0.org1.example.com | [b09 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel -orderer.example.com | [79f 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [b0a 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel version: 1.1.0 -orderer.example.com | [7a0 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 principal matched by identity 0 -peer0.org1.example.com | [b0b 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68,syscc=true,proposal=0xc421b92f00,canname=qscc:1.1.0 -orderer.example.com | [7a1 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 79 d1 5d b1 3f 52 2d 32 82 54 e0 af e2 de 98 1c |y.].?R-2.T......| -orderer.example.com | 00000010 eb 5b 21 04 d1 58 18 0f 4d a2 ee 7f ea de ac d7 |.[!..X..M.......| -peer0.org1.example.com | [b0c 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -orderer.example.com | [7a2 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 24 d6 1a fc 1c 66 ec ec 80 4d 34 f0 |0D. $....f...M4.| -peer0.org1.example.com | [b0d 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 00000010 41 77 9b 17 96 68 20 eb 0a 9f 97 31 6a 0c fb 79 |Aw...h ....1j..y| -peer0.org1.example.com | [b0e 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -orderer.example.com | 00000020 a4 f1 cf dc 02 20 5a 2d 47 f7 c1 3b 55 2c 5b 85 |..... Z-G..;U,[.| -peer0.org1.example.com | [b0f 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 00000030 c7 8f 0b 90 01 a7 ff f8 32 db 15 9a 1f 40 23 e9 |........2....@#.| -peer0.org1.example.com | [b10 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 00000040 ff 92 43 68 35 2c |..Ch5,| -orderer.example.com | [7a3 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [b11 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [7a4 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386d8 gate 1515134193855148900 evaluation succeeds -peer0.org1.example.com | [b12 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [7a5 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [b13 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Move state message TRANSACTION -peer0.org1.example.com | [b14 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [7a6 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [b15 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [7a7 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org1.example.com | [b16 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]sending state message TRANSACTION -orderer.example.com | [7a8 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [b17 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Received message TRANSACTION from shim -orderer.example.com | [7a9 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [b18 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [7aa 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [b19 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9023090a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [7ab 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200d3a20) start: > stop: > from 172.18.0.4:47452 -peer0.org1.example.com | [b1a 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -orderer.example.com | [7ac 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -orderer.example.com | [7ad 01-05 06:36:33.85 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] -peer0.org1.example.com | [b1b 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -peer0.org1.example.com | [b1c 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[26079] -peer0.org1.example.com | [b1d 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34229], Going to peek [8] bytes -peer0.org1.example.com | [b1e 01-05 06:37:17.13 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=[26079], bytesOffset=[26081]} -peer0.org1.example.com | [b1f 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Transaction completed. Sending COMPLETED -orderer.example.com | [7ae 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -peer0.org1.example.com | [b20 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Move state message COMPLETED -peer0.org1.example.com | [b21 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [b22 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]send state message COMPLETED -peer0.org1.example.com | [b23 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Received message COMPLETED from shim -peer0.org1.example.com | [b24 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [b25 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [b26 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68, channelID:businesschannel -orderer.example.com | [7af 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -peer0.org1.example.com | [b27 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [b28 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [b29 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [7b0 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -peer0.org1.example.com | [b2a 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -peer0.org1.example.com | [b2b 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [7b1 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -peer0.org1.example.com | [b2c 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel chaincode id: name:"qscc" -peer0.org1.example.com | [b2d 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -peer0.org1.example.com | [b2e 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [b2f 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68,syscc=true,proposal=0xc421b92f00,canname=escc:1.1.0 -peer0.org1.example.com | [b30 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer0.org1.example.com | [b31 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [7b2 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -peer0.org1.example.com | [b32 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [7b3 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -peer0.org1.example.com | [b33 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [b34 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [7b4 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -peer0.org1.example.com | [b35 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [7b5 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -peer0.org1.example.com | [b36 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [7b6 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -peer0.org1.example.com | [b37 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Move state message TRANSACTION -orderer.example.com | [7b7 01-05 06:36:36.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [b38 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [7b8 01-05 06:36:36.58 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:44152 -peer0.org1.example.com | [b39 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [7b9 01-05 06:36:44.27 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:44152 with txid 'b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2' of type ENDORSER_TRANSACTION -orderer.example.com | [7ba 01-05 06:36:44.27 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 == -peer0.org1.example.com | [b3a 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]sending state message TRANSACTION -orderer.example.com | [7bb 01-05 06:36:44.27 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 -peer0.org1.example.com | [b3b 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Received message TRANSACTION from shim -orderer.example.com | [7bc 01-05 06:36:44.27 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 == -peer0.org1.example.com | [b3c 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [7bd 01-05 06:36:44.27 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 -peer0.org1.example.com | [b3d 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9023090a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [7be 01-05 06:36:44.27 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 | [b3e 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [7bf 01-05 06:36:44.27 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 | [7c0 01-05 06:36:44.28 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 | [7c4 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d778 gate 1515824058777351977 evaluation starts +peer0.org1.example.com | [ad9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7286f48c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [ada 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [adb 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Transaction completed. Sending COMPLETED +orderer.example.com | [7c5 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [adc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Move state message COMPLETED +orderer.example.com | [7c6 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [add 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [7c7 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer0.org1.example.com | [ade 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]send state message COMPLETED +orderer.example.com | [7c8 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 principal evaluation fails +orderer.example.com | [7c9 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d778 gate 1515824058777351977 evaluation fails +peer0.org1.example.com | [adf 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Received message COMPLETED from shim +orderer.example.com | [7ca 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [ae0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [7cb 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [ae1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179]HandleMessage- COMPLETED. Notify +orderer.example.com | [7cc 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +orderer.example.com | [7cd 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +orderer.example.com | [7ce 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [ae2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179, channelID:businesschannel +orderer.example.com | [7cf 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [7d0 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [ae3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [7d1 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [ae4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [7d2 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d788 gate 1515824058779848077 evaluation starts +peer0.org1.example.com | [ae5 01-13 06:14:35.43 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 +orderer.example.com | [7d3 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [ae6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +peer0.org1.example.com | [ae7 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [7d4 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [ae8 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [7d5 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [7d6 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 principal evaluation fails +orderer.example.com | [7d7 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d788 gate 1515824058779848077 evaluation fails +peer0.org1.example.com | [ae9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [aea 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel version: 1.1.0 +orderer.example.com | [7d8 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [aeb 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179,syscc=true,proposal=0xc421d79a90,canname=escc:1.1.0 +peer0.org1.example.com | [aec 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [aed 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [aee 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [7d9 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [aef 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [7da 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [7db 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1515824058788271177 evaluation starts +peer0.org1.example.com | [af0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [7dc 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [7dd 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [7de 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [af1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [7df 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [7e0 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal matched by identity 0 +peer0.org1.example.com | [af2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [af3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Move state message TRANSACTION +peer0.org1.example.com | [af4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [7e1 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fb 3e 27 9e c5 ac 31 e3 cc 45 1c 7e af 64 93 6f |.>'...1..E.~.d.o| +peer0.org1.example.com | [af5 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000010 85 4b 15 5f 7e ef 49 b4 a4 ef a5 a4 a2 30 61 94 |.K._~.I......0a.| +peer0.org1.example.com | [af6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]sending state message TRANSACTION +orderer.example.com | [7e2 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5c 5c ff cc 10 cc 63 88 40 93 46 |0D. K\\....c.@.F| +orderer.example.com | 00000010 33 d5 8e 39 bf 1c 85 96 bf a6 70 07 73 de 71 71 |3..9......p.s.qq| +orderer.example.com | 00000020 56 12 c9 fd 02 20 13 6c 74 ea a8 f1 3c 57 b2 9b |V.... .lt... DEBU [7286f48c]Received message TRANSACTION from shim +orderer.example.com | 00000040 8b 5e 91 70 b0 c0 |.^.p..| +peer0.org1.example.com | [af8 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [7e3 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation succeeds for identity 0 +orderer.example.com | [7e4 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1515824058788271177 evaluation succeeds +orderer.example.com | [7e5 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [af9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7286f48c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [7e6 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [7e7 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [7e8 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [7e9 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [7ea 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [7eb 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420956600) start: > stop: > from 172.18.0.6:47998 +orderer.example.com | [7ec 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [7ed 01-13 06:14:18.79 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] +peer0.org1.example.com | [afa 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [7ee 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes +peer0.org1.example.com | [afb 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [afc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Transaction completed. Sending COMPLETED +orderer.example.com | [7ef 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +peer0.org1.example.com | [afd 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Move state message COMPLETED +orderer.example.com | [7f0 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +peer0.org1.example.com | [afe 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [7f1 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +peer0.org1.example.com | [aff 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]send state message COMPLETED +orderer.example.com | [7f2 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes +peer0.org1.example.com | [b00 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Received message COMPLETED from shim +orderer.example.com | [7f3 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +peer0.org1.example.com | [b01 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [7f4 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +peer0.org1.example.com | [b02 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179]HandleMessage- COMPLETED. Notify +orderer.example.com | [7f5 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +peer0.org1.example.com | [b03 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179, channelID:businesschannel +peer0.org1.example.com | [b04 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [7f6 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +peer0.org1.example.com | [b05 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [b06 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [b07 01-13 06:14:35.44 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 [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +peer0.org1.example.com | [b08 01-13 06:14:35.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53700) +peer0.org1.example.com | [b09 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53702 +peer0.org1.example.com | [b0a 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4232c2e40 +orderer.example.com | [7f7 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org1.example.com | [b0b 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [b0c 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [b0d 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [b0e 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [b0f 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [7f8 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50150 +peer0.org1.example.com | [b10 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422eb6000, header 0xc4232c31a0 +orderer.example.com | [7f9 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.8:50150 with txid 'cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95' of type ENDORSER_TRANSACTION +peer0.org1.example.com | [b11 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [b12 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a +orderer.example.com | [7fa 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org1.example.com | [b13 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +orderer.example.com | [7fb 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7fc 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [7fd 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7fe 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [7ff 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [b14 01-13 06:14:36.50 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 +orderer.example.com | [800 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [b15 01-13 06:14:36.50 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 = [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +peer0.org1.example.com | [b16 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [b3f 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [b40 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [b41 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Move state message COMPLETED +peer0.org1.example.com | [b17 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [b18 01-13 06:14:36.50 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.1.0,txid=59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a,syscc=true,proposal=0xc422eb6000,canname=qscc:1.1.0 orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [b42 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [b19 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [b1a 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [b1b 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [b1c 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [b1d 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [b1e 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [b1f 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [b20 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Move state message TRANSACTION orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [b21 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [b22 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [b23 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]sending state message TRANSACTION orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [b24 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Received message TRANSACTION from shim orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org1.example.com | [b25 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer0.org1.example.com | [b26 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59bbdfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [b27 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [b28 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Transaction completed. Sending COMPLETED orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org1.example.com | [b43 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]send state message COMPLETED orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org1.example.com | [b44 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Received message COMPLETED from shim +peer0.org1.example.com | [b29 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Move state message COMPLETED orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [b45 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [b46 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [b47 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68, channelID:businesschannel orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7c1 01-05 06:36:44.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 0xc42000e2a8 gate 1515134204281179100 evaluation starts -orderer.example.com | [7c2 01-05 06:36:44.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 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [7c3 01-05 06:36:44.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 0xc42000e2a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7c4 01-05 06:36:44.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 0xc42000e2a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [b48 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [7c5 01-05 06:36:44.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 0xc42000e2a8 principal evaluation fails -peer0.org1.example.com | [b49 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [b4a 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [7c6 01-05 06:36:44.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 0xc42000e2a8 gate 1515134204281179100 evaluation fails -peer0.org1.example.com | [b4b 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -orderer.example.com | [7c7 01-05 06:36:44.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/Application/Org2MSP/Writers -peer0.org1.example.com | [b4c 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37218) -peer0.org1.example.com | [b4d 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -peer0.org1.example.com | [b4f 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [7c8 01-05 06:36:44.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 -peer0.org1.example.com | [b50 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [7c9 01-05 06:36:44.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/Org1MSP/Writers == -peer0.org1.example.com | [b51 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422a8ee20 env 0xc4235ffd10 txn 0 -orderer.example.com | [7ca 01-05 06:36:44.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 0xc42000e2b8 gate 1515134204283860700 evaluation starts -peer0.org1.example.com | [b52 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4235ffd10 -orderer.example.com | [7cb 01-05 06:36:44.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 0xc42000e2b8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [b53 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -peer0.org1.example.com | [b54 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [b55 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [7cc 01-05 06:36:44.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 0xc42000e2b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7cd 01-05 06:36:44.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.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [7ce 01-05 06:36:44.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.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [7cf 01-05 06:36:44.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 0xc42000e2b8 principal matched by identity 0 -peer0.org1.example.com | [b56 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -orderer.example.com | [7d0 01-05 06:36:44.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 -> DEBU Verify: digest = 00000000 6a 8d 97 9c 1b d3 67 69 ed 49 74 0f 2a de 9e 12 |j.....gi.It.*...| -peer0.org1.example.com | [b57 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 00000010 af ce 8e 65 c7 3c c8 87 b9 15 97 0f 55 b3 c1 26 |...e.<......U..&| -peer0.org1.example.com | [b58 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [7d1 01-05 06:36:44.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 -> DEBU Verify: sig = 00000000 30 44 02 20 2d f5 fa cf af b5 64 21 e6 0a 7e 54 |0D. -.....d!..~T| -orderer.example.com | 00000010 06 00 13 4d 60 de de 0a 4e fd 5b 57 54 50 f9 4a |...M`...N.[WTP.J| -orderer.example.com | 00000020 80 81 97 e7 02 20 0b 9a 88 18 f5 3e b4 55 88 1f |..... .....>.U..| -orderer.example.com | 00000030 a7 72 f9 f2 a1 37 f5 8b 91 13 4c cd 9b 32 c8 1b |.r...7....L..2..| -peer0.org1.example.com | [b59 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421eba000, header channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -orderer.example.com | 00000040 c8 59 92 c3 50 b2 |.Y..P.| -peer0.org1.example.com | [b5a 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [7d2 01-05 06:36:44.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 0xc42000e2b8 principal evaluation succeeds for identity 0 -orderer.example.com | [7d3 01-05 06:36:44.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 0xc42000e2b8 gate 1515134204283860700 evaluation succeeds -peer0.org1.example.com | [b5b 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [7d4 01-05 06:36:44.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/Org1MSP/Writers -peer0.org1.example.com | [b5c 01-05 06:37:27.84 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 | [7d5 01-05 06:36:44.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/Org1MSP/Writers -orderer.example.com | [7d6 01-05 06:36:44.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 | [7d7 01-05 06:36:44.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 | [7d8 01-05 06:36:44.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 | [7d9 01-05 06:36:44.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 -peer0.org1.example.com | [b5d 01-05 06:37:27.84 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 | [7da 01-05 06:36:44.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:44152 -peer0.org1.example.com | [b5e 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [7db 01-05 06:36:44.28 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -peer0.org1.example.com | [b5f 01-05 06:37:27.85 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 | [b60 01-05 06:37:27.85 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 | [b61 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [7dc 01-05 06:36:44.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44152: rpc error: code = Canceled desc = context canceled -orderer.example.com | [7dd 01-05 06:36:44.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [b62 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [7de 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [b4e 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -peer0.org1.example.com | [b63 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [7df 01-05 06:36:44.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:44160 -peer0.org1.example.com | [b64 01-05 06:37:27.85 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 | [7e0 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -peer0.org1.example.com | [b65 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [7e1 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b66 01-05 06:37:27.86 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 -orderer.example.com | [7e2 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [b67 01-05 06:37:27.86 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 -orderer.example.com | [7e3 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b68 01-05 06:37:27.86 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 -orderer.example.com | [7e4 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [b69 01-05 06:37:27.86 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 -orderer.example.com | [7e5 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...003C1225B68CA27A658F0EE82B45D719 -peer0.org1.example.com | [b6a 01-05 06:37:27.86 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 | [7e6 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76CCF8186AF886EB99F3F0104003995F7962DC7DC2479E6D6CE5C16519D3556F -peer0.org1.example.com | [b6b 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [7e7 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [7e8 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [7e9 01-05 06:36:46.28 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 | [7ea 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [7eb 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [b6c 01-05 06:37:27.86 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 | [b6d 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [7ec 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...003C1225B68CA27A658F0EE82B45D719 -peer0.org1.example.com | [b6e 01-05 06:37:27.90 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 | [b6f 01-05 06:37:27.90 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 | [b70 01-05 06:37:27.90 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 | [b71 01-05 06:37:27.90 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 | [b72 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org1.example.com | [b73 01-05 06:37:27.90 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 | [b74 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [7ed 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 0D40FEFDFC05121E811A51FD16DAC729BAE6670E85DD31246F3615F4DBBEB5F1 -peer0.org1.example.com | [b75 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org1.example.com | [b76 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [7ee 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -peer0.org1.example.com | [b77 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 -peer0.org1.example.com | [b78 01-05 06:37:27.91 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 | [b2a 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [b2b 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]send state message COMPLETED +peer0.org1.example.com | [b2c 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Received message COMPLETED from shim +orderer.example.com | [801 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e190 gate 1515824069766173480 evaluation starts +peer0.org1.example.com | [b2d 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [b2e 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a]HandleMessage- COMPLETED. Notify +orderer.example.com | [802 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [b2f 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a, channelID:businesschannel +peer0.org1.example.com | [b30 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [803 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [b31 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [804 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [805 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 principal evaluation fails +orderer.example.com | [806 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e190 gate 1515824069766173480 evaluation fails +peer0.org1.example.com | [b32 01-13 06:14:36.51 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 +orderer.example.com | [807 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [b33 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +orderer.example.com | [808 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [809 01-13 06:14:29.76 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 ] +peer0.org1.example.com | [b34 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [80a 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +peer0.org1.example.com | [b35 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [80b 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer0.org1.example.com | [b36 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [80c 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer0.org1.example.com | [b37 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel version: 1.1.0 +orderer.example.com | [80d 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [b38 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a,syscc=true,proposal=0xc422eb6000,canname=escc:1.1.0 +orderer.example.com | [80e 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [80f 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a0 gate 1515824069767916180 evaluation starts +peer0.org1.example.com | [b39 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [810 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [811 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [b3a 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [b3b 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [812 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer0.org1.example.com | [b3c 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [813 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [b3d 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [814 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 principal matched by identity 0 +peer0.org1.example.com | [b3e 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [815 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 27 8c f1 b9 e7 f8 ad 23 1a f8 58 9c 9f 2b 0b 02 |'......#..X..+..| +peer0.org1.example.com | [b3f 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 00000010 be c4 3e a2 42 32 4f 93 53 4b 18 93 a5 de 71 03 |..>.B2O.SK....q.| +orderer.example.com | [816 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0c be ed e1 57 ce f3 29 99 e4 c3 31 |0D. ....W..)...1| +peer0.org1.example.com | [b40 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Move state message TRANSACTION +peer0.org1.example.com | [b41 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 00000010 2c d3 ee 8e c1 4a cd 4c f7 4a 54 17 39 31 eb e1 |,....J.L.JT.91..| +peer0.org1.example.com | [b42 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000020 0a 0a 83 c2 02 20 2c 0b f3 28 57 74 f5 49 15 da |..... ,..(Wt.I..| +peer0.org1.example.com | [b43 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]sending state message TRANSACTION +peer0.org1.example.com | [b44 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Received message TRANSACTION from shim +orderer.example.com | 00000030 d7 a3 0e c9 d1 01 61 aa b4 8b a1 9c b5 c4 7b 2b |......a.......{+| +peer0.org1.example.com | [b45 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 00000040 8f 0f 6c d3 ce 7f |..l...| +peer0.org1.example.com | [b46 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59bbdfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [817 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 principal evaluation succeeds for identity 0 +orderer.example.com | [818 01-13 06:14:29.77 UTC] [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 0xc42000e1a0 gate 1515824069767916180 evaluation succeeds +peer0.org1.example.com | [b47 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [819 01-13 06:14:29.77 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 +peer0.org1.example.com | [b48 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [81a 01-13 06:14:29.77 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 +peer0.org1.example.com | [b49 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Transaction completed. Sending COMPLETED +orderer.example.com | [81b 01-13 06:14:29.77 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 | [81c 01-13 06:14:29.77 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 | [b4a 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Move state message COMPLETED +peer0.org1.example.com | [b4b 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [81d 01-13 06:14:29.77 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 +peer0.org1.example.com | [b4c 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]send state message COMPLETED +peer0.org1.example.com | [b4d 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Received message COMPLETED from shim +orderer.example.com | [81e 01-13 06:14:29.77 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 | [81f 01-13 06:14:29.77 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.8:50150 +peer0.org1.example.com | [b4e 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [820 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +peer0.org1.example.com | [b4f 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a]HandleMessage- COMPLETED. Notify +orderer.example.com | [821 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50150, hangup +orderer.example.com | [822 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [b50 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a, channelID:businesschannel +orderer.example.com | [823 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50150: read: connection reset by peer +peer0.org1.example.com | [b51 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [824 01-13 06:14:29.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org1.example.com | [b52 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [825 01-13 06:14:29.93 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50172 +peer0.org1.example.com | [b53 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [826 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +peer0.org1.example.com | [b54 01-13 06:14:36.51 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 [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +orderer.example.com | [827 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [b55 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53702) +orderer.example.com | [828 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [829 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [b56 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53708 +peer0.org1.example.com | [b57 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42291a1e0 +orderer.example.com | [82a 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [b58 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [82b 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...4B5017774DF6CFE9190F4633006D77BE +peer0.org1.example.com | [b59 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [82c 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 16463AAA81E49B95A521021D4D71BAD2C3881B1C28D1451EC48E954BC5F8E677 +peer0.org1.example.com | [b5a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [82d 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [b5b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [82e 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [82f 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +peer0.org1.example.com | [b5c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [830 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [b5d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228ece60, header 0xc42291a540 +orderer.example.com | [831 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [832 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...4B5017774DF6CFE9190F4633006D77BE +orderer.example.com | [833 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 2BBC028E89150AD65FA3559ADCECA629BEDB35F926922FE8CA3F5AE43757334C +peer0.org1.example.com | [b5e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [834 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +peer0.org1.example.com | [b5f 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed +orderer.example.com | txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 orderer.example.com | ] -peer0.org1.example.com | [b79 01-05 06:37:27.91 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 | [7ef 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45412], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [b7a 01-05 06:37:27.91 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 | [7f0 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -orderer.example.com | [7f1 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [7f2 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5320], Going to peek [8] bytes -peer0.org1.example.com | [b7b 01-05 06:37:27.91 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 | [7f3 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -peer0.org1.example.com | [b7c 01-05 06:37:27.91 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 | [b7d 01-05 06:37:27.91 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 | [b7e 01-05 06:37:27.91 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 | [b7f 01-05 06:37:27.91 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 | [7f4 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -peer0.org1.example.com | [b80 01-05 06:37:27.94 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 | [7f5 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -orderer.example.com | [7f6 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -peer0.org1.example.com | [b81 01-05 06:37:27.94 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 | [b82 01-05 06:37:27.94 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 | [b83 01-05 06:37:27.94 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 | [b84 01-05 06:37:27.94 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 | [b85 01-05 06:37:27.94 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 | [b86 01-05 06:37:27.94 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 | [b87 01-05 06:37:27.94 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 | [7f8 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -peer0.org1.example.com | [b88 01-05 06:37:27.94 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 | [b89 01-05 06:37:27.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 | [b8a 01-05 06:37:27.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 | [b8b 01-05 06:37:27.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 | [b8c 01-05 06:37:27.96 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 | [b8d 01-05 06:37:27.96 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 | [b8e 01-05 06:37:27.96 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 | [b8f 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [b90 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [b91 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [b92 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [b93 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [b94 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [b95 01-05 06:37:27.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 | [b96 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [b97 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [b98 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [b99 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [b9a 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [b9b 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [b9c 01-05 06:37:27.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 | [b9d 01-05 06:37:27.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 | [b9e 01-05 06:37:27.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 | [b9f 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [ba0 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [ba1 01-05 06:37:27.96 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 | [ba2 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [ba3 01-05 06:37:27.96 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 | [ba4 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [7f9 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [7fa 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5320], Going to peek [8] bytes -orderer.example.com | [7fb 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -orderer.example.com | [7fc 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -orderer.example.com | [7fd 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a458c0) for 172.18.0.2:50070 -peer0.org1.example.com | [ba5 01-05 06:37:27.96 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 | [ba6 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -orderer.example.com | [7fe 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.2:50070: rpc error: code = Unavailable desc = transport is closing -peer0.org1.example.com | [ba7 01-05 06:37:27.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 | [ba8 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [7ff 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [ba9 01-05 06:37:27.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 | [baa 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [800 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [801 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -peer0.org1.example.com | [bab 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [7f7 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5320], Going to peek [8] bytes -peer0.org1.example.com | [bac 01-05 06:37:27.97 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 | [bad 01-05 06:37:28.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 | [bae 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [802 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -peer0.org1.example.com | [baf 01-05 06:37:28.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 | [bb0 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [803 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -peer0.org1.example.com | [bb1 01-05 06:37:28.00 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 | [bb2 01-05 06:37:28.01 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 | [804 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -peer0.org1.example.com | [bb3 01-05 06:37:28.04 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 | [bb4 01-05 06:37:28.04 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 | [bb5 01-05 06:37:28.04 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 | [bb6 01-05 06:37:28.04 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 | [805 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -orderer.example.com | [806 01-05 06:36:54.03 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:44160 with txid 'e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356' of type ENDORSER_TRANSACTION -peer0.org1.example.com | [bb7 01-05 06:37:28.04 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 | [bb8 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [807 01-05 06:36:54.03 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 | [808 01-05 06:36:54.03 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 | [809 01-05 06:36:54.03 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 == -peer0.org1.example.com | [bb9 01-05 06:37:28.04 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 | [bba 01-05 06:37:28.04 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 | [bbb 01-05 06:37:28.04 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 | [bbc 01-05 06:37:28.04 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 | [bbd 01-05 06:37:28.04 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 | [bbe 01-05 06:37:28.04 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 | [bbf 01-05 06:37:28.04 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 | [bc0 01-05 06:37:28.04 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 | [bc1 01-05 06:37:28.04 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 | [bc2 01-05 06:37:28.04 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 | [bc3 01-05 06:37:28.04 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 | [bc4 01-05 06:37:28.04 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 | [bc5 01-05 06:37:28.04 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 | [bc6 01-05 06:37:28.04 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 -orderer.example.com | [80a 01-05 06:36:54.03 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 -peer0.org1.example.com | [bc7 01-05 06:37:28.06 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 -orderer.example.com | [80b 01-05 06:36:54.03 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 01-05 06:36:54.03 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 | [80d 01-05 06:36:54.03 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 | [835 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45412], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [b60 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +orderer.example.com | [836 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 +orderer.example.com | [837 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +peer0.org1.example.com | [b61 01-13 06:14:37.55 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 | [b62 01-13 06:14:37.55 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 = [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +peer0.org1.example.com | [b63 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel +orderer.example.com | [838 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +orderer.example.com | [839 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +peer0.org1.example.com | [b64 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel version: 1.1.0 +orderer.example.com | [83a 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +peer0.org1.example.com | [b65 01-13 06:14:37.55 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.1.0,txid=b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed,syscc=true,proposal=0xc4228ece60,canname=qscc:1.1.0 +peer0.org1.example.com | [b66 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [83b 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +peer0.org1.example.com | [b67 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [83c 01-13 06:14:31.78 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 | [83d 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [83e 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +orderer.example.com | [83f 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +orderer.example.com | [840 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +peer0.org1.example.com | [b68 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [841 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +orderer.example.com | [842 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [843 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +peer0.org1.example.com | [b69 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [844 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +orderer.example.com | [845 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +orderer.example.com | [846 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420976f60) for 172.18.0.5:44740 +orderer.example.com | [847 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.5:44740: rpc error: code = Canceled desc = context canceled +orderer.example.com | [848 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [849 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [84a 01-13 06:14:31.78 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 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +peer0.org1.example.com | [b6a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [84c 01-13 06:14:36.90 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.8:50172 with txid '67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053' of type ENDORSER_TRANSACTION +orderer.example.com | [84d 01-13 06:14:36.90 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 | [84e 01-13 06:14:36.90 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 +peer0.org1.example.com | [b6b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [84f 01-13 06:14:36.90 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 | [850 01-13 06:14:36.90 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 | [851 01-13 06:14:36.90 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 | [852 01-13 06:14:36.90 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 +peer0.org1.example.com | [b6c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [853 01-13 06:14:36.90 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [b6d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Move state message TRANSACTION +peer0.org1.example.com | [b6e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [b6f 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [b70 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]sending state message TRANSACTION orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [b71 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Received message TRANSACTION from shim +peer0.org1.example.com | [b72 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [b73 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b35a1a55]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [b74 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [b75 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Transaction completed. Sending COMPLETED orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer0.org1.example.com | [b76 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Move state message COMPLETED +peer0.org1.example.com | [b77 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [b78 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]send state message COMPLETED +peer0.org1.example.com | [b79 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Received message COMPLETED from shim +peer0.org1.example.com | [b7a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [b7b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [b7c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed, channelID:businesschannel +peer0.org1.example.com | [b7d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [b7e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [b7f 01-13 06:14:37.55 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 | [b80 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +peer0.org1.example.com | [b81 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [b82 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [b83 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [b84 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [b85 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed,syscc=true,proposal=0xc4228ece60,canname=escc:1.1.0 +peer0.org1.example.com | [b86 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [b87 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [b88 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer0.org1.example.com | [b89 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +peer0.org1.example.com | [b8a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [b8b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +peer0.org1.example.com | [b8c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [b8d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Move state message TRANSACTION orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL orderer.example.com | R0L5Jr8878bLU6IcEA== +peer0.org1.example.com | [b8e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [80e 01-05 06:36:54.03 UTC] [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 0xc420138770 gate 1515134214035690000 evaluation starts -orderer.example.com | [80f 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [810 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [bc8 01-05 06:37:28.06 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 -orderer.example.com | [811 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [812 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [813 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 principal matched by identity 0 -orderer.example.com | [814 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d3 f3 8f da f1 a7 dd 6c 32 a1 18 37 a4 e1 41 d8 |.......l2..7..A.| -orderer.example.com | 00000010 5e 73 1d aa c1 85 dc 6d 66 18 85 34 48 1e 5f 62 |^s.....mf..4H._b| -orderer.example.com | [815 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 a6 3e e7 f8 45 9b 7b 91 6f 36 79 |0D. ".>..E.{.o6y| -orderer.example.com | 00000010 68 02 1a ae ca 93 08 74 db 6a 3b af da 7f c4 be |h......t.j;.....| -orderer.example.com | 00000020 b6 ad 4c be 02 20 55 dc c1 27 f4 e5 bb 09 e1 da |..L.. U..'......| -orderer.example.com | 00000030 dc e2 05 af 72 57 e2 ba d7 9b 65 0f 24 d0 62 7d |....rW....e.$.b}| -orderer.example.com | 00000040 89 9f a7 67 11 3f |...g.?| -peer0.org1.example.com | [bc9 01-05 06:37:28.06 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 | [816 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 principal evaluation succeeds for identity 0 -orderer.example.com | [817 01-05 06:36:54.03 UTC] [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 0xc420138770 gate 1515134214035690000 evaluation succeeds -peer0.org1.example.com | [bca 01-05 06:37:28.06 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 | [818 01-05 06:36:54.03 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 -peer0.org1.example.com | [bcb 01-05 06:37:28.06 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 | [bcc 01-05 06:37:28.06 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 | [819 01-05 06:36:54.03 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 -peer0.org1.example.com | [bcd 01-05 06:37:28.06 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 | [81a 01-05 06:36:54.03 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.org1.example.com | [bce 01-05 06:37:28.06 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 | [81b 01-05 06:36:54.03 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 | [bcf 01-05 06:37:28.06 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 | [81c 01-05 06:36:54.03 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 -peer0.org1.example.com | [bd0 01-05 06:37:28.06 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 | [81d 01-05 06:36:54.03 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 -peer0.org1.example.com | [bd1 01-05 06:37:28.06 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 | [81e 01-05 06:36:54.03 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:44160 -peer0.org1.example.com | [bd2 01-05 06:37:28.06 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 | [bd3 01-05 06:37:28.06 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 | [81f 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -peer0.org1.example.com | [bd4 01-05 06:37:28.06 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 | [820 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.5:7050->172.18.0.7:44160: read: connection reset by peer -peer0.org1.example.com | [bd5 01-05 06:37:28.06 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 | [821 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44160: rpc error: code = Canceled desc = context canceled -orderer.example.com | [822 01-05 06:36:54.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [823 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [824 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [825 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [bd6 01-05 06:37:28.06 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 | [826 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [bd7 01-05 06:37:28.06 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 | [827 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [bd8 01-05 06:37:28.06 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 | [828 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...1A35923E2348E2BB150A34B9A331D42C -peer0.org1.example.com | [bd9 01-05 06:37:28.06 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 | [829 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 43E04F8EB93785AF1145193790DCA0AB9308248F3BC9BF9D7118817A4D28B787 -peer0.org1.example.com | [bda 01-05 06:37:28.06 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 | [82a 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [bdb 01-05 06:37:28.06 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 | [bdc 01-05 06:37:28.06 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 | [bdd 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [82b 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [bde 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [82c 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -peer0.org1.example.com | [bdf 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [82d 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [82e 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [82f 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...1A35923E2348E2BB150A34B9A331D42C -orderer.example.com | [830 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 8E07BD83945693A9DC0B1A69E545CD0687B157F1E2A766465B2C64C13E63DAE4 -peer0.org1.example.com | [be0 01-05 06:37:28.07 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 | [be1 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [831 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -orderer.example.com | txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 -peer0.org1.example.com | [be2 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [b8f 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [854 01-13 06:14:36.90 UTC] [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 0xc42011c440 gate 1515824076904741382 evaluation starts +peer0.org1.example.com | [b90 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]sending state message TRANSACTION +orderer.example.com | [855 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [b91 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Received message TRANSACTION from shim +orderer.example.com | [856 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [857 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer0.org1.example.com | [b92 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [b93 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b35a1a55]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [b94 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [858 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 principal evaluation fails +peer0.org1.example.com | [b95 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [b96 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Transaction completed. Sending COMPLETED +orderer.example.com | [859 01-13 06:14:36.90 UTC] [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 0xc42011c440 gate 1515824076904741382 evaluation fails +orderer.example.com | [85a 01-13 06:14:36.90 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 +peer0.org1.example.com | [b97 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Move state message COMPLETED +peer0.org1.example.com | [b98 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [85b 01-13 06:14:36.90 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 +peer0.org1.example.com | [b99 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]send state message COMPLETED +orderer.example.com | [85c 01-13 06:14:36.90 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 ] +peer0.org1.example.com | [b9a 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Received message COMPLETED from shim +orderer.example.com | [85d 01-13 06:14:36.90 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 | [85e 01-13 06:14:36.90 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 +peer0.org1.example.com | [b9b 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [b9c 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed]HandleMessage- COMPLETED. Notify +orderer.example.com | [85f 01-13 06:14:36.90 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 == +peer0.org1.example.com | [b9d 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed, channelID:businesschannel +peer0.org1.example.com | [b9e 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [b9f 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [860 01-13 06:14:36.90 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 +peer0.org1.example.com | [ba0 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [861 01-13 06:14:36.90 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 == +peer0.org1.example.com | [ba1 01-13 06:14:37.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 [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +orderer.example.com | [862 01-13 06:14:36.90 UTC] [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 0xc42011c468 gate 1515824076906607582 evaluation starts +peer0.org1.example.com | [ba2 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53708) +orderer.example.com | [863 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [864 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [ba3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53710 +orderer.example.com | [865 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +peer0.org1.example.com | [ba4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4236bc1b0 +orderer.example.com | [866 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 principal evaluation fails +peer0.org1.example.com | [ba5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [867 01-13 06:14:36.90 UTC] [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 0xc42011c468 gate 1515824076906607582 evaluation fails +peer0.org1.example.com | [ba6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [868 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [ba7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [869 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [86a 01-13 06:14:36.90 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 | [ba8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [ba9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [86b 01-13 06:14:36.90 UTC] [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 0xc42011c488 gate 1515824076909094882 evaluation starts +orderer.example.com | [86c 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [86d 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [baa 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4275dcc30, header 0xc4236bc510 +orderer.example.com | [86e 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [bab 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [86f 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [bac 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 +peer0.org1.example.com | [bad 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +orderer.example.com | [870 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 principal matched by identity 0 +peer0.org1.example.com | [bae 01-13 06:14:38.59 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 +orderer.example.com | [871 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d5 8b 17 b0 df ab 1e be a0 6e 50 b6 5b da f7 f2 |.........nP.[...| +peer0.org1.example.com | [baf 01-13 06:14:38.59 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 = [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +peer0.org1.example.com | [bb0 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel +orderer.example.com | 00000010 c2 cc 3f fe a4 7c 42 e2 30 25 58 d2 a6 0d 63 ae |..?..|B.0%X...c.| +peer0.org1.example.com | [bb1 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel version: 1.1.0 +orderer.example.com | [872 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 0b 1b d0 c5 a0 3b 14 3b d6 fe |0E.!.......;.;..| +peer0.org1.example.com | [bb2 01-13 06:14:38.59 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.1.0,txid=94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01,syscc=true,proposal=0xc4275dcc30,canname=qscc:1.1.0 +peer0.org1.example.com | [bb3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [bb4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 00000010 27 1d e8 e0 07 99 d3 5d 65 b0 0a e3 7c 16 16 2f |'......]e...|../| +peer0.org1.example.com | [bb5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | 00000020 05 7a 15 5d d8 02 20 6c ff 5c 56 8a c0 65 3a d3 |.z.].. l.\V..e:.| +orderer.example.com | 00000030 95 21 24 6b e1 cf 6d 16 df 29 47 b1 06 fd b9 05 |.!$k..m..)G.....| +peer0.org1.example.com | [bb6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 00000040 f8 0b 3d b2 36 12 aa |..=.6..| +peer0.org1.example.com | [bb7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [873 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [bb8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [874 01-13 06:14:36.91 UTC] [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 0xc42011c488 gate 1515824076909094882 evaluation succeeds +peer0.org1.example.com | [bb9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [bba 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Move state message TRANSACTION +orderer.example.com | [875 01-13 06:14:36.91 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 | [876 01-13 06:14:36.91 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 +peer0.org1.example.com | [bbb 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [877 01-13 06:14:36.91 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.org1.example.com | [bbc 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [bbd 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]sending state message TRANSACTION +orderer.example.com | [878 01-13 06:14:36.91 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 | [bbe 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Received message TRANSACTION from shim +orderer.example.com | [879 01-13 06:14:36.91 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 | [87a 01-13 06:14:36.91 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 +peer0.org1.example.com | [bbf 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [bc0 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [94979fec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [87b 01-13 06:14:36.91 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.8:50172 +orderer.example.com | [87c 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +peer0.org1.example.com | [bc1 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [bc2 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Transaction completed. Sending COMPLETED +orderer.example.com | [87d 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50172, hangup +peer0.org1.example.com | [bc3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Move state message COMPLETED +orderer.example.com | [87e 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [87f 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +peer0.org1.example.com | [bc4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [bc5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]send state message COMPLETED +peer0.org1.example.com | [bc6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Received message COMPLETED from shim +orderer.example.com | [880 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [881 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [bc7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [882 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [bc8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [bc9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01, channelID:businesschannel +orderer.example.com | [883 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [bca 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [bcb 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [884 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A884D4B72D3DB4F22EFDADFFD55BE534 +peer0.org1.example.com | [bcc 01-13 06:14:38.59 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 | [bcd 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +orderer.example.com | [885 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 13694B20D55BB7FE72B6486302B22FEF65DBFABAEEF8557594B4C84EC3AD2152 +orderer.example.com | [886 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [887 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [bce 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [888 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +peer0.org1.example.com | [bcf 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [889 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [88a 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [bd0 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [88b 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A884D4B72D3DB4F22EFDADFFD55BE534 +orderer.example.com | [88c 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9E004B16E8B69EA376003D34FB667AC8A543ACDE410377AC7947936E243A77B4 +peer0.org1.example.com | [bd1 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel version: 1.1.0 +orderer.example.com | [88d 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +orderer.example.com | txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 orderer.example.com | ] -orderer.example.com | [832 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50736], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | [833 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -orderer.example.com | [834 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -orderer.example.com | [835 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes -peer0.org1.example.com | [be3 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [836 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} -orderer.example.com | [837 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] -orderer.example.com | [839 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -orderer.example.com | [83a 01-05 06:36:56.04 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 | [83b 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} -orderer.example.com | [83c 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] -peer0.org1.example.com | [be4 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [83d 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -orderer.example.com | [83e 01-05 06:36:56.04 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 | [838 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -peer0.org1.example.com | [be5 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [83f 01-05 06:36:56.05 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 | [840 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [841 01-05 06:37:04.85 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:44170 -peer0.org1.example.com | [be6 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [842 01-05 06:37:04.91 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:44170 with txid 'b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9' of type ENDORSER_TRANSACTION -peer0.org1.example.com | [be7 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -peer0.org1.example.com | [be8 01-05 06:37:28.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | [843 01-05 06:37:04.91 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 | [844 01-05 06:37:04.91 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 | [845 01-05 06:37:04.91 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 | [846 01-05 06:37:04.91 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 -peer0.org1.example.com | [be9 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | [847 01-05 06:37:04.91 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 | [bea 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [848 01-05 06:37:04.91 UTC] [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 0xc42000e358 gate 1515134224914274400 evaluation starts -orderer.example.com | [849 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [beb 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -orderer.example.com | [84a 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [84b 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [bec 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [84c 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 principal evaluation fails -peer0.org1.example.com | [bed 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [84d 01-05 06:37:04.91 UTC] [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 0xc42000e358 gate 1515134224914274400 evaluation fails -peer0.org1.example.com | [bee 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [84e 01-05 06:37:04.91 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 -peer0.org1.example.com | [bef 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422a8ee20 env 0xc4235ffd10 txn 0 -peer0.org1.example.com | [bf0 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [84f 01-05 06:37:04.91 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 | [850 01-05 06:37:04.91 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 | [851 01-05 06:37:04.91 UTC] [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 1515134224915115400 evaluation starts -peer0.org1.example.com | [bf1 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [852 01-05 06:37:04.91 UTC] [github.com/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]) -peer0.org1.example.com | [bf2 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [853 01-05 06:37:04.91 UTC] [github.com/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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [bf3 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -orderer.example.com | [854 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer0.org1.example.com | [bf4 01-05 06:37:28.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] -orderer.example.com | [855 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [bf5 01-05 06:37:28.16 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 | [bf6 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [856 01-05 06:37:04.91 UTC] [github.com/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 matched by identity 0 -peer0.org1.example.com | [bf7 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -orderer.example.com | [857 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b5 72 16 a6 8c c5 46 de 67 d6 e0 7c 06 ef bb 0a |.r....F.g..|....| -peer0.org1.example.com | [bf8 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -orderer.example.com | 00000010 c5 26 82 1e ac cc 53 ea 1c c0 bd 31 1a 27 f3 62 |.&....S....1.'.b| -peer0.org1.example.com | [bf9 01-05 06:37:28.16 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 | [bfa 01-05 06:37:28.16 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 | [858 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 48 f4 9a 06 1d 0c 3c 59 5d 9f 19 4d |0D. H..... DEBU constructing new tx simulator txid = [] -orderer.example.com | 00000020 ef 54 49 a6 02 20 2d b2 c5 6b 56 ef f6 95 04 5c |.TI.. -..kV....\| -peer0.org1.example.com | [bfc 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | 00000030 92 94 1e 72 47 08 a6 cd ad bd a4 3c 48 fe d7 ff |...rG...... 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 | [bfe 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [bff 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [859 01-05 06:37:04.91 UTC] [github.com/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 succeeds for identity 0 -peer0.org1.example.com | [c00 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [c01 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [c02 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [85a 01-05 06:37:04.91 UTC] [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 1515134224915115400 evaluation succeeds -orderer.example.com | [85b 01-05 06:37:04.91 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 -peer0.org1.example.com | [c03 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [c04 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [c05 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [c06 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [c07 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [85c 01-05 06:37:04.91 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 | [85d 01-05 06:37:04.91 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.org1.example.com | [c08 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [85e 01-05 06:37:04.91 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 | [c09 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [85f 01-05 06:37:04.91 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 | [860 01-05 06:37:04.91 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 | [861 01-05 06:37:04.91 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:44170 -orderer.example.com | [862 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [863 01-05 06:37:04.92 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44170: rpc error: code = Canceled desc = context canceled -orderer.example.com | [864 01-05 06:37:04.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [865 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [866 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [867 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [c0a 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [868 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [869 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [86a 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...184637678E501C2306383636388256A6 -orderer.example.com | [86b 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 05E190680919D82C00FBD9C065CCEFB11B54476ECBDC2A18130AC2CB83448968 -orderer.example.com | [86c 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [86d 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [86e 01-05 06:37:06.92 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 | [86f 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [870 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [871 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...184637678E501C2306383636388256A6 -peer0.org1.example.com | [c0b 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [c0c 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [872 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 116018FE77B3DD8A8716BBB9C95C7192C502A3EAEA4A91C97CA4D5CD8E76528D -orderer.example.com | [873 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -orderer.example.com | txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 +peer0.org1.example.com | [bd2 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01,syscc=true,proposal=0xc4275dcc30,canname=escc:1.1.0 +orderer.example.com | [88e 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50737], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [88f 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 +peer0.org1.example.com | [bd3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [890 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +orderer.example.com | [891 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5325], Going to peek [8] bytes +peer0.org1.example.com | [bd4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [bd5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [892 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5323], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} +peer0.org1.example.com | [bd6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [894 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +orderer.example.com | [895 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5325], Going to peek [8] bytes +peer0.org1.example.com | [bd7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [bd8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [bd9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [bda 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Move state message TRANSACTION +peer0.org1.example.com | [bdb 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [bdc 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [896 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5323], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} +orderer.example.com | [897 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] +orderer.example.com | [898 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +orderer.example.com | [899 01-13 06:14:38.92 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 | [893 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] +peer0.org1.example.com | [bdd 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]sending state message TRANSACTION +orderer.example.com | [89a 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +orderer.example.com | [89b 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +peer0.org1.example.com | [bde 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Received message TRANSACTION from shim +orderer.example.com | [89c 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [89d 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50210 +orderer.example.com | [89e 01-13 06:14:44.58 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.8:50210 with txid '1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421' of type ENDORSER_TRANSACTION +orderer.example.com | [89f 01-13 06:14:44.58 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 | [8a0 01-13 06:14:44.58 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 | [8a1 01-13 06:14:44.58 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 | [8a2 01-13 06:14:44.58 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 | [8a3 01-13 06:14:44.58 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 | [8a4 01-13 06:14:44.58 UTC] [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 0xc42000e218 gate 1515824084589852584 evaluation starts +orderer.example.com | [8a5 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [bdf 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [8a6 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [be0 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [94979fec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [8a7 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +peer0.org1.example.com | [be1 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [8a8 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 principal evaluation fails +peer0.org1.example.com | [be2 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [8a9 01-13 06:14:44.59 UTC] [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 0xc42000e218 gate 1515824084589852584 evaluation fails +peer0.org1.example.com | [be3 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Transaction completed. Sending COMPLETED +orderer.example.com | [8aa 01-13 06:14:44.59 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 +peer0.org1.example.com | [be4 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Move state message COMPLETED +peer0.org1.example.com | [be5 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [8ab 01-13 06:14:44.59 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 +peer0.org1.example.com | [be6 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]send state message COMPLETED +peer0.org1.example.com | [be7 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Received message COMPLETED from shim +orderer.example.com | [8ac 01-13 06:14:44.59 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 ] +peer0.org1.example.com | [be8 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [be9 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01]HandleMessage- COMPLETED. Notify +orderer.example.com | [8ad 01-13 06:14:44.59 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 +peer0.org1.example.com | [bea 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01, channelID:businesschannel +peer0.org1.example.com | [beb 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [bec 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [8ae 01-13 06:14:44.59 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 +peer0.org1.example.com | [bed 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [8af 01-13 06:14:44.59 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 == +peer0.org1.example.com | [bee 01-13 06:14:38.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 [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +orderer.example.com | [8b0 01-13 06:14:44.59 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 +peer0.org1.example.com | [bef 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53710) +peer0.org1.example.com | [bf0 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org1.example.com | [bf1 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +orderer.example.com | [8b1 01-13 06:14:44.59 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 == +peer0.org1.example.com | [bf2 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [bf3 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [bf4 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42385e600 env 0xc4236bd920 txn 0 +orderer.example.com | [8b2 01-13 06:14:44.59 UTC] [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 1515824084591748184 evaluation starts +peer0.org1.example.com | [bf5 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4236bd920 +peer0.org1.example.com | [bf6 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +peer0.org1.example.com | [bf7 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [bf8 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [8b3 01-13 06:14:44.59 UTC] [github.com/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.org1.example.com | [bf9 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer0.org1.example.com | [bfa 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [8b4 01-13 06:14:44.59 UTC] [github.com/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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [bfb 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [bfc 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42386c000, header channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +orderer.example.com | [8b5 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer0.org1.example.com | [bfd 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [8b6 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [bfe 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [8b7 01-13 06:14:44.59 UTC] [github.com/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 matched by identity 0 +peer0.org1.example.com | [bff 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [8b8 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 18 53 5d aa ee 77 7d 8e 4b 1e 15 01 55 b1 9c db |.S]..w}.K...U...| +orderer.example.com | 00000010 79 89 d4 27 11 a2 8b 12 ab 1d be 7f 44 5a cf d2 |y..'........DZ..| +peer0.org1.example.com | [c00 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | [8b9 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 7e a3 9d d4 14 a8 01 16 94 9c 91 |0D. "~..........| +peer0.org1.example.com | [c01 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +peer0.org1.example.com | [c02 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | 00000010 00 22 a0 21 cf c2 00 e5 42 ca 9e 7e 8a 79 ac 1c |.".!....B..~.y..| +peer0.org1.example.com | [c03 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4236bd920 envbytes 0xc42386a000 +orderer.example.com | 00000020 0e 9f f8 a0 02 20 33 8b 10 b0 c9 0d d5 6c 4f 10 |..... 3......lO.| +orderer.example.com | 00000030 86 90 1f b9 55 87 94 74 65 4f eb fa 4d 90 fa 7c |....U..teO..M..|| +peer0.org1.example.com | [c04 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42386a000 +orderer.example.com | 00000040 ee 46 93 3c 36 18 |.F.<6.| +peer0.org1.example.com | [c05 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [8ba 01-13 06:14:44.59 UTC] [github.com/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 succeeds for identity 0 +peer0.org1.example.com | [c06 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +orderer.example.com | [8bb 01-13 06:14:44.59 UTC] [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 1515824084591748184 evaluation succeeds +orderer.example.com | [8bc 01-13 06:14:44.59 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 +peer0.org1.example.com | [c07 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=29b6a48c-7446-4f70-84f7-5772889ea6e0,syscc=true,proposal=0x0,canname=vscc:1.1.0 +orderer.example.com | [8bd 01-13 06:14:44.59 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 +peer0.org1.example.com | [c08 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 chaindID businesschannel +orderer.example.com | [8be 01-13 06:14:44.59 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.org1.example.com | [c09 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [c0a 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [8bf 01-13 06:14:44.59 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 | [c0b 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +orderer.example.com | [8c0 01-13 06:14:44.59 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 | [8c1 01-13 06:14:44.59 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 | [8c2 01-13 06:14:44.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 ENDORSER_TRANSACTION from 172.18.0.8:50210 +peer0.org1.example.com | [c0c 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [29b6a48c]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [8c3 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +peer0.org1.example.com | [c0d 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [c0e 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [29b6a48c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [8c4 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50210, hangup +peer0.org1.example.com | [c0f 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29b6a48c]Move state message TRANSACTION +orderer.example.com | [8c5 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [c10 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [29b6a48c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [8c6 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +peer0.org1.example.com | [c11 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [8c7 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [c12 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29b6a48c]sending state message TRANSACTION +orderer.example.com | [8c8 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c13 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]Received message TRANSACTION from shim +orderer.example.com | [8c9 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [c14 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [29b6a48c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [8ca 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c15 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [29b6a48c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [8cb 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E80E2B7D7263793F27D00A32E5920420 +orderer.example.com | [8cc 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 12C11C5455E35CF1A4CB8EC067BC9BBCFBD5DD7A1B4628886717428EAAA99E3D +peer0.org1.example.com | [c16 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [8cd 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [c17 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [8ce 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8cf 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +peer0.org1.example.com | [c18 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [8d0 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8d1 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c19 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [8d2 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...E80E2B7D7263793F27D00A32E5920420 +peer0.org1.example.com | [c1a 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [8d3 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 24E0F19B0AE3DC297101A736092DB7D3B134BBEE2ABB150D90074B40B1109A96 +peer0.org1.example.com | [c1b 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | [8d4 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +peer0.org1.example.com | [c1c 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [c1d 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [669160fd-49ec-4926-896c-92bf149645ad] +orderer.example.com | txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 +peer0.org1.example.com | [c1e 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [c1f 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [669160fd-49ec-4926-896c-92bf149645ad] orderer.example.com | ] -orderer.example.com | [874 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55516], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | [876 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -orderer.example.com | [875 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -orderer.example.com | [877 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4780], Going to peek [8] bytes -orderer.example.com | [878 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -orderer.example.com | [879 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4780], Going to peek [8] bytes -orderer.example.com | [87a 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4778], placementInfo={fileNum=[0], startOffset=[50736], bytesOffset=[50738]} -peer0.org1.example.com | [c0d 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [c0e 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [87c 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4778] read from file [0] -orderer.example.com | [87b 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4778], placementInfo={fileNum=[0], startOffset=[50736], bytesOffset=[50738]} -orderer.example.com | [87d 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -orderer.example.com | [87e 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4778] read from file [0] -orderer.example.com | [880 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -peer0.org1.example.com | [c0f 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [87f 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -orderer.example.com | [881 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -peer0.org1.example.com | [c10 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [882 01-05 06:37:14.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [c11 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [883 01-05 06:37:14.24 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:44180 -peer0.org1.example.com | [c12 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [884 01-05 06:37:14.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:44180 with txid 'ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272' of type ENDORSER_TRANSACTION -orderer.example.com | [885 01-05 06:37:14.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 | [886 01-05 06:37:14.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 -peer0.org1.example.com | [c13 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [c14 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [c15 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [c16 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [c17 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [c18 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [c19 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [c1a 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer0.org1.example.com | [c1b 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer0.org1.example.com | [c1c 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [c1d 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [887 01-05 06:37:14.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 | [888 01-05 06:37:14.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 | [889 01-05 06:37:14.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 | [88a 01-05 06:37:14.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 0xc42000e490 gate 1515134234282474600 evaluation starts -peer0.org1.example.com | [c1e 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [88b 01-05 06:37:14.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 0xc42000e490 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [c1f 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [88c 01-05 06:37:14.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 0xc42000e490 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [c20 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [c21 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [c22 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [88d 01-05 06:37:14.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.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -peer0.org1.example.com | [c23 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [88e 01-05 06:37:14.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.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [88f 01-05 06:37:14.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 0xc42000e490 principal matched by identity 0 -peer0.org1.example.com | [c24 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [890 01-05 06:37:14.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 -> DEBU Verify: digest = 00000000 7e 6a cf 2b 50 ca f7 98 0b 58 c3 93 14 16 70 13 |~j.+P....X....p.| -peer0.org1.example.com | [c25 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 00000010 bf 6d b8 a4 18 de 00 09 57 bd 00 62 97 a9 f4 a8 |.m......W..b....| -peer0.org1.example.com | [c26 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [891 01-05 06:37:14.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 -> DEBU Verify: sig = 00000000 30 45 02 21 00 fb 2a f2 a0 ba 9a 1b 09 c3 99 40 |0E.!..*........@| -peer0.org1.example.com | [c27 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 00000010 53 45 ab 0f 10 70 9a c2 01 c8 66 9e 2f bb a0 3b |SE...p....f./..;| -peer0.org1.example.com | [c28 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 00000020 82 6e 48 29 bc 02 20 7a e8 15 da 9a 7d f3 3a 9b |.nH).. z....}.:.| -peer0.org1.example.com | [c29 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | 00000030 ba 99 a1 77 db 3f 1f c8 20 94 bd 62 8a f2 52 9d |...w.?.. ..b..R.| -orderer.example.com | 00000040 88 f8 b2 16 17 40 b5 |.....@.| -orderer.example.com | [892 01-05 06:37:14.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 0xc42000e490 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [c2a 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [893 01-05 06:37:14.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 0xc42000e490 gate 1515134234282474600 evaluation succeeds -peer0.org1.example.com | [c2b 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [894 01-05 06:37:14.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 -peer0.org1.example.com | [c2c 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [895 01-05 06:37:14.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 -peer0.org1.example.com | [c2d 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [896 01-05 06:37:14.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 -peer0.org1.example.com | [c2e 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [897 01-05 06:37:14.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 -peer0.org1.example.com | [c2f 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [898 01-05 06:37:14.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 | [899 01-05 06:37:14.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 | [89a 01-05 06:37:14.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:44180 -orderer.example.com | [89b 01-05 06:37:14.28 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [89c 01-05 06:37:14.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44180: rpc error: code = Canceled desc = context canceled -orderer.example.com | [89d 01-05 06:37:14.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [c30 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [89e 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -peer0.org1.example.com | [c31 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [c32 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [89f 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [c33 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org1.example.com | [c34 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org1.example.com | [c35 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org1.example.com | [c36 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org1.example.com | [c37 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org1.example.com | [c38 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [c39 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [8a0 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [c3a 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [8a1 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [c3b 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [8a2 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [c3c 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [8a3 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...CCC42BB1C26D35B7E3F798F3B36FA0B2 -peer0.org1.example.com | [c3d 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [c3e 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [8a4 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6B8038DBF156BE331CF9E88DCA2E04DBE419CECBF4E70B0D52A83972231702C9 -orderer.example.com | [8a5 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [c3f 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [c40 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [c41 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [c42 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [c43 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [8a6 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8a7 01-05 06:37:16.28 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 | [8a8 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [c44 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [c45 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [c46 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [c47 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [c48 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [8a9 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [c49 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [c4a 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [8aa 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...CCC42BB1C26D35B7E3F798F3B36FA0B2 -orderer.example.com | [8ab 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6ACC4E9E3C54EDB488764FF97FBCAF46C5B504436CFD577E4959FD423D3C9B89 -peer0.org1.example.com | [c4b 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [c4c 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [8ac 01-05 06:37:16.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -peer0.org1.example.com | [c4d 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [c4e 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 +orderer.example.com | [8d5 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55516], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org1.example.com | [c20 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [c21 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc420396540)} +peer0.org1.example.com | [c22 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +orderer.example.com | [8d6 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 +orderer.example.com | [8d7 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +peer0.org1.example.com | [c23 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]Transaction completed. Sending COMPLETED +orderer.example.com | [8d8 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +peer0.org1.example.com | [c24 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]Move state message COMPLETED +orderer.example.com | [8d9 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} +peer0.org1.example.com | [c25 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [29b6a48c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [8db 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +peer0.org1.example.com | [c26 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]send state message COMPLETED +orderer.example.com | [8da 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +peer0.org1.example.com | [c27 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29b6a48c]Received message COMPLETED from shim +peer0.org1.example.com | [c28 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [29b6a48c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [8dd 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +peer0.org1.example.com | [c29 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [29b6a48c-7446-4f70-84f7-5772889ea6e0]HandleMessage- COMPLETED. Notify +orderer.example.com | [8dc 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +peer0.org1.example.com | [c2a 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:29b6a48c-7446-4f70-84f7-5772889ea6e0, channelID:businesschannel +orderer.example.com | [8de 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} +peer0.org1.example.com | [c2b 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [8e0 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +peer0.org1.example.com | [c2c 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, error Chaincode exp02 is already instantiated +orderer.example.com | [8e1 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +peer0.org1.example.com | [c2d 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +orderer.example.com | [8df 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +peer0.org1.example.com | [c2e 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42386a000 +orderer.example.com | [8e2 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +peer0.org1.example.com | [c2f 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4236bd920 envbytes 0xc42386a000 +orderer.example.com | [8e3 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [8e4 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50234 +peer0.org1.example.com | [c30 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 returned error Chaincode exp02 is already instantiated +orderer.example.com | [8e5 01-13 06:14:52.10 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.8:50234 with txid '66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13' of type ENDORSER_TRANSACTION +peer0.org1.example.com | [c31 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42385e600 env 0xc4236bd920 txn 0 +peer0.org1.example.com | [c32 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +orderer.example.com | [8e6 01-13 06:14:52.10 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 | [8e7 01-13 06:14:52.10 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 +peer0.org1.example.com | [c33 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [8e8 01-13 06:14:52.10 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 == +peer0.org1.example.com | [c34 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +orderer.example.com | [8e9 01-13 06:14:52.10 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 | [8ea 01-13 06:14:52.10 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 == +peer0.org1.example.com | [c35 01-13 06:14:38.97 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 | [c36 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +orderer.example.com | [8eb 01-13 06:14:52.10 UTC] [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 0xc42000e290 gate 1515824092106448287 evaluation starts +peer0.org1.example.com | [c37 01-13 06:14:38.97 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 | [c38 01-13 06:14:38.97 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 [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org1.example.com | [c39 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [8ec 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [c3a 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [8ed 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [c3b 01-13 06:14:38.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 | [c3c 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +orderer.example.com | [8ee 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer0.org1.example.com | [c3d 01-13 06:14:38.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 [4] +orderer.example.com | [8ef 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal evaluation fails +peer0.org1.example.com | [c3e 01-13 06:14:38.98 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{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +orderer.example.com | [8f0 01-13 06:14:52.10 UTC] [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 0xc42000e290 gate 1515824092106448287 evaluation fails +peer0.org1.example.com | txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 +orderer.example.com | [8f1 01-13 06:14:52.10 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 | [8f2 01-13 06:14:52.10 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 | [8f3 01-13 06:14:52.10 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 | [8f4 01-13 06:14:52.10 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 +peer0.org1.example.com | ] +orderer.example.com | [8f5 01-13 06:14:52.10 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 | [8f6 01-13 06:14:52.10 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 | [8f7 01-13 06:14:52.10 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 +peer0.org1.example.com | [c3f 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to index +orderer.example.com | [8f8 01-13 06:14:52.10 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 | [8f9 01-13 06:14:52.10 UTC] [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 1515824092108473387 evaluation starts +peer0.org1.example.com | [c40 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx number:[0] ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to blockNumTranNum index +orderer.example.com | [8fa 01-13 06:14:52.10 UTC] [github.com/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]) +orderer.example.com | [8fb 01-13 06:14:52.10 UTC] [github.com/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 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8fc 01-13 06:14:52.10 UTC] [github.com/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 Org1MSP, got Org2MSP) +orderer.example.com | [8fd 01-13 06:14:52.10 UTC] [github.com/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 | [8fe 01-13 06:14:52.10 UTC] [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 1515824092108473387 evaluation fails +orderer.example.com | [8ff 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [c41 01-13 06:14:38.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=[50742], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [900 01-13 06:14:52.10 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 | [901 01-13 06:14:52.10 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 | [c42 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +orderer.example.com | [902 01-13 06:14:52.10 UTC] [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 0xc42000e2a0 gate 1515824092109803487 evaluation starts +peer0.org1.example.com | [c43 01-13 06:14:38.98 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 | [c44 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +orderer.example.com | [903 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [c45 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +orderer.example.com | [904 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [905 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [c46 01-13 06:14:38.98 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 | [906 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [c47 01-13 06:14:38.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 +orderer.example.com | [907 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 principal matched by identity 0 +peer0.org1.example.com | [c48 01-13 06:14:38.99 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 | [908 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df 7e 3a 6e 4e 92 be b0 de fa d6 08 15 07 6a be |.~:nN.........j.| +orderer.example.com | 00000010 36 11 4d 8d db 24 ba bc 6c 44 90 7e e0 6b 0f 13 |6.M..$..lD.~.k..| +orderer.example.com | [909 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f 54 8d f5 25 69 c1 91 32 0d ae da |0D. oT..%i..2...| +peer0.org1.example.com | [c49 01-13 06:14:38.99 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 | 00000010 30 20 b0 c5 c3 b4 fd 1e 18 99 98 f4 d4 a4 9a 66 |0 .............f| +peer0.org1.example.com | [c4a 01-13 06:14:38.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 [4] with [1] transactions +peer0.org1.example.com | [c4b 01-13 06:14:38.99 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 | 00000020 c1 8e 5b d8 02 20 7d 09 19 84 19 9b ab 19 56 a2 |..[.. }.......V.| +peer0.org1.example.com | [c4c 01-13 06:14:38.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 [4] +peer0.org1.example.com | [c4d 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | 00000030 e4 1f 7f 24 b1 f3 88 a9 5c 7e cb 42 a6 6d aa 32 |...$....\~.B.m.2| +peer0.org1.example.com | [c4e 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 +orderer.example.com | 00000040 7d ca de 70 47 e8 |}..pG.| +peer0.org1.example.com | [c4f 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [90a 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [c50 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [90b 01-13 06:14:52.11 UTC] [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 0xc42000e2a0 gate 1515824092109803487 evaluation succeeds +peer0.org1.example.com | [c51 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [c52 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [90c 01-13 06:14:52.11 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 +peer0.org1.example.com | [c53 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [90d 01-13 06:14:52.11 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 | [90e 01-13 06:14:52.11 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.org1.example.com | [c54 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [90f 01-13 06:14:52.11 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 | [c55 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [c56 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [910 01-13 06:14:52.11 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 +peer0.org1.example.com | [c57 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [911 01-13 06:14:52.11 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 +peer0.org1.example.com | [c58 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53712 +orderer.example.com | [912 01-13 06:14:52.11 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.8:50234 +peer0.org1.example.com | [c59 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423a38ab0 +peer0.org1.example.com | [c5a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [c5b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [c5c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [c5d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [913 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +peer0.org1.example.com | [c5e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [914 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50234, hangup +orderer.example.com | [915 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [c5f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423927db0, header 0xc423a38e10 +peer0.org1.example.com | [c60 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [c61 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa +orderer.example.com | [916 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +peer0.org1.example.com | [c62 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +orderer.example.com | [917 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [c63 01-13 06:14:39.64 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 | [c64 01-13 06:14:39.64 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 = [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +peer0.org1.example.com | [c65 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel +peer0.org1.example.com | [c66 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [c67 01-13 06:14:39.64 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.1.0,txid=614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa,syscc=true,proposal=0xc423927db0,canname=qscc:1.1.0 +peer0.org1.example.com | [c68 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [918 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c69 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [c6a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [c6b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [919 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [91a 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c6c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [c6d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [c6e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [c6f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Move state message TRANSACTION +peer0.org1.example.com | [c70 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [c71 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [c72 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]sending state message TRANSACTION +orderer.example.com | [91b 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...64A9A8D419F47B03DA2A101A27A0E1E2 +peer0.org1.example.com | [c73 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Received message TRANSACTION from shim +orderer.example.com | [91c 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E8108DF985CB8A43EE411DBA53CB84667AE519EBBFDAA2CB70AE45469BD558D4 +peer0.org1.example.com | [c74 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [91d 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [c75 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [614cd3aa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [c76 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [91e 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [91f 01-13 06:14:54.11 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 | [920 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [c77 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Transaction completed. Sending COMPLETED +orderer.example.com | [921 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c78 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Move state message COMPLETED +orderer.example.com | [922 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...64A9A8D419F47B03DA2A101A27A0E1E2 +peer0.org1.example.com | [c79 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [923 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C9EECA8F80D65932DD3847B314B67AEF8061167EEE0BE86621C4A2F8B649C61D +peer0.org1.example.com | [c7a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]send state message COMPLETED +orderer.example.com | [924 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +peer0.org1.example.com | [c7b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Received message COMPLETED from shim +orderer.example.com | txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 orderer.example.com | ] -peer0.org1.example.com | [c4f 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [8ad 01-05 06:37:16.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60301], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [c50 01-05 06:37:28.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.org1.example.com | [c51 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [c52 01-05 06:37:28.32 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 | [c53 01-05 06:37:28.32 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 -orderer.example.com | [8af 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -peer0.org1.example.com | [c54 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [8b0 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -peer0.org1.example.com | [c55 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [8ae 01-05 06:37:16.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -peer0.org1.example.com | [c56 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [8b2 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -peer0.org1.example.com | [c57 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -orderer.example.com | [8b3 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -peer0.org1.example.com | [c58 01-05 06:37:28.32 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] -orderer.example.com | [8b1 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -peer0.org1.example.com | [c59 01-05 06:37:28.32 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{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -orderer.example.com | [8b5 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -peer0.org1.example.com | txId= locPointer=offset=71, bytesLength=19401 -orderer.example.com | [8b6 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -orderer.example.com | [8b7 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -peer0.org1.example.com | ] -orderer.example.com | [8b4 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -peer0.org1.example.com | [c5a 01-05 06:37:28.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=60379, bytesLength=19401] for tx ID: [] to index -peer0.org1.example.com | [c5b 01-05 06:37:28.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=60379, bytesLength=19401] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [8b8 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [8b9 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -peer0.org1.example.com | [c5c 01-05 06:37:28.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] -orderer.example.com | [8ba 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -peer0.org1.example.com | [c5d 01-05 06:37:28.32 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 | [c5e 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -orderer.example.com | [8bb 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [c5f 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -orderer.example.com | [8bc 01-05 06:37:17.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:44200 -peer0.org1.example.com | [c60 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -orderer.example.com | [8bd 01-05 06:37:17.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:44200 -peer0.org1.example.com | [c61 01-05 06:37:28.33 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 | [8be 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [c62 01-05 06:37:28.33 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 | [8bf 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [c63 01-05 06:37:28.33 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 | [c64 01-05 06:37:28.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 | [8c0 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [c65 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -orderer.example.com | [8c1 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [c66 01-05 06:37:28.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 [7] with [1] transactions -orderer.example.com | [8c2 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer0.org1.example.com | [c67 01-05 06:37:28.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 | [8c3 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [c68 01-05 06:37:28.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 [7] -orderer.example.com | [8c4 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [c69 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [c7c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [925 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60299], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [926 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [c7d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [c7e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa, channelID:businesschannel +orderer.example.com | [927 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +peer0.org1.example.com | [c7f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [c80 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [928 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +peer0.org1.example.com | [c81 01-13 06:14:39.64 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 | [c82 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +orderer.example.com | [929 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +orderer.example.com | [92a 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +peer0.org1.example.com | [c83 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [92b 01-13 06:14:54.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 | [92d 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 +peer0.org1.example.com | [c84 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [92c 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [c85 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [92e 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +orderer.example.com | [92f 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +peer0.org1.example.com | [c86 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel version: 1.1.0 +orderer.example.com | [930 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +peer0.org1.example.com | [c87 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa,syscc=true,proposal=0xc423927db0,canname=escc:1.1.0 +orderer.example.com | [931 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +peer0.org1.example.com | [c88 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [c89 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [932 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [c8a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [933 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [c8b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [934 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50260 +peer0.org1.example.com | [c8c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [c8d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [c8e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [935 01-13 06:14:54.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.8:50260 +peer0.org1.example.com | [c8f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Move state message TRANSACTION +orderer.example.com | [936 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [c90 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [937 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [c91 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [938 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [c92 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]sending state message TRANSACTION +orderer.example.com | [939 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [c93 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Received message TRANSACTION from shim +orderer.example.com | [93a 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [93b 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [93c 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [c6a 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [c6b 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [c6c 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [c94 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [c95 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [614cd3aa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [c6d 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [c6e 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [c6f 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [c70 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org1.example.com | [c71 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [c96 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [c97 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [c98 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [c99 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Move state message COMPLETED orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org1.example.com | [c72 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [c73 01-05 06:37:30.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.6:40722, reason: Timed out waiting for connection message from 172.18.0.6:40722 -peer0.org1.example.com | [c74 01-05 06:37:30.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.6:40722 +peer0.org1.example.com | [c9a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org1.example.com | [c9b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]send state message COMPLETED orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8c5 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134237761788800 evaluation starts -orderer.example.com | [8c6 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8c7 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8c8 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [8c9 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 principal evaluation fails -orderer.example.com | [8ca 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134237761788800 evaluation fails -orderer.example.com | [8cb 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [8cc 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [8cd 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [8ce 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138400 gate 1515134237768168800 evaluation starts -orderer.example.com | [8cf 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8d0 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8d1 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [8d2 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 principal evaluation fails -orderer.example.com | [8d3 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138400 gate 1515134237768168800 evaluation fails -orderer.example.com | [8d4 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [8d5 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [8d6 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [8d7 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [8d8 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [8d9 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [8da 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [8db 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [8dc 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134237777023300 evaluation starts -orderer.example.com | [8dd 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8de 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8df 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [8e0 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [8e1 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 principal matched by identity 0 -orderer.example.com | [8e2 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a3 11 e1 6a b7 54 e2 4a 1c 07 bb f4 f6 65 60 41 |...j.T.J.....e`A| -orderer.example.com | 00000010 2a 43 62 7b 5f a8 c0 7b cf 2a c5 d3 39 f0 20 e5 |*Cb{_..{.*..9. .| -orderer.example.com | [8e3 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 43 02 20 3b f7 f0 74 2e 79 84 e6 97 0a 54 54 |0C. ;..t.y....TT| -orderer.example.com | 00000010 bd 06 34 af 41 37 15 8c 20 33 4d da 97 90 4a fd |..4.A7.. 3M...J.| -orderer.example.com | 00000020 ae c2 ea 81 02 1f 50 43 aa a3 10 ab 66 62 f0 2f |......PC....fb./| -orderer.example.com | 00000030 7b e5 a6 8e 66 f1 cb ec e8 84 e9 d6 92 b4 d8 d2 |{...f...........| -orderer.example.com | 00000040 14 be 23 d2 8a |..#..| -orderer.example.com | [8e4 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 principal evaluation succeeds for identity 0 -orderer.example.com | [8e5 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134237777023300 evaluation succeeds -orderer.example.com | [8e6 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [8e7 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [8e8 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [8e9 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [8ea 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [8eb 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [8ec 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42016bda0) start: > stop: > from 172.18.0.7:44200 -orderer.example.com | [8ed 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [8ee 01-05 06:37:17.78 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=[55516] -orderer.example.com | [8ef 01-05 06:37:17.78 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 | [8f0 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -orderer.example.com | [8f1 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [8f2 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42016bda0) for 172.18.0.7:44200 -orderer.example.com | [8f3 01-05 06:37:17.78 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:44200 for (0xc42016bda0) -orderer.example.com | [8f5 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [8f6 01-05 06:37:17.78 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 | [8f4 01-05 06:37:17.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:44200 -orderer.example.com | [8f8 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [8f9 01-05 06:37:17.78 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 | [8f7 01-05 06:37:17.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:44200 -orderer.example.com | [8fa 01-05 06:37:17.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44200: rpc error: code = Canceled desc = context canceled -orderer.example.com | [8fb 01-05 06:37:17.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [8fc 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [8fd 01-05 06:37:18.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:44202 -orderer.example.com | [8fe 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44202 -orderer.example.com | [8ff 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [900 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [901 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [902 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [903 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [904 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134238058831100 evaluation starts -orderer.example.com | [905 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [906 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [907 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [908 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -orderer.example.com | [909 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134238058831100 evaluation fails -orderer.example.com | [90a 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [90b 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [90c 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [90d 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134238059603800 evaluation starts -orderer.example.com | [90e 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [90f 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [910 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [911 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation fails -orderer.example.com | [912 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134238059603800 evaluation fails -orderer.example.com | [913 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [914 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [915 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [916 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [917 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [918 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [919 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [91a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [91b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134238060355500 evaluation starts -orderer.example.com | [91c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [91d 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [91e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [91f 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [920 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal matched by identity 0 -orderer.example.com | [921 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d1 6d 8a 3d 94 82 8f 08 22 e5 e5 13 e6 68 9f 76 |.m.=...."....h.v| -orderer.example.com | 00000010 c9 44 1f d6 0d 4a 21 ce 73 c7 a6 0d db 4e 08 0b |.D...J!.s....N..| -orderer.example.com | [922 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 49 1b 6b bd eb 26 9b 60 48 61 b5 1a |0D. I.k..&.`Ha..| -orderer.example.com | 00000010 a6 3b cb 42 17 13 86 7b 9a dc 62 dd 04 d7 5d 0f |.;.B...{..b...].| -orderer.example.com | 00000020 c2 32 9e 4b 02 20 5b 89 52 9a 6e 28 85 aa 66 41 |.2.K. [.R.n(..fA| -orderer.example.com | 00000030 2e 09 8f 2b 43 19 48 7c e9 82 c7 26 ff d9 b4 4b |...+C.H|...&...K| -orderer.example.com | 00000040 18 69 81 e4 a9 df |.i....| -orderer.example.com | [923 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation succeeds for identity 0 -orderer.example.com | [924 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134238060355500 evaluation succeeds -orderer.example.com | [925 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [926 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [927 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [928 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [929 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [92a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [92b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42028f0c0) start: > stop: > from 172.18.0.7:44202 -orderer.example.com | [92c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [92d 01-05 06:37:18.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=[55516] -orderer.example.com | [92e 01-05 06:37:18.06 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 | [92f 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -orderer.example.com | [930 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [931 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42028f0c0) for 172.18.0.7:44202 -orderer.example.com | [932 01-05 06:37:18.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:44202 for (0xc42028f0c0) -orderer.example.com | [933 01-05 06:37:18.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:44202 -orderer.example.com | [934 01-05 06:37:18.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:44202 -orderer.example.com | [935 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [936 01-05 06:37:18.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 | [937 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [938 01-05 06:37:18.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 | [939 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [93a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [93b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [93c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [93d 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [93e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134238065636800 evaluation starts -orderer.example.com | [93f 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [940 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [941 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [942 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 principal evaluation fails -orderer.example.com | [943 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134238065636800 evaluation fails -orderer.example.com | [944 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [945 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [946 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [947 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134238066733100 evaluation starts -orderer.example.com | [948 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [949 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [94a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [94b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 principal evaluation fails -orderer.example.com | [94c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134238066733100 evaluation fails -orderer.example.com | [94d 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [94e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [94f 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [950 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [951 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [952 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [953 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [954 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [955 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134238070939900 evaluation starts -orderer.example.com | [956 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [957 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [958 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [959 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [95a 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal matched by identity 0 -orderer.example.com | [95b 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b5 ae 68 b3 e3 9e f4 23 2a 0a de 65 ba d9 d9 45 |..h....#*..e...E| -orderer.example.com | 00000010 ee 40 49 a2 44 6f de 19 c7 70 0a b9 46 b8 8f 31 |.@I.Do...p..F..1| -orderer.example.com | [95c 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 01 ad 86 2d 42 3f 41 06 e3 69 93 f1 |0D. ...-B?A..i..| -orderer.example.com | 00000010 27 a4 3e a5 30 bc 19 dc e5 65 f5 03 e6 a8 27 38 |'.>.0....e....'8| -orderer.example.com | 00000020 7a 37 ab cf 02 20 79 90 2d bb 91 eb 02 f1 0b fc |z7... y.-.......| -orderer.example.com | 00000030 0b c8 2a 2f 27 5d 51 0d dc 0f 2c 1f dc 53 a1 ed |..*/']Q...,..S..| -orderer.example.com | 00000040 02 df e1 6a 24 68 |...j$h| -orderer.example.com | [95d 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal evaluation succeeds for identity 0 -orderer.example.com | [95e 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134238070939900 evaluation succeeds -orderer.example.com | [95f 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [960 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [961 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [962 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [963 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [964 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [965 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203a5000) start: > stop: > from 172.18.0.7:44202 -orderer.example.com | [966 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [967 01-05 06:37:18.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=[26077] -orderer.example.com | [968 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34224], Going to peek [8] bytes -orderer.example.com | [969 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -orderer.example.com | [96a 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [96b 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203a5000) for 172.18.0.7:44202 -orderer.example.com | [96c 01-05 06:37:18.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:44202 for (0xc4203a5000) -orderer.example.com | [96e 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [96f 01-05 06:37:18.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 | [96d 01-05 06:37:18.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:44202 -orderer.example.com | [971 01-05 06:37:18.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:44202 -orderer.example.com | [970 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [972 01-05 06:37:18.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 | [973 01-05 06:37:18.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44202: rpc error: code = Canceled desc = context canceled -orderer.example.com | [974 01-05 06:37:18.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [975 01-05 06:37:18.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [976 01-05 06:37:18.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:44204 -orderer.example.com | [977 01-05 06:37:18.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:44204 -orderer.example.com | [978 01-05 06:37:18.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [979 01-05 06:37:18.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [97a 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [97b 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [97c 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [97d 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515134238311235000 evaluation starts -orderer.example.com | [97e 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [97f 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [980 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [981 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation fails -orderer.example.com | [982 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515134238311235000 evaluation fails -orderer.example.com | [983 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [984 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [985 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [986 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515134238312708200 evaluation starts -orderer.example.com | [987 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [988 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [989 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [98a 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation fails -orderer.example.com | [98b 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515134238312708200 evaluation fails -orderer.example.com | [98c 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [98d 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [98e 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [98f 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [990 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [991 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [992 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [993 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [994 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1515134238314748800 evaluation starts -orderer.example.com | [995 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [996 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [997 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [998 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [999 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal matched by identity 0 -orderer.example.com | [99a 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 79 9f 0e 7e 3a 8b 64 05 8e 6d f0 e6 b1 a2 1b 07 |y..~:.d..m......| -orderer.example.com | 00000010 bd 3b 16 bb 12 68 70 07 8a 9d 07 04 36 2a 54 d1 |.;...hp.....6*T.| -orderer.example.com | [99b 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 a1 43 04 7d 9f d4 17 cd 72 75 c1 |0D. x.C.}....ru.| -orderer.example.com | 00000010 7e 03 2e 98 49 e9 21 e3 39 ea f5 00 64 d7 10 a0 |~...I.!.9...d...| -orderer.example.com | 00000020 47 18 28 41 02 20 40 c1 60 c4 80 5b a4 b2 e3 d5 |G.(A. @.`..[....| -orderer.example.com | 00000030 c7 6a 8f 4b e9 1a e4 28 7f 2f 54 5f 16 d8 fe ee |.j.K...(./T_....| -orderer.example.com | 00000040 ee ca 80 52 13 93 |...R..| -orderer.example.com | [99c 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal evaluation succeeds for identity 0 -orderer.example.com | [99d 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1515134238314748800 evaluation succeeds -orderer.example.com | [99e 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [99f 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9a0 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [9a1 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [9a2 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [9a3 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [9a4 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202fe420) start: > stop: > from 172.18.0.7:44204 -orderer.example.com | [9a5 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9a6 01-05 06:37:18.32 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 | [9a7 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60301], Going to peek [8] bytes -orderer.example.com | [9a8 01-05 06:37:18.32 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 | [9a9 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -orderer.example.com | [9aa 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202fe420) for 172.18.0.7:44204 -orderer.example.com | [9ab 01-05 06:37:18.32 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:44204 for (0xc4202fe420) -orderer.example.com | [9ad 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9ae 01-05 06:37:18.32 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 | [9ac 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44204 -orderer.example.com | [9af 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9b0 01-05 06:37:18.32 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 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44204 -orderer.example.com | [9b2 01-05 06:37:18.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44204: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9b3 01-05 06:37:18.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9b4 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9b5 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44206 -orderer.example.com | [9b6 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44206 -orderer.example.com | [9b7 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [9b8 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9b9 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [9ba 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9bb 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [9bc 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138548 gate 1515134238527434500 evaluation starts -orderer.example.com | [9bd 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9be 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9bf 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [9c0 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 principal evaluation fails -orderer.example.com | [9c1 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138548 gate 1515134238527434500 evaluation fails -orderer.example.com | [9c2 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [9c3 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [9c4 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [9c5 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138550 gate 1515134238528020600 evaluation starts -orderer.example.com | [9c6 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9c7 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9c8 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [9c9 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 principal evaluation fails -orderer.example.com | [9ca 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138550 gate 1515134238528020600 evaluation fails -orderer.example.com | [9cb 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [9cc 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [9cd 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [9ce 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [9cf 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [9d0 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [9d1 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9d2 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [9d3 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138558 gate 1515134238529222200 evaluation starts -orderer.example.com | [9d4 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138558 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9d5 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138558 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9d6 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [9d7 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [9d8 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138558 principal matched by identity 0 -orderer.example.com | [9d9 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 b0 dc 0c a2 72 8b a1 19 ec 21 1f d8 6f ea 11 |.....r....!..o..| -orderer.example.com | 00000010 f0 8f da 3e 8f cc d9 27 3e bf e7 ec a6 93 3c a2 |...>...'>.....<.| -orderer.example.com | [9da 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 03 5f a9 7a 0d 4d 01 5d c9 99 73 |0D. #._.z.M.]..s| -orderer.example.com | 00000010 35 24 1e d7 fb 01 f4 5a 3c 41 64 25 3a 04 c4 a8 |5$.....Z DEBU 0xc420138558 principal evaluation succeeds for identity 0 -orderer.example.com | [9dc 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138558 gate 1515134238529222200 evaluation succeeds -orderer.example.com | [9dd 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9de 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9df 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [9e0 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [9e1 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [9e2 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [9e3 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201b1ac0) start: > stop: > from 172.18.0.7:44206 -orderer.example.com | [9e4 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9e5 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -orderer.example.com | [9e6 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48181], Going to peek [8] bytes -orderer.example.com | [9e7 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [9e8 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -orderer.example.com | [9e9 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201b1ac0) for 172.18.0.7:44206 -orderer.example.com | [9ea 01-05 06:37:18.53 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:44206 for (0xc4201b1ac0) -orderer.example.com | [9ec 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9ed 01-05 06:37:18.54 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 | [9eb 01-05 06:37:18.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:44206 -orderer.example.com | [9ef 01-05 06:37:18.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:44206 -orderer.example.com | [9ee 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9f0 01-05 06:37:18.54 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 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44206: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9f2 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9f3 01-05 06:37:19.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9f4 01-05 06:37:19.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44208 -orderer.example.com | [9f5 01-05 06:37:19.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:44208 -orderer.example.com | [9f6 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [9f7 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9f8 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [9f9 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9fa 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [9fb 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a0 gate 1515134239154488900 evaluation starts -orderer.example.com | [9fc 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9fd 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9fe 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [9ff 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 principal evaluation fails -orderer.example.com | [a00 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a0 gate 1515134239154488900 evaluation fails -orderer.example.com | [a01 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a02 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a03 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [a04 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a8 gate 1515134239155109900 evaluation starts -orderer.example.com | [a05 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a06 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a07 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a08 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 principal evaluation fails -orderer.example.com | [a09 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a8 gate 1515134239155109900 evaluation fails -orderer.example.com | [a0a 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a0b 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a0c 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [a0d 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [a0e 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [a0f 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a10 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a11 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a12 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385b0 gate 1515134239155773300 evaluation starts -orderer.example.com | [a13 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a14 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a15 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a16 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a17 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 principal matched by identity 0 -orderer.example.com | [a18 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e2 b5 b0 0c 46 15 60 f6 1e 7d 6d 14 f6 ac 3b 5a |....F.`..}m...;Z| -orderer.example.com | 00000010 c0 09 ce b2 62 b5 5f e9 84 e7 42 8f 84 a5 d6 6d |....b._...B....m| -orderer.example.com | [a19 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 28 d0 6a 27 ff f3 f8 d1 52 60 85 8b |0D. (.j'....R`..| -orderer.example.com | 00000010 73 29 f3 c5 4b 16 98 e5 8e 4b 89 ff 26 20 e6 78 |s)..K....K..& .x| -orderer.example.com | 00000020 1e ca cc e2 02 20 38 c4 d2 aa d2 a3 68 98 92 a9 |..... 8.....h...| -orderer.example.com | 00000030 2a 9b b0 ba f8 48 29 f0 57 6a a0 0c be 17 b7 73 |*....H).Wj.....s| -orderer.example.com | 00000040 c5 ce 27 b9 ab 2c |..'..,| -orderer.example.com | [a1a 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 principal evaluation succeeds for identity 0 -orderer.example.com | [a1b 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385b0 gate 1515134239155773300 evaluation succeeds -orderer.example.com | [a1c 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a1d 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a1e 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a1f 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a20 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a21 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a22 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200d37a0) start: > stop: > from 172.18.0.7:44208 -orderer.example.com | [a23 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a24 01-05 06:37:19.16 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=[26077] -orderer.example.com | [a25 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34224], Going to peek [8] bytes -orderer.example.com | [a26 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -orderer.example.com | [a27 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [a28 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d37a0) for 172.18.0.7:44208 -orderer.example.com | [a29 01-05 06:37:19.17 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:44208 for (0xc4200d37a0) -orderer.example.com | [a2a 01-05 06:37:19.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44208 -orderer.example.com | [a2b 01-05 06:37:19.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44208 -orderer.example.com | [a2c 01-05 06:37:19.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a2e 01-05 06:37:19.18 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 | [a2d 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44208: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a2f 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a30 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a31 01-05 06:37:19.18 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 | [a32 01-05 06:37:19.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a33 01-05 06:37:19.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44210 -orderer.example.com | [a34 01-05 06:37:19.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44210 -orderer.example.com | [a35 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a36 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a37 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [a38 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a39 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [a3a 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138600 gate 1515134239533137700 evaluation starts -orderer.example.com | [a3b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a3c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a3d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [a3e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 principal evaluation fails -orderer.example.com | [a3f 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138600 gate 1515134239533137700 evaluation fails -orderer.example.com | [a40 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a41 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a42 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [a43 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138630 gate 1515134239534488300 evaluation starts -orderer.example.com | [a44 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a45 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a46 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a47 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 principal evaluation fails -orderer.example.com | [a48 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138630 gate 1515134239534488300 evaluation fails -orderer.example.com | [a49 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a4a 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a4b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [a4c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [a4d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [a4e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a4f 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a50 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a51 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138638 gate 1515134239535548100 evaluation starts -orderer.example.com | [a52 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a53 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a54 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a55 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a56 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 principal matched by identity 0 -orderer.example.com | [a57 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2a 4e 3a a7 0a e7 12 06 93 b5 31 21 b1 82 45 73 |*N:.......1!..Es| -orderer.example.com | 00000010 02 5c 85 89 42 57 6c 52 99 37 87 54 fa a9 49 ee |.\..BWlR.7.T..I.| -orderer.example.com | [a58 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5a b7 67 25 08 fe 18 2f 47 c5 36 37 |0D. Z.g%.../G.67| -orderer.example.com | 00000010 5f 94 be a7 77 6f 2b e6 d9 58 79 16 72 10 30 a9 |_...wo+..Xy.r.0.| -orderer.example.com | 00000020 8e 29 e0 ba 02 20 45 8e 53 b8 23 59 35 51 0c d4 |.)... E.S.#Y5Q..| -orderer.example.com | 00000030 33 ae 01 83 27 1d 87 e9 8b 1d 36 11 c7 d7 69 c8 |3...'.....6...i.| -orderer.example.com | 00000040 f8 8a 43 11 9c 31 |..C..1| -orderer.example.com | [a59 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 principal evaluation succeeds for identity 0 -orderer.example.com | [a5a 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138638 gate 1515134239535548100 evaluation succeeds -orderer.example.com | [a5b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a5c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a5d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a5e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a5f 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a60 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a61 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202a8c80) start: > stop: > from 172.18.0.7:44210 -orderer.example.com | [a62 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a63 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40092] -orderer.example.com | [a64 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20209], Going to peek [8] bytes -orderer.example.com | [a65 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -orderer.example.com | [a66 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -orderer.example.com | [a67 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202a8c80) for 172.18.0.7:44210 -orderer.example.com | [a68 01-05 06:37:19.53 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:44210 for (0xc4202a8c80) -orderer.example.com | [a69 01-05 06:37:19.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:44210 -orderer.example.com | [a6a 01-05 06:37:19.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:44210 -orderer.example.com | [a6b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a6c 01-05 06:37:19.53 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 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a6e 01-05 06:37:19.53 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 01-05 06:37:19.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44210: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a70 01-05 06:37:19.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a71 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a72 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44212 -orderer.example.com | [a73 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44212 -orderer.example.com | [a74 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a75 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a76 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [a77 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a78 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [a79 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a0 gate 1515134239728589700 evaluation starts -orderer.example.com | [a7a 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a7b 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a7c 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [a7d 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 principal evaluation fails -orderer.example.com | [a7e 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a0 gate 1515134239728589700 evaluation fails -orderer.example.com | [a7f 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a80 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [a81 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [a82 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a8 gate 1515134239729472100 evaluation starts -orderer.example.com | [a83 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a84 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a85 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [a86 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 principal evaluation fails -orderer.example.com | [a87 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a8 gate 1515134239729472100 evaluation fails -orderer.example.com | [a88 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a89 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [a8a 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [a8b 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [a8c 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [a8d 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a8e 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a8f 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a90 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386b8 gate 1515134239729988100 evaluation starts -orderer.example.com | [a91 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a92 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a93 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a94 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a95 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 principal matched by identity 0 -orderer.example.com | [a96 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 50 f9 1d 37 1c 76 fd df 32 c2 e0 02 b3 ae 31 02 |P..7.v..2.....1.| -orderer.example.com | 00000010 29 c4 1e 90 b1 0e e5 ba b9 91 49 8c c0 f2 c1 4a |).........I....J| -orderer.example.com | [a97 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f7 a8 29 64 48 c8 62 82 eb 74 19 |0E.!...)dH.b..t.| -orderer.example.com | 00000010 95 2b d7 6f 60 41 c3 52 7c 47 a1 0c 29 c3 3e 51 |.+.o`A.R|G..).>Q| -orderer.example.com | 00000020 8f 0d 61 07 52 02 20 70 00 d7 49 38 5d 8f 57 00 |..a.R. p..I8].W.| -orderer.example.com | 00000030 d4 0a 09 7b 0f a6 7b bf 7d af d4 b1 79 08 5e ac |...{..{.}...y.^.| -orderer.example.com | 00000040 3c b5 04 72 1b 5f da |<..r._.| -orderer.example.com | [a98 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 principal evaluation succeeds for identity 0 -orderer.example.com | [a99 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386b8 gate 1515134239729988100 evaluation succeeds -orderer.example.com | [a9a 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a9b 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a9c 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a9d 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a9e 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a9f 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [aa0 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a44560) start: > stop: > from 172.18.0.7:44212 -orderer.example.com | [aa1 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [aa2 01-05 06:37:19.73 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=[45412] -orderer.example.com | [aa3 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14889], Going to peek [8] bytes -orderer.example.com | [aa4 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} -orderer.example.com | [aa5 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] -orderer.example.com | [aa6 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a44560) for 172.18.0.7:44212 -orderer.example.com | [aa7 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:44212 for (0xc420a44560) -orderer.example.com | [aa8 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44212 -orderer.example.com | [aa9 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44212 -orderer.example.com | [aaa 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [aab 01-05 06:37:19.73 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 | [aac 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [aad 01-05 06:37:19.73 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 | [aae 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44212: rpc error: code = Canceled desc = context canceled -orderer.example.com | [aaf 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [ab0 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [ab1 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44214 -orderer.example.com | [ab2 01-05 06:37:19.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:44214 -orderer.example.com | [ab3 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [ab4 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ab5 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [ab6 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ab7 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [ab8 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138740 gate 1515134239928337800 evaluation starts -orderer.example.com | [ab9 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [aba 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [abb 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [abc 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 principal evaluation fails -orderer.example.com | [abd 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138740 gate 1515134239928337800 evaluation fails -orderer.example.com | [abe 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [abf 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [ac0 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [ac1 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138748 gate 1515134239928696800 evaluation starts -orderer.example.com | [ac2 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ac3 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ac4 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [ac5 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 principal evaluation fails -orderer.example.com | [ac6 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138748 gate 1515134239928696800 evaluation fails -orderer.example.com | [ac7 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [ac8 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [ac9 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [aca 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [acb 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [acc 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [acd 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ace 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [acf 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134239929177100 evaluation starts -orderer.example.com | [ad0 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ad1 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ad2 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ad3 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [ad4 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 principal matched by identity 0 -orderer.example.com | [ad5 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 13 b9 5a de f4 65 63 ca 58 a1 b7 7c 59 e5 15 |...Z..ec.X..|Y..| -orderer.example.com | 00000010 90 e8 e7 cd a1 6d 0a 9c 10 f6 4f 5a 6d 92 e7 16 |.....m....OZm...| -orderer.example.com | [ad6 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d6 10 72 a1 d0 cd 5d 3d dd 16 00 |0E.!...r...]=...| -orderer.example.com | 00000010 b7 7e df ea c0 54 1e 1f 99 73 81 94 ef e6 77 fd |.~...T...s....w.| -orderer.example.com | 00000020 a2 1e 31 bd c6 02 20 36 14 c2 e2 7d 09 35 69 1f |..1... 6...}.5i.| -orderer.example.com | 00000030 82 5a ba d2 f1 b4 6d 4b 8f 11 38 b2 fe 6f 3d 9f |.Z....mK..8..o=.| -orderer.example.com | 00000040 20 a8 45 c2 82 c6 07 | .E....| -orderer.example.com | [ad7 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 principal evaluation succeeds for identity 0 -orderer.example.com | [ad8 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134239929177100 evaluation succeeds -orderer.example.com | [ad9 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [ada 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [adb 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [adc 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [add 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [ade 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [adf 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a453e0) start: > stop: > from 172.18.0.7:44214 -orderer.example.com | [ae0 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [ae1 01-05 06:37:19.93 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=[50736] -orderer.example.com | [ae2 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9565], Going to peek [8] bytes -orderer.example.com | [ae3 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4778], placementInfo={fileNum=[0], startOffset=[50736], bytesOffset=[50738]} -orderer.example.com | [ae4 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4778] read from file [0] -orderer.example.com | [ae5 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a453e0) for 172.18.0.7:44214 -orderer.example.com | [ae6 01-05 06:37:19.93 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:44214 for (0xc420a453e0) -orderer.example.com | [ae8 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [ae9 01-05 06:37:19.93 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 | [ae7 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44214 -orderer.example.com | [aeb 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [aec 01-05 06:37:19.93 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 | [aea 01-05 06:37:19.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.7:44214 -orderer.example.com | [aed 01-05 06:37:19.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44214: rpc error: code = Canceled desc = context canceled -orderer.example.com | [aee 01-05 06:37:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [aef 01-05 06:37:20.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [af0 01-05 06:37:20.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44216 -orderer.example.com | [af1 01-05 06:37:20.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44216 -orderer.example.com | [af2 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [af3 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [af4 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [af5 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [af6 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [af7 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387a8 gate 1515134240109672900 evaluation starts -orderer.example.com | [af8 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [af9 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [afa 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [afb 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 principal evaluation fails -orderer.example.com | [afc 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387a8 gate 1515134240109672900 evaluation fails -orderer.example.com | [afd 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [afe 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [aff 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [b00 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387b8 gate 1515134240111604900 evaluation starts -orderer.example.com | [b01 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b02 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b03 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [b04 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 principal evaluation fails -orderer.example.com | [b05 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387b8 gate 1515134240111604900 evaluation fails -orderer.example.com | [b06 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [b07 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [b08 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -orderer.example.com | [b09 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [b0a 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [b0b 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b0c 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b0d 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b0e 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387c8 gate 1515134240114046500 evaluation starts -orderer.example.com | [b0f 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b10 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b11 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [b12 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [b13 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 principal matched by identity 0 -orderer.example.com | [b14 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 87 1c e9 b7 c9 2a 65 c9 9a 8c 39 c1 a3 c5 5b 86 |.....*e...9...[.| -orderer.example.com | 00000010 e1 a0 2f 46 90 5e fd 99 ec e0 da 3d 7e 9a 5c 6a |../F.^.....=~.\j| -orderer.example.com | [b15 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 dc 27 b8 0a a6 1c f1 db bd 4f d8 |0E.!..'.......O.| -orderer.example.com | 00000010 38 14 c7 6f 3e 2e 02 53 22 ce be 80 bd 7a 93 c3 |8..o>..S"....z..| -orderer.example.com | 00000020 bd fd f4 c7 1f 02 20 68 f2 7b 18 c6 5a 16 5f cb |...... h.{..Z._.| -orderer.example.com | 00000030 84 80 c6 1d 32 5f 7f 72 10 d0 87 4d ce 84 75 f7 |....2_.r...M..u.| -orderer.example.com | 00000040 c0 87 9a db 27 fc 50 |....'.P| -orderer.example.com | [b16 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 principal evaluation succeeds for identity 0 -orderer.example.com | [b17 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387c8 gate 1515134240114046500 evaluation succeeds -orderer.example.com | [b18 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b19 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b1a 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b1b 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b1c 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b1d 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b1e 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a72220) start: > stop: > from 172.18.0.7:44216 -orderer.example.com | [b1f 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [b20 01-05 06:37:20.11 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=[55516] -orderer.example.com | [b21 01-05 06:37:20.11 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 | [b22 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -orderer.example.com | [b23 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [b24 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72220) for 172.18.0.7:44216 -orderer.example.com | [b25 01-05 06:37:20.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:44216 for (0xc420a72220) -orderer.example.com | [b26 01-05 06:37:20.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:44216 -orderer.example.com | [b27 01-05 06:37:20.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:44216 -orderer.example.com | [b28 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [b29 01-05 06:37:20.12 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 | [b2a 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [b2b 01-05 06:37:20.12 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 | [b2c 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44216: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b2d 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b2e 01-05 06:37:20.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b2f 01-05 06:37:20.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:44218 -orderer.example.com | [b30 01-05 06:37:20.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:44218 -orderer.example.com | [b31 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b32 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b33 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b34 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b35 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b36 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [b37 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [c9c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Received message COMPLETED from shim +orderer.example.com | [93d 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515824094515434087 evaluation starts +peer0.org1.example.com | [c9d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [93e 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [c9e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [c9f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa, channelID:businesschannel +peer0.org1.example.com | [ca0 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [93f 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [940 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [ca1 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [ca2 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [941 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [ca3 01-13 06:14:39.64 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 [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +peer0.org1.example.com | [ca4 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53712) +orderer.example.com | [942 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal matched by identity 0 +peer0.org1.example.com | [ca5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53714 +orderer.example.com | [943 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d9 67 b6 f9 3f 21 35 eb 64 ac 20 10 93 3a fc 7c |.g..?!5.d. ..:.|| +peer0.org1.example.com | [ca6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423cd5290 +orderer.example.com | 00000010 65 11 83 99 a2 aa 72 72 96 8d 40 5a 46 76 a8 dd |e.....rr..@ZFv..| +peer0.org1.example.com | [ca7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [944 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 64 86 b3 c0 ed 3a 14 f6 43 3d 9f |0D. xd....:..C=.| +orderer.example.com | 00000010 c1 4a e3 d7 0e 34 5a 7e fc 1e 0a 42 b5 15 d5 b5 |.J...4Z~...B....| +peer0.org1.example.com | [ca8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 00000020 fe 17 fe a7 02 20 3c 69 58 ec 7d b1 c1 b0 3b da |..... DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | 00000030 31 ab ae 7b 85 12 5c d2 a8 2d 6b ea 0e 27 48 a4 |1..{..\..-k..'H.| +peer0.org1.example.com | [caa 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 00000040 8f 7c 12 d0 f5 c0 |.|....| +peer0.org1.example.com | [cab 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [945 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [cac 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423cd2dc0, header 0xc423cd55f0 +orderer.example.com | [946 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515824094515434087 evaluation succeeds +orderer.example.com | [947 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [948 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [949 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [94a 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [94b 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [94c 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [cad 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [94d 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420924880) start: > stop: > from 172.18.0.8:50260 +orderer.example.com | [94e 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [94f 01-13 06:14:54.52 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=[55516] +orderer.example.com | [950 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +orderer.example.com | [951 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +orderer.example.com | [952 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +orderer.example.com | [953 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420924880) for 172.18.0.8:50260 +orderer.example.com | [954 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50260 for (0xc420924880) +peer0.org1.example.com | [cae 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b +orderer.example.com | [956 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [caf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +orderer.example.com | [957 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [cb0 01-13 06:14:40.68 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 +orderer.example.com | [955 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50260 +peer0.org1.example.com | [cb1 01-13 06:14:40.68 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 = [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +orderer.example.com | [958 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [95a 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [cb2 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel +orderer.example.com | [959 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50260 +orderer.example.com | [95b 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50260: rpc error: code = Canceled desc = context canceled +orderer.example.com | [95c 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [cb3 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel version: 1.1.0 +orderer.example.com | [95d 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [95e 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50262 +peer0.org1.example.com | [cb4 01-13 06:14:40.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=qscc,version=1.1.0,txid=872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b,syscc=true,proposal=0xc423cd2dc0,canname=qscc:1.1.0 +peer0.org1.example.com | [cb5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [cb6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [cb7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [cb8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [95f 01-13 06:14:54.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.8:50262 +peer0.org1.example.com | [cb9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [960 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [cba 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [961 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [cbb 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [cbc 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Move state message TRANSACTION +orderer.example.com | [962 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [cbd 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [963 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [cbe 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [964 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [cbf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]sending state message TRANSACTION +peer0.org1.example.com | [cc0 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Received message TRANSACTION from shim +orderer.example.com | [965 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e350 gate 1515824094709857287 evaluation starts +peer0.org1.example.com | [cc1 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [cc2 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [872b4f44]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [966 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [cc3 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [967 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [968 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [cc4 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Transaction completed. Sending COMPLETED +orderer.example.com | [969 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [cc5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Move state message COMPLETED +orderer.example.com | [96a 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 principal matched by identity 0 +peer0.org1.example.com | [cc6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [96b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 67 cf 7a f9 ce ff 30 16 ba 79 05 16 12 40 ff 91 |g.z...0..y...@..| +peer0.org1.example.com | [cc7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]send state message COMPLETED +orderer.example.com | 00000010 22 36 c0 91 98 99 28 15 3a 04 5b 1b 38 1c 1c 7d |"6....(.:.[.8..}| +peer0.org1.example.com | [cc8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Received message COMPLETED from shim +orderer.example.com | [96c 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ab 7b 99 f1 7e bf 8c 6e 9f f2 ef |0E.!..{..~..n...| +peer0.org1.example.com | [cc9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 00000010 ca c9 9a a7 71 39 05 b4 35 17 f2 de 81 6f 5e f6 |....q9..5....o^.| +peer0.org1.example.com | [cca 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b]HandleMessage- COMPLETED. Notify +orderer.example.com | 00000020 26 67 e3 b5 3e 02 20 0f f2 0e 7e 29 d5 a9 46 29 |&g..>. ...~)..F)| +peer0.org1.example.com | [ccb 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b, channelID:businesschannel +peer0.org1.example.com | [ccc 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 00000030 7a 76 f8 4f 54 1e 0c 60 7d 18 f8 57 50 e9 4a ff |zv.OT..`}..WP.J.| +peer0.org1.example.com | [ccd 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 00000040 d6 d9 48 21 4b 11 dd |..H!K..| +orderer.example.com | [96d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [cce 01-13 06:14:40.68 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 +orderer.example.com | [96e 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e350 gate 1515824094709857287 evaluation succeeds +peer0.org1.example.com | [ccf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +orderer.example.com | [96f 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [970 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [cd0 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [cd1 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [971 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [cd2 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [972 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [cd3 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel version: 1.1.0 +orderer.example.com | [973 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [cd4 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b,syscc=true,proposal=0xc423cd2dc0,canname=escc:1.1.0 +peer0.org1.example.com | [cd5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [cd6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [cd7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [974 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [cd8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [cd9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [cda 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [cdb 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [cdc 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Move state message TRANSACTION +orderer.example.com | [975 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420925ea0) start: > stop: > from 172.18.0.8:50262 +peer0.org1.example.com | [cdd 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [cde 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [cdf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]sending state message TRANSACTION +orderer.example.com | [976 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer0.org1.example.com | [ce0 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Received message TRANSACTION from shim +peer0.org1.example.com | [ce1 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [ce2 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [872b4f44]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [ce3 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [ce4 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [ce5 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [ce6 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Move state message COMPLETED +peer0.org1.example.com | [ce7 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [ce8 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]send state message COMPLETED +peer0.org1.example.com | [ce9 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Received message COMPLETED from shim +orderer.example.com | [977 01-13 06:14:54.71 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=[55516] +peer0.org1.example.com | [cea 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [ceb 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [cec 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b, channelID:businesschannel +peer0.org1.example.com | [ced 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [978 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +peer0.org1.example.com | [cee 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [cef 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [979 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +peer0.org1.example.com | [cf0 01-13 06:14:40.69 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 [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +orderer.example.com | [97a 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +peer0.org1.example.com | [cf1 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53714) +orderer.example.com | [97b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420925ea0) for 172.18.0.8:50262 +peer0.org1.example.com | [cf2 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53716 +peer0.org1.example.com | [cf3 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423e7ff50 +orderer.example.com | [97c 01-13 06:14:54.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.8:50262 for (0xc420925ea0) +peer0.org1.example.com | [cf4 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [97d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50262 +peer0.org1.example.com | [cf5 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [cf6 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [cf7 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [cf8 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [97e 01-13 06:14:54.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.8:50262 +peer0.org1.example.com | [cf9 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423e7b4f0, header 0xc423ee62d0 +peer0.org1.example.com | [cfa 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [97f 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [cfb 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 +peer0.org1.example.com | [cfc 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +orderer.example.com | [980 01-13 06:14:54.71 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 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [cfd 01-13 06:14:41.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 +orderer.example.com | [982 01-13 06:14:54.71 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 | [983 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [cfe 01-13 06:14:41.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 = [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +orderer.example.com | [984 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [cff 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel +orderer.example.com | [985 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [d00 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel version: 1.1.0 +orderer.example.com | [986 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [d01 01-13 06:14:41.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=qscc,version=1.1.0,txid=be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31,syscc=true,proposal=0xc423e7b4f0,canname=qscc:1.1.0 +orderer.example.com | [987 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [988 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1515824094715910887 evaluation starts +orderer.example.com | [989 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [98a 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [98b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [d02 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [98c 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [d03 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [d04 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [98d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 principal matched by identity 0 +orderer.example.com | [98e 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2f b8 8d 10 a7 f5 06 c6 65 02 bf b7 25 95 9a 57 |/.......e...%..W| +peer0.org1.example.com | [d05 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 00000010 83 ad fa 84 52 9b 58 08 12 13 a4 25 11 59 6c a5 |....R.X....%.Yl.| +peer0.org1.example.com | [d06 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [d07 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [98f 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f 16 3c 07 b0 13 0f 82 1b 7b d9 24 |0D. o.<......{.$| +orderer.example.com | 00000010 5a bb 7b d8 6d c3 d4 12 90 aa 75 3d e7 22 76 51 |Z.{.m.....u=."vQ| +peer0.org1.example.com | [d08 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [d09 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Move state message TRANSACTION +peer0.org1.example.com | [d0a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [d0b 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000020 b8 87 01 a8 02 20 64 a4 4d e0 14 f2 de b1 63 52 |..... d.M.....cR| +peer0.org1.example.com | [d0c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]sending state message TRANSACTION +orderer.example.com | 00000030 d1 84 75 8f 74 20 d1 48 96 ec 7d 0a d4 4f 05 5b |..u.t .H..}..O.[| +peer0.org1.example.com | [d0d 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Received message TRANSACTION from shim +peer0.org1.example.com | [d0e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [d0f 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be0cf7fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [d10 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [d11 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Transaction completed. Sending COMPLETED +orderer.example.com | 00000040 ec d9 1b a6 66 39 |....f9| +peer0.org1.example.com | [d12 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Move state message COMPLETED +peer0.org1.example.com | [d13 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [d14 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]send state message COMPLETED +peer0.org1.example.com | [d15 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Received message COMPLETED from shim +peer0.org1.example.com | [d16 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [990 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [d17 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [d18 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31, channelID:businesschannel +peer0.org1.example.com | [d19 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [d1a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [d1b 01-13 06:14:41.74 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 | [d1c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +orderer.example.com | [991 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1515824094715910887 evaluation succeeds +peer0.org1.example.com | [d1d 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [d1e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [992 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [d1f 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [d20 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel version: 1.1.0 +orderer.example.com | [993 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [d21 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31,syscc=true,proposal=0xc423e7b4f0,canname=escc:1.1.0 +peer0.org1.example.com | [d22 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [d23 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [994 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [d24 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [d25 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [995 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [d26 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [d27 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [996 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [d28 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [d29 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Move state message TRANSACTION +orderer.example.com | [997 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [998 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c3b1a0) start: > stop: > from 172.18.0.8:50262 +peer0.org1.example.com | [d2a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [999 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer0.org1.example.com | [d2b 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [99a 01-13 06:14:54.71 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=[26078] +peer0.org1.example.com | [d2c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]sending state message TRANSACTION +orderer.example.com | [99b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34221], Going to peek [8] bytes +peer0.org1.example.com | [d2d 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Received message TRANSACTION from shim +orderer.example.com | [99c 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +peer0.org1.example.com | [d2e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [99d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +orderer.example.com | [99e 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c3b1a0) for 172.18.0.8:50262 +peer0.org1.example.com | [d2f 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be0cf7fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [99f 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50262 for (0xc420c3b1a0) +peer0.org1.example.com | [d30 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [d31 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [9a1 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [d32 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [d33 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Move state message COMPLETED +orderer.example.com | [9a2 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [d34 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [9a0 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50262 +orderer.example.com | [9a4 01-13 06:14:54.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.8:50262 +peer0.org1.example.com | [d35 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]send state message COMPLETED +orderer.example.com | [9a3 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9a5 01-13 06:14:54.72 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 | [9a6 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50262: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [d36 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Received message COMPLETED from shim +orderer.example.com | [9a7 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [d37 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [d38 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [d39 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31, channelID:businesschannel +orderer.example.com | [9a8 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [d3a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [d3b 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [d3c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [d3d 01-13 06:14:41.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 [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +orderer.example.com | [9a9 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50264 +orderer.example.com | [9aa 01-13 06:14:54.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.8:50264 +peer0.org1.example.com | [d3e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53716) +orderer.example.com | [9ab 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [9ac 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [d3f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53718 +orderer.example.com | [9ad 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [9ae 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [d40 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423f90540 +orderer.example.com | [9af 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [9b0 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1515824094849603388 evaluation starts +peer0.org1.example.com | [d41 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [9b1 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9b2 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9b3 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [9b4 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [d42 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [9b5 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 principal matched by identity 0 +orderer.example.com | [9b6 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a9 06 4f 1b 28 b6 65 a5 c3 a2 98 17 5e 52 47 41 |..O.(.e.....^RGA| +peer0.org1.example.com | [d43 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | 00000010 28 0a 79 12 09 2a e1 7a 30 bc d1 53 eb 5f 15 fb |(.y..*.z0..S._..| +peer0.org1.example.com | [d44 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [9b7 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e1 db 32 0c 68 0d 42 70 c7 78 20 |0E.!...2.h.Bp.x | +peer0.org1.example.com | [d45 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 00000010 d6 14 c3 1c ad 62 67 e5 03 1c 13 d6 13 f0 2c 83 |.....bg.......,.| +peer0.org1.example.com | [d46 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423f86730, header 0xc423f908a0 +orderer.example.com | 00000020 88 d7 71 ce 89 02 20 5b 2b 4c 62 6d 0d d6 e6 3a |..q... [+Lbm...:| +orderer.example.com | 00000030 34 2c 31 d4 54 91 b3 2a 85 69 e7 71 06 dc 1d 98 |4,1.T..*.i.q....| +peer0.org1.example.com | [d47 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [d48 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db +orderer.example.com | 00000040 08 81 30 22 d6 c3 3b |..0"..;| +peer0.org1.example.com | [d49 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +peer0.org1.example.com | [d4a 01-13 06:14:42.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 +orderer.example.com | [9b8 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [d4b 01-13 06:14:42.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 = [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +peer0.org1.example.com | [d4c 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel +orderer.example.com | [9b9 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1515824094849603388 evaluation succeeds +orderer.example.com | [9ba 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [d4d 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel version: 1.1.0 +orderer.example.com | [9bb 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9bc 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [d4e 01-13 06:14:42.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.1.0,txid=f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db,syscc=true,proposal=0xc423f86730,canname=qscc:1.1.0 +peer0.org1.example.com | [d4f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [9bd 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [d50 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [9be 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [d51 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [9bf 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [d52 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [9c0 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c5eaa0) start: > stop: > from 172.18.0.8:50264 +orderer.example.com | [9c1 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer0.org1.example.com | [d53 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [9c2 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [d54 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [9c3 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60299], Going to peek [8] bytes +peer0.org1.example.com | [d55 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [d56 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Move state message TRANSACTION +orderer.example.com | [9c4 01-13 06:14:54.85 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.org1.example.com | [d57 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [9c5 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +orderer.example.com | [9c6 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c5eaa0) for 172.18.0.8:50264 +peer0.org1.example.com | [d58 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [d59 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]sending state message TRANSACTION +orderer.example.com | [9c7 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50264 for (0xc420c5eaa0) +peer0.org1.example.com | [d5a 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Received message TRANSACTION from shim +orderer.example.com | [9c9 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [d5b 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [9ca 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [d5c 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f11007a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [9c8 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50264 +orderer.example.com | [9cc 01-13 06:14:54.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.8:50264 +peer0.org1.example.com | [d5d 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [9cb 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [d5e 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [d5f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Move state message COMPLETED +orderer.example.com | [9cd 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [d60 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [9ce 01-13 06:14:54.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50264: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [d61 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]send state message COMPLETED +orderer.example.com | [9cf 01-13 06:14:54.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [d62 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Received message COMPLETED from shim +orderer.example.com | [9d0 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [9d1 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50266 +peer0.org1.example.com | [d63 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [9d2 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50266 +orderer.example.com | [9d3 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [d64 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db]HandleMessage- COMPLETED. Notify +orderer.example.com | [9d4 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9d5 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [d65 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db, channelID:businesschannel +orderer.example.com | [9d6 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [d66 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [d67 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [9d7 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [d68 01-13 06:14:42.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 | [d69 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +orderer.example.com | [9d8 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6f8 gate 1515824095095779488 evaluation starts +orderer.example.com | [9d9 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [d6a 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [d6b 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [9da 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9db 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [9dc 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9dd 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 principal matched by identity 0 +peer0.org1.example.com | [d6c 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [9de 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 f5 53 37 04 e2 3f f8 07 2b e8 81 4b 31 cb 90 fd |.S7..?..+..K1...| +peer0.org1.example.com | [d6d 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel version: 1.1.0 +orderer.example.com | 00000010 a0 eb 04 42 74 66 27 61 74 f6 5e 1b 2c dd 8f bc |...Btf'at.^.,...| +peer0.org1.example.com | [d6e 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db,syscc=true,proposal=0xc423f86730,canname=escc:1.1.0 +peer0.org1.example.com | [d6f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [9df 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 02 97 d3 20 f9 7d 71 ca 80 49 bd 75 |0D. ... .}q..I.u| +peer0.org1.example.com | [d70 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [d71 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | 00000010 ca 53 02 b5 cb 99 e1 09 65 45 79 a8 91 b4 65 32 |.S......eEy...e2| +peer0.org1.example.com | [d72 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 00000020 71 41 14 4c 02 20 32 99 31 22 e7 bc 41 c3 10 ac |qA.L. 2.1"..A...| +peer0.org1.example.com | [d73 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 00000030 d9 d9 8b 94 83 af ca 7f 3b 19 d7 54 ca 7c f8 e0 |........;..T.|..| +peer0.org1.example.com | [d74 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 00000040 14 51 d1 73 f4 4e |.Q.s.N| +peer0.org1.example.com | [d75 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [9e0 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [d76 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Move state message TRANSACTION +peer0.org1.example.com | [d77 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [9e1 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6f8 gate 1515824095095779488 evaluation succeeds +orderer.example.com | [9e2 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [d78 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [9e3 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9e4 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [d79 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]sending state message TRANSACTION +orderer.example.com | [9e5 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [9e6 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [d7a 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Received message TRANSACTION from shim +orderer.example.com | [9e7 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [d7b 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [d7c 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f11007a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [9e8 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209cb160) start: > stop: > from 172.18.0.8:50266 +peer0.org1.example.com | [d7d 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [9e9 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [9ea 01-13 06:14:55.09 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] +peer0.org1.example.com | [d7e 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [9eb 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48178], Going to peek [8] bytes +peer0.org1.example.com | [d7f 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Transaction completed. Sending COMPLETED +orderer.example.com | [9ec 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +peer0.org1.example.com | [d80 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Move state message COMPLETED +peer0.org1.example.com | [d81 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [9ed 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +peer0.org1.example.com | [d82 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]send state message COMPLETED +orderer.example.com | [9ee 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209cb160) for 172.18.0.8:50266 +orderer.example.com | [9ef 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50266 for (0xc4209cb160) +peer0.org1.example.com | [d83 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Received message COMPLETED from shim +orderer.example.com | [9f0 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50266 +peer0.org1.example.com | [d84 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [9f1 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50266 +orderer.example.com | [9f2 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [d85 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db]HandleMessage- COMPLETED. Notify +orderer.example.com | [9f3 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [d86 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db, channelID:businesschannel +orderer.example.com | [9f4 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [d87 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [d88 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [d89 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [d8a 01-13 06:14:42.79 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 [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +orderer.example.com | [9f5 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [d8b 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53718) +peer0.org1.example.com | [d8c 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53720 +orderer.example.com | [9f6 01-13 06:14:55.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50266: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [d8d 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4240cc7b0 +peer0.org1.example.com | [d8e 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [d8f 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [d90 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [d91 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [9f7 01-13 06:14:55.10 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [d92 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [d93 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42406cd70, header 0xc4240ccb10 +orderer.example.com | [9f8 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [d94 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [d95 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 +peer0.org1.example.com | [d96 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +peer0.org1.example.com | [d97 01-13 06:14:43.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 +orderer.example.com | [9f9 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50268 +peer0.org1.example.com | [d98 01-13 06:14:43.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 = [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +peer0.org1.example.com | [d99 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel +peer0.org1.example.com | [d9a 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel version: 1.1.0 +orderer.example.com | [9fa 01-13 06:14:55.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.8:50268 +peer0.org1.example.com | [d9b 01-13 06:14:43.82 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.1.0,txid=66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1,syscc=true,proposal=0xc42406cd70,canname=qscc:1.1.0 +orderer.example.com | [9fb 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [d9c 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [9fc 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [d9d 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [9fd 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [d9e 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [9fe 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [9ff 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [d9f 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [a00 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c748 gate 1515824095278875088 evaluation starts +peer0.org1.example.com | [da0 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [a01 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [da1 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [a02 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [da2 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [da3 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Move state message TRANSACTION +orderer.example.com | [a03 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [da4 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [da5 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [a04 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a05 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 principal matched by identity 0 +peer0.org1.example.com | [da6 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]sending state message TRANSACTION +orderer.example.com | [a06 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ce ab 0a e5 47 ab 2d 88 4c 3c 91 66 8a f9 52 c5 |....G.-.L<.f..R.| +peer0.org1.example.com | [da7 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Received message TRANSACTION from shim +orderer.example.com | 00000010 fa 17 d2 46 70 b4 4f 7a 59 a0 c1 8d 08 7a 6e b9 |...Fp.OzY....zn.| +orderer.example.com | [a07 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a0 1e 7b a5 4d d8 b5 89 4c a3 8f |0E.!...{.M...L..| +orderer.example.com | 00000010 bc 85 04 ed 8e 1b 4d 96 f0 33 11 ae f2 d9 c0 0c |......M..3......| +peer0.org1.example.com | [da8 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 00000020 a3 4d b5 a7 83 02 20 66 7f 9c 22 d4 b5 33 84 70 |.M.... f.."..3.p| +orderer.example.com | 00000030 fa 6a 31 0d 89 16 b2 6b f0 88 0f 33 e5 6e 3e 3c |.j1....k...3.n><| +orderer.example.com | 00000040 0d 3c ae 20 96 63 3c |.<. .c<| +peer0.org1.example.com | [da9 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66275c06]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [a08 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 principal evaluation succeeds for identity 0 +orderer.example.com | [a09 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c748 gate 1515824095278875088 evaluation succeeds +orderer.example.com | [a0a 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a0b 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a0c 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a0d 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a0e 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a0f 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [daa 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [a10 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420956020) start: > stop: > from 172.18.0.8:50268 +orderer.example.com | [a11 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a12 01-13 06:14:55.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=[26078] +orderer.example.com | [a13 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34221], Going to peek [8] bytes +orderer.example.com | [a14 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +orderer.example.com | [a15 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +peer0.org1.example.com | [dab 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Transaction completed. Sending COMPLETED +orderer.example.com | [a16 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956020) for 172.18.0.8:50268 +orderer.example.com | [a17 01-13 06:14:55.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.8:50268 for (0xc420956020) +orderer.example.com | [a19 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a1a 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [dac 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Move state message COMPLETED +orderer.example.com | [a18 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50268 +orderer.example.com | [a1b 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a1d 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [dad 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [a1c 01-13 06:14:55.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.8:50268 +peer0.org1.example.com | [dae 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]send state message COMPLETED +orderer.example.com | [a1e 01-13 06:14:55.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50268: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [daf 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Received message COMPLETED from shim +peer0.org1.example.com | [db0 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [db1 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1]HandleMessage- COMPLETED. Notify +orderer.example.com | [a1f 01-13 06:14:55.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [db2 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1, channelID:businesschannel +orderer.example.com | [a20 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [db3 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [a21 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50270 +peer0.org1.example.com | [db4 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [a22 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50270 +peer0.org1.example.com | [db5 01-13 06:14:43.83 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 +orderer.example.com | [a23 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a24 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [db6 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +peer0.org1.example.com | [db7 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [a25 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [db8 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [a26 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [db9 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [a27 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a28 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e188 gate 1515824095443255188 evaluation starts +orderer.example.com | [a29 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [dba 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel version: 1.1.0 +orderer.example.com | [a2a 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a2b 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [a2c 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a2d 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 principal matched by identity 0 +orderer.example.com | [a2e 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5b 45 85 10 ac bc ad 2f 82 3b 82 fe 55 8b b4 5e |[E...../.;..U..^| +peer0.org1.example.com | [dbb 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1,syscc=true,proposal=0xc42406cd70,canname=escc:1.1.0 +orderer.example.com | 00000010 4d c9 63 13 5b 2d 9b b1 15 9c 39 e1 4f 41 7d 6a |M.c.[-....9.OA}j| +orderer.example.com | [a2f 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9f fe da b5 b3 06 96 7f 48 d2 7c |0E.!.........H.|| +orderer.example.com | 00000010 b3 e0 08 d9 6a 6c c5 70 eb f4 8e cf b8 f5 ec fc |....jl.p........| +orderer.example.com | 00000020 49 83 a2 89 33 02 20 66 5f 30 1d a7 54 90 26 0b |I...3. f_0..T.&.| +orderer.example.com | 00000030 c9 57 06 fb a5 a9 a8 27 6a c9 de 9b 7e e7 ee ec |.W.....'j...~...| +orderer.example.com | 00000040 e8 89 4e 5f 6e 30 c1 |..N_n0.| +orderer.example.com | [a30 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [dbc 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [a31 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e188 gate 1515824095443255188 evaluation succeeds +orderer.example.com | [a32 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a33 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [dbd 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [a34 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [dbe 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [a35 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [dbf 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [a36 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [dc0 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [a37 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a38 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420957460) start: > stop: > from 172.18.0.8:50270 +peer0.org1.example.com | [dc1 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [a39 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a3a 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40093] +peer0.org1.example.com | [dc2 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [a3b 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20206], Going to peek [8] bytes +peer0.org1.example.com | [dc3 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Move state message TRANSACTION +orderer.example.com | [a3c 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +peer0.org1.example.com | [dc4 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [a3d 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +peer0.org1.example.com | [dc5 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [a3e 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420957460) for 172.18.0.8:50270 +peer0.org1.example.com | [dc6 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]sending state message TRANSACTION +orderer.example.com | [a3f 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50270 for (0xc420957460) +peer0.org1.example.com | [dc7 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Received message TRANSACTION from shim +orderer.example.com | [a40 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50270 +peer0.org1.example.com | [dc8 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [dc9 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66275c06]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [a42 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50270 +orderer.example.com | [a41 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [dca 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [a43 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [dcb 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [a44 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a45 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [dcc 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Transaction completed. Sending COMPLETED +orderer.example.com | [a46 01-13 06:14:55.45 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50270: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [dcd 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Move state message COMPLETED +orderer.example.com | [a47 01-13 06:14:55.45 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [dce 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [a48 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [dcf 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]send state message COMPLETED +orderer.example.com | [a49 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50274 +peer0.org1.example.com | [dd0 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Received message COMPLETED from shim +peer0.org1.example.com | [dd1 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [a4a 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50274 +peer0.org1.example.com | [dd2 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1]HandleMessage- COMPLETED. Notify +orderer.example.com | [a4b 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a4c 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [dd3 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1, channelID:businesschannel +orderer.example.com | [a4d 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [dd4 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [a4e 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [a4f 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [dd5 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [a50 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515824095599399088 evaluation starts +peer0.org1.example.com | [dd6 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [a51 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [dd7 01-13 06:14:43.83 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 [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +orderer.example.com | [a52 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [dd8 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53720) +orderer.example.com | [a53 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [dd9 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40156 +orderer.example.com | [a54 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a55 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal matched by identity 0 +peer0.org1.example.com | [dda 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424397470 +orderer.example.com | [a56 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b5 82 15 d1 ef 59 26 4e ba 33 3a 0c 6f 0c 21 4b |.....Y&N.3:.o.!K| +peer0.org1.example.com | [ddb 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 00000010 eb 82 01 a5 5c e4 8d 01 7c 74 fd d7 05 ab a4 7f |....\...|t......| +orderer.example.com | [a57 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b2 ea 3b a5 58 ff 8b 2a 18 29 2c |0E.!...;.X..*.),| +peer0.org1.example.com | [ddc 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 00000010 85 12 57 54 5e ec f9 e3 cc ad ab 26 2f d1 31 ae |..WT^......&/.1.| +peer0.org1.example.com | [ddd 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [dde 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 00000020 29 45 a7 ea 85 02 20 53 ee 52 34 5c 37 76 ee 0b |)E.... S.R4\7v..| +orderer.example.com | 00000030 55 3c d0 74 b7 29 8e 1b 54 22 5f 89 a4 46 97 45 |U<.t.)..T"_..F.E| +peer0.org1.example.com | [ddf 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 00000040 86 ff 3e a9 4a e9 31 |..>.J.1| +peer0.org1.example.com | [de0 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4243d46e0, header 0xc4243977d0 +orderer.example.com | [a58 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [de1 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +orderer.example.com | [a59 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515824095599399088 evaluation succeeds +peer0.org1.example.com | [de2 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +orderer.example.com | [a5a 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a5b 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a5c 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [de3 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org1.example.com | [de4 01-13 06:14:44.55 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 +orderer.example.com | [a5d 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [de5 01-13 06:14:44.55 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 = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [a5e 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [de6 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel +orderer.example.com | [a5f 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a60 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c3aa20) start: > stop: > from 172.18.0.8:50274 +peer0.org1.example.com | [de7 01-13 06:14:44.55 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.1.0,txid=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421,syscc=true,proposal=0xc4243d46e0,canname=lscc:1.1.0 +peer0.org1.example.com | [de8 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [a61 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer0.org1.example.com | [de9 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [dea 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [a62 01-13 06:14:55.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=[45412] +orderer.example.com | [a63 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14887], Going to peek [8] bytes +peer0.org1.example.com | [deb 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [a64 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5323], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} +orderer.example.com | [a65 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] +peer0.org1.example.com | [dec 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [a66 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c3aa20) for 172.18.0.8:50274 +peer0.org1.example.com | [ded 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [a67 01-13 06:14:55.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.8:50274 for (0xc420c3aa20) +orderer.example.com | [a68 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50274 +peer0.org1.example.com | [dee 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [a69 01-13 06:14:55.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.8:50274 +peer0.org1.example.com | [def 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message TRANSACTION +orderer.example.com | [a6a 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [df0 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [a6b 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [df1 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [a6c 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [df2 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message TRANSACTION +orderer.example.com | [a6d 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [df3 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Received message TRANSACTION from shim +orderer.example.com | [a6e 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50274: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [df4 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [df5 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1cbbae78]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [a6f 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a70 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [df6 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1cbbae78]Sending GET_STATE +orderer.example.com | [a71 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50276 +peer0.org1.example.com | [df7 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message GET_STATE from shim +orderer.example.com | [a72 01-13 06:14:55.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.8:50276 +peer0.org1.example.com | [df8 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [df9 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1cbbae78]Received GET_STATE, invoking get state from ledger +orderer.example.com | [a73 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [dfa 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [dfb 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [dfc 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [dfd 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Got state. Sending RESPONSE +peer0.org1.example.com | [dfe 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]handleGetState serial send RESPONSE +orderer.example.com | [a74 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [dff 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Received message RESPONSE from shim +peer0.org1.example.com | [e00 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [e01 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1cbbae78]before send +peer0.org1.example.com | [e02 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1cbbae78]after send +peer0.org1.example.com | [e04 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1cbbae78]GetState received payload RESPONSE +peer0.org1.example.com | [e05 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [e03 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1cbbae78]Received RESPONSE, communicated (state:ready) +orderer.example.com | [a75 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [e06 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Move state message COMPLETED +peer0.org1.example.com | [e07 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [a76 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [e08 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]send state message COMPLETED +peer0.org1.example.com | [e09 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message COMPLETED from shim +peer0.org1.example.com | [e0a 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [e0b 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [e0c 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421, channelID:businesschannel +peer0.org1.example.com | [e0d 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [e0e 01-13 06:14:44.56 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 +orderer.example.com | [a77 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [e0f 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [e10 01-13 06:14:44.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=exp02,version=1.0,txid=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421,syscc=false,proposal=0xc4243d46e0,canname=exp02:1.0 +peer0.org1.example.com | [e11 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +orderer.example.com | [a78 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824095768417288 evaluation starts +peer0.org1.example.com | [e12 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [e13 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org1.example.com | [e14 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [a79 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [e15 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [e16 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [a7a 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a7b 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [e17 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [e18 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message TRANSACTION +orderer.example.com | [a7c 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [e19 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [e1a 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [a7d 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 principal matched by identity 0 +peer0.org1.example.com | [e1b 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message TRANSACTION +orderer.example.com | [a7e 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 98 0c 25 f1 9f 20 0d 8d 4b 4c a4 4b 28 f7 0b bc |..%.. ..KL.K(...| +peer0.org1.example.com | [e1c 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message GET_STATE from shim +orderer.example.com | 00000010 ee ed d0 3c 86 f8 d9 12 8d 2e 52 6b c6 6a 1d 29 |...<......Rk.j.)| +peer0.org1.example.com | [e1d 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [a7f 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 42 08 fe fa 8e 78 a8 24 16 5a 58 a7 |0D. B....x.$.ZX.| +peer0.org1.example.com | [e1e 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1cbbae78]Received GET_STATE, invoking get state from ledger +orderer.example.com | 00000010 19 19 fa 71 94 0e 38 8a 9b 15 40 93 15 bd 77 8f |...q..8...@...w.| +orderer.example.com | 00000020 55 8c c6 dc 02 20 6c 02 2a ae f6 cf 34 d4 dc a7 |U.... l.*...4...| +peer0.org1.example.com | [e1f 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000030 ce a0 88 62 3f 84 fc a9 3a 4d 85 6f 8b cc 70 05 |...b?...:M.o..p.| +peer0.org1.example.com | [e20 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78] getting state for chaincode exp02, key a, channel businesschannel +orderer.example.com | 00000040 3d d2 c6 8d 3a 50 |=...:P| +peer0.org1.example.com | [e21 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +orderer.example.com | [a80 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [e22 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Got state. Sending RESPONSE +orderer.example.com | [a81 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824095768417288 evaluation succeeds +peer0.org1.example.com | [e23 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]handleGetState serial send RESPONSE +peer0.org1.example.com | [e24 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message GET_STATE from shim +peer0.org1.example.com | [e25 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [a82 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a83 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a84 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a85 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a86 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [e26 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1cbbae78]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [e27 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [e28 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78] getting state for chaincode exp02, key b, channel businesschannel +orderer.example.com | [a87 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a88 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209cbe80) start: > stop: > from 172.18.0.8:50276 +orderer.example.com | [a89 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer0.org1.example.com | [e29 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [e2a 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Got state. Sending RESPONSE +orderer.example.com | [a8a 01-13 06:14:55.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=[50737] +peer0.org1.example.com | [e2b 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]handleGetState serial send RESPONSE +orderer.example.com | [a8b 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9562], Going to peek [8] bytes +orderer.example.com | [a8c 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} +orderer.example.com | [a8d 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +peer0.org1.example.com | [e2c 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message PUT_STATE from shim +orderer.example.com | [a8e 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209cbe80) for 172.18.0.8:50276 +orderer.example.com | [a8f 01-13 06:14:55.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.8:50276 for (0xc4209cbe80) +orderer.example.com | [a91 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a92 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [e2d 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | [a90 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50276 +peer0.org1.example.com | [e2e 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [a94 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a95 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a93 01-13 06:14:55.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.8:50276 +orderer.example.com | [a96 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50276: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a97 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [e2f 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]state is ready +orderer.example.com | [a98 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [e30 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [a99 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50278 +peer0.org1.example.com | [e31 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]enterBusyState trigger event RESPONSE +orderer.example.com | [a9a 01-13 06:14:55.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.8:50278 +peer0.org1.example.com | [e32 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message RESPONSE +orderer.example.com | [a9b 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [e33 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | [a9c 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a9d 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [e34 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [a9e 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [a9f 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [aa0 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1515824095908846788 evaluation starts +peer0.org1.example.com | [e35 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message RESPONSE +orderer.example.com | [aa1 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [e36 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message PUT_STATE from shim +peer0.org1.example.com | [e37 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | [aa2 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [e38 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [aa3 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [aa4 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [e39 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]state is ready +orderer.example.com | [aa5 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal matched by identity 0 +orderer.example.com | [aa6 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3f d2 36 8c a5 e3 3f 8e bc 47 28 c8 46 55 ce b3 |?.6...?..G(.FU..| +peer0.org1.example.com | [e3a 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | 00000010 97 c6 32 bf 14 71 5c 10 83 2a 9d 6d 7d 93 20 bd |..2..q\..*.m}. .| +peer0.org1.example.com | [e3b 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [e3c 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message RESPONSE +orderer.example.com | [aa7 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e4 6a 88 de a7 36 a3 e5 8f 0d cf |0E.!..j...6.....| +peer0.org1.example.com | [e3d 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | 00000010 36 a8 05 8c d0 5f 36 d6 43 6c 23 bf 7c b5 00 4c |6...._6.Cl#.|..L| +peer0.org1.example.com | [e3e 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000020 d5 5b 98 a5 6d 02 20 73 14 01 09 c8 96 ed 39 a6 |.[..m. s......9.| +peer0.org1.example.com | [e3f 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message RESPONSE +peer0.org1.example.com | [e40 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message COMPLETED from shim +orderer.example.com | 00000030 fc cb ac 73 68 02 9b cd 5a 90 1e 45 8f 40 0a a5 |...sh...Z..E.@..| +peer0.org1.example.com | [e41 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 00000040 c7 15 34 2c c9 cc 1b |..4,...| +orderer.example.com | [aa8 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal evaluation succeeds for identity 0 +orderer.example.com | [aa9 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1515824095908846788 evaluation succeeds +orderer.example.com | [aaa 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [e42 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421]HandleMessage- COMPLETED. Notify +orderer.example.com | [aab 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [aac 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [aad 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [e43 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421, channelID:businesschannel +orderer.example.com | [aae 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [aaf 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [e44 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [ab0 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203e63e0) start: > stop: > from 172.18.0.8:50278 +peer0.org1.example.com | [e45 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [ab1 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer0.org1.example.com | [e46 01-13 06:14:44.58 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 | [e47 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [ab2 01-13 06:14:55.91 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=[55516] +peer0.org1.example.com | [e48 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [ab3 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +peer0.org1.example.com | [e49 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel chaincode id: name:"exp02" +orderer.example.com | [ab4 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +peer0.org1.example.com | [e4a 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +orderer.example.com | [ab5 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +orderer.example.com | [ab6 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203e63e0) for 172.18.0.8:50278 +peer0.org1.example.com | [e4b 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel version: 1.1.0 +orderer.example.com | [ab7 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50278 for (0xc4203e63e0) +peer0.org1.example.com | [e4c 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421,syscc=true,proposal=0xc4243d46e0,canname=escc:1.1.0 +orderer.example.com | [ab8 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50278 +peer0.org1.example.com | [e4d 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [ab9 01-13 06:14:55.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.8:50278 +peer0.org1.example.com | [e4e 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [aba 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [e4f 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [e50 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [abb 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [e51 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [abc 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +peer0.org1.example.com | [e52 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [abd 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer0.org1.example.com | [e53 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [abe 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50278: rpc error: code = Canceled desc = context canceled +orderer.example.com | [abf 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [ac0 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [e54 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message TRANSACTION +orderer.example.com | [ac1 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50280 +orderer.example.com | [ac2 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50280 +peer0.org1.example.com | [e55 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [e56 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [ac3 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [ac4 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [ac5 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [ac6 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [e57 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message TRANSACTION +peer0.org1.example.com | [e58 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Received message TRANSACTION from shim +peer0.org1.example.com | [e59 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [e5a 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1cbbae78]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [e5b 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [e5c 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [e5d 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [e5e 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Move state message COMPLETED +peer0.org1.example.com | [e5f 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [e60 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]send state message COMPLETED +peer0.org1.example.com | [e61 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message COMPLETED from shim +peer0.org1.example.com | [e62 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [e63 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [e64 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421, channelID:businesschannel +peer0.org1.example.com | [e65 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [e66 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [e67 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [e68 01-13 06:14:44.58 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +peer0.org1.example.com | [e69 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40156) +peer0.org1.example.com | [e6a 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53730 +peer0.org1.example.com | [e6b 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427657560 +peer0.org1.example.com | [e6c 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [e6d 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [e6e 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [e6f 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [e70 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [e71 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424537a90, header 0xc4276578c0 +peer0.org1.example.com | [e72 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [e73 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 +peer0.org1.example.com | [e74 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +peer0.org1.example.com | [e75 01-13 06:14:44.87 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 | [e76 01-13 06:14:44.87 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 = [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +peer0.org1.example.com | [e77 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel +peer0.org1.example.com | [e78 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [e79 01-13 06:14:44.87 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.1.0,txid=9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90,syscc=true,proposal=0xc424537a90,canname=qscc:1.1.0 +peer0.org1.example.com | [e7a 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [e7b 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [e7c 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [e7d 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [e7e 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [e7f 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [e80 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [e81 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Move state message TRANSACTION +peer0.org1.example.com | [e82 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [e83 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [ac7 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [ac8 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [ac9 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -14864,608 +18095,1162 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [b38 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515134240347846400 evaluation starts -orderer.example.com | [b39 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b3a 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b3b 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [b3c 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [b3d 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal matched by identity 0 -orderer.example.com | [b3e 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 92 3a df 22 db 4c 07 d6 64 0f f6 60 95 16 88 5a |.:.".L..d..`...Z| -orderer.example.com | 00000010 35 19 cb 69 b5 ea ca 35 eb 0e 52 07 8d e0 66 4d |5..i...5..R...fM| -orderer.example.com | [b3f 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 db 49 02 85 26 02 e8 5b 8a 69 0e |0E.!..I..&..[.i.| -orderer.example.com | 00000010 38 66 8b 46 db e9 09 ea 01 b4 dc 88 0e a3 d6 ef |8f.F............| -orderer.example.com | 00000020 1e 20 4a 44 80 02 20 04 0e bf c2 e5 7a d4 b2 27 |. JD.. .....z..'| -orderer.example.com | 00000030 c8 3a f8 8a 37 b4 6b 83 de 61 c7 66 d4 c9 0e 59 |.:..7.k..a.f...Y| -orderer.example.com | 00000040 cb c4 2d 29 57 f5 43 |..-)W.C| -orderer.example.com | [b40 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal evaluation succeeds for identity 0 -orderer.example.com | [b41 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515134240347846400 evaluation succeeds -orderer.example.com | [b42 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b43 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b44 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b45 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b46 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b47 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b48 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c24d40) start: > stop: > from 172.18.0.7:44218 -orderer.example.com | [b49 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b4a 01-05 06:37:20.35 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 | [b4b 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes -orderer.example.com | [b4c 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [b4d 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] -orderer.example.com | [b4e 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c24d40) for 172.18.0.7:44218 -orderer.example.com | [b4f 01-05 06:37:20.36 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:44218 for (0xc420c24d40) -orderer.example.com | [b50 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44218 -orderer.example.com | [b51 01-05 06:37:20.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:44218 -orderer.example.com | [b52 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44218: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b53 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b54 01-05 06:37:20.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b55 01-05 06:37:20.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:44220 -orderer.example.com | [b56 01-05 06:37:20.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:44220 -orderer.example.com | [b57 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b58 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b59 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b5a 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b5b 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b5c 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134240585079100 evaluation starts -orderer.example.com | [b5d 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b5e 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b5f 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [b60 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [b61 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 principal matched by identity 0 -orderer.example.com | [b62 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 66 05 cf e8 e4 e3 82 1a df 04 16 aa c5 38 23 cb |f............8#.| -orderer.example.com | 00000010 49 f1 39 fa 38 46 27 e9 95 35 6d 16 94 69 39 3f |I.9.8F'..5m..i9?| -orderer.example.com | [b63 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 91 5c af 3b dc 0b 57 04 c5 bd 6c |0E.!..\.;..W...l| -orderer.example.com | 00000010 34 a0 71 7e d9 71 45 b2 e3 5a 2f 5c fc 3d bc 3b |4.q~.qE..Z/\.=.;| -orderer.example.com | 00000020 86 95 81 da 2b 02 20 0d 99 5f 05 8f 67 3f ff 7d |....+. .._..g?.}| -orderer.example.com | 00000030 a8 ce 49 cd df 65 7b b1 9f 84 02 37 97 1e 43 fb |..I..e{....7..C.| -orderer.example.com | 00000040 81 42 cf 52 a1 9e 09 |.B.R...| -orderer.example.com | [b64 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 principal evaluation succeeds for identity 0 -orderer.example.com | [b65 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134240585079100 evaluation succeeds -orderer.example.com | [b66 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b67 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b68 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b69 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b6a 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b6b 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b6c 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420a44a40) start: > stop: > from 172.18.0.7:44220 -orderer.example.com | [b6d 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b6e 01-05 06:37:20.59 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 | [b6f 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes -orderer.example.com | [b70 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [b71 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] -orderer.example.com | [b72 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420a44a40) for 172.18.0.7:44220 -orderer.example.com | [b73 01-05 06:37:20.59 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:44220 for (0xc420a44a40) -orderer.example.com | [b74 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44220 -orderer.example.com | [b75 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44220 -orderer.example.com | [b76 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b77 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b78 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b79 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b7a 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b7b 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515134240596832600 evaluation starts -orderer.example.com | [b7c 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b7d 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b7e 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [b7f 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [b80 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal matched by identity 0 -orderer.example.com | [b81 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2d 8a 83 f5 fe de bc 56 ef a2 88 5a 75 60 33 62 |-......V...Zu`3b| -orderer.example.com | 00000010 ec f3 52 ed 89 12 ce 6b e7 ae 81 bd 65 28 c9 1a |..R....k....e(..| -orderer.example.com | [b82 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ce cc 33 85 2e 17 89 89 9b 95 29 |0E.!...3.......)| -orderer.example.com | 00000010 b1 ea d0 d6 de cb 58 54 56 56 cf fb 78 a9 1a 43 |......XTVV..x..C| -orderer.example.com | 00000020 c6 e1 04 9f 2d 02 20 7a 65 d3 be 44 75 b8 eb b0 |....-. ze..Du...| -orderer.example.com | 00000030 1d 60 91 8a 1c cd 44 42 3a e7 0f 35 6c d1 df fa |.`....DB:..5l...| -orderer.example.com | 00000040 d7 12 0c b6 d7 56 86 |.....V.| -orderer.example.com | [b83 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal evaluation succeeds for identity 0 -orderer.example.com | [b84 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515134240596832600 evaluation succeeds -orderer.example.com | [b85 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b86 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b87 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b88 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b89 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b8a 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b8b 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202a87a0) start: > stop: > from 172.18.0.7:44220 -orderer.example.com | [b8c 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b8d 01-05 06:37:20.59 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 | [b8e 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes -orderer.example.com | [b8f 01-05 06:37:20.60 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 | [b90 01-05 06:37:20.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [b91 01-05 06:37:20.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202a87a0) for 172.18.0.7:44220 -orderer.example.com | [b92 01-05 06:37:20.60 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:44220 for (0xc4202a87a0) -orderer.example.com | [b93 01-05 06:37:20.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:44220 -orderer.example.com | [b94 01-05 06:37:20.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:44220 -orderer.example.com | [b95 01-05 06:37:20.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44220: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b96 01-05 06:37:20.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b97 01-05 06:37:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b98 01-05 06:37:20.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:44222 -orderer.example.com | [b99 01-05 06:37:20.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:44222 -orderer.example.com | [b9a 01-05 06:37:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b9b 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b9c 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b9d 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b9e 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b9f 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515134240741335200 evaluation starts -orderer.example.com | [ba0 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ba1 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ba2 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ba3 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [ba4 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal matched by identity 0 -orderer.example.com | [ba5 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 00 7a 2d 7f 7f 23 21 bb d2 47 9a 68 a8 d6 7f |L.z-..#!..G.h...| -orderer.example.com | 00000010 61 fb 78 92 e5 be c6 03 ba 27 32 ee 77 fc c8 b1 |a.x......'2.w...| -orderer.example.com | [ba6 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 b6 24 d1 f5 fc 53 f9 9b 51 c4 f5 |0D. P.$...S..Q..| -orderer.example.com | 00000010 6f 3e 80 2f a1 9e fa 52 2d a9 bc 42 b2 f8 a7 31 |o>./...R-..B...1| -orderer.example.com | 00000020 b4 88 5a ba 02 20 37 00 22 4d b1 7e a4 81 2e 5b |..Z.. 7."M.~...[| -orderer.example.com | 00000030 3d 41 e1 7f 35 82 df f6 1d 08 c6 5b e9 a8 4d 29 |=A..5......[..M)| -orderer.example.com | 00000040 0a 7c 4f 6a b1 fa |.|Oj..| -orderer.example.com | [ba7 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal evaluation succeeds for identity 0 -orderer.example.com | [ba8 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515134240741335200 evaluation succeeds -orderer.example.com | [ba9 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [baa 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bab 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [bac 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [bad 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [bae 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [baf 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202a9f20) start: > stop: > from 172.18.0.7:44222 -orderer.example.com | [bb0 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [bb1 01-05 06:37:20.74 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 | [bb2 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes -orderer.example.com | [bb3 01-05 06:37:20.74 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 | [bb4 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [bb5 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202a9f20) for 172.18.0.7:44222 -orderer.example.com | [bb6 01-05 06:37:20.74 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:44222 for (0xc4202a9f20) -orderer.example.com | [bb7 01-05 06:37:20.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:44222 -orderer.example.com | [bb8 01-05 06:37:20.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:44222 -orderer.example.com | [bb9 01-05 06:37:20.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44222: rpc error: code = Canceled desc = context canceled -orderer.example.com | [bba 01-05 06:37:20.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [bbb 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [bbc 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44224 -orderer.example.com | [bbd 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44224 -orderer.example.com | [bbe 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [bbf 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bc0 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [bc1 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [bc2 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [bc3 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1515134240948521400 evaluation starts -orderer.example.com | [bc4 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bc5 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bc6 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [bc7 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [bc8 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal matched by identity 0 -orderer.example.com | [bc9 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 72 a3 9b 21 60 44 bd 2a 13 c8 66 00 28 17 4d e9 |r..!`D.*..f.(.M.| -orderer.example.com | 00000010 a6 00 b2 af 95 00 62 e9 45 43 c3 4c 8e b9 c2 5b |......b.EC.L...[| -orderer.example.com | [bca 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 41 e8 c7 c4 69 d7 57 9f 37 69 81 82 |0D. A...i.W.7i..| -orderer.example.com | 00000010 09 45 5c 8f d1 a2 ce fb ad c7 be c7 2b 8e 65 30 |.E\.........+.e0| -orderer.example.com | 00000020 a2 97 a8 6c 02 20 77 e0 82 0f 5f df 27 5e af 78 |...l. w..._.'^.x| -orderer.example.com | 00000030 7e 1d fb 68 90 e8 a1 48 ea d8 d9 84 1f ec f1 7e |~..h...H.......~| -orderer.example.com | 00000040 86 b6 a3 06 26 a0 |....&.| -orderer.example.com | [bcb 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal evaluation succeeds for identity 0 -orderer.example.com | [bcc 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1515134240948521400 evaluation succeeds -orderer.example.com | [bcd 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bce 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [bcf 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [bd0 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [bd1 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [bd2 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [bd3 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4200d3500) start: > stop: > from 172.18.0.7:44224 -orderer.example.com | [bd4 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [bd5 01-05 06:37:20.95 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 | [bd6 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes -orderer.example.com | [bd7 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [bd8 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] -orderer.example.com | [bd9 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4200d3500) for 172.18.0.7:44224 -orderer.example.com | [bda 01-05 06:37:20.95 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:44224 for (0xc4200d3500) -orderer.example.com | [bdb 01-05 06:37:20.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:44224 -orderer.example.com | [bdc 01-05 06:37:20.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:44224 -orderer.example.com | [bdd 01-05 06:37:20.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44224: rpc error: code = Canceled desc = context canceled -orderer.example.com | [bde 01-05 06:37:20.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [bdf 01-05 06:37:27.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [be0 01-05 06:37:27.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44236 -orderer.example.com | [be1 01-05 06:37:27.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44236 -orderer.example.com | [be2 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [be3 01-05 06:37:27.67 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:44238 -orderer.example.com | [be4 01-05 06:37:27.67 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:44238 -orderer.example.com | [be5 01-05 06:37:27.67 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 | [be6 01-05 06:37:27.67 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 | [be7 01-05 06:37:27.67 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 | [be8 01-05 06:37:27.67 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 | [be9 01-05 06:37:27.67 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 | [bea 01-05 06:37:27.67 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 | [beb 01-05 06:37:27.67 UTC] [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 0xc4201384e8 gate 1515134247677423600 evaluation starts -orderer.example.com | [bec 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bed 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bee 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [bef 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 principal evaluation fails -orderer.example.com | [bf0 01-05 06:37:27.67 UTC] [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 0xc4201384e8 gate 1515134247677423600 evaluation fails -orderer.example.com | [bf1 01-05 06:37:27.67 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 | [bf2 01-05 06:37:27.67 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 | [bf3 01-05 06:37:27.68 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 | [bf4 01-05 06:37:27.68 UTC] [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 0xc4201384f0 gate 1515134247680430600 evaluation starts -orderer.example.com | [bf5 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bf6 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bf7 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [bf8 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [bf9 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 principal matched by identity 0 -orderer.example.com | [bfa 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 4c d9 60 8c 80 b0 2a 89 f4 6e b6 c3 64 57 48 |.L.`...*..n..dWH| -orderer.example.com | 00000010 50 b0 b6 47 3d b2 80 7c f7 fd 6b 40 e9 04 c6 7a |P..G=..|..k@...z| -orderer.example.com | [bfb 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1b 5e e0 8d b4 a0 4c 97 ae 3b 0a 03 |0D. .^....L..;..| -orderer.example.com | 00000010 21 23 a5 3b e5 3c ea f7 83 80 e6 04 e8 f6 6b ca |!#.;.<........k.| -orderer.example.com | 00000020 21 6c 0f 94 02 20 56 72 b3 c0 66 83 37 ff 0d 1a |!l... Vr..f.7...| -orderer.example.com | 00000030 2a 8e b9 99 3d a7 a2 a5 58 30 86 5e a3 e2 49 e0 |*...=...X0.^..I.| -orderer.example.com | 00000040 91 d9 3e cf dd 05 |..>...| -orderer.example.com | [bfc 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 principal evaluation succeeds for identity 0 -orderer.example.com | [bfd 01-05 06:37:27.68 UTC] [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 0xc4201384f0 gate 1515134247680430600 evaluation succeeds -orderer.example.com | [bfe 01-05 06:37:27.68 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 | [bff 01-05 06:37:27.68 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 | [c00 01-05 06:37:27.68 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 | [c01 01-05 06:37:27.68 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 | [c02 01-05 06:37:27.68 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 | [c03 01-05 06:37:27.68 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 | [c04 01-05 06:37:27.68 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 | [c05 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c06 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c07 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c08 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c09 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c0a 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c0b 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c0c 01-05 06:37:27.68 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 | [c0d 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c0e 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c0f 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c10 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c11 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c12 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c13 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c14 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c15 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c16 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c17 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c18 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 | [c19 01-05 06:37:27.69 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 | [c1a 01-05 06:37:27.69 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 | [c1b 01-05 06:37:27.69 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 | [c1c 01-05 06:37:27.69 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 | [c1d 01-05 06:37:27.69 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 | [c1e 01-05 06:37:27.69 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 | [c1f 01-05 06:37:27.69 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 | [c20 01-05 06:37:27.69 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 | [c21 01-05 06:37:27.69 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 | [c22 01-05 06:37:27.69 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 | [c23 01-05 06:37:27.69 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 | [c24 01-05 06:37:27.69 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 | [c25 01-05 06:37:27.69 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 | [c26 01-05 06:37:27.69 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 | [c27 01-05 06:37:27.69 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 | [c28 01-05 06:37:27.69 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [c29 01-05 06:37:27.69 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 0xc4202fe020 gate 1515134247692799000 evaluation starts -orderer.example.com | [c2a 01-05 06:37:27.69 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 0xc4202fe020 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [c2b 01-05 06:37:27.69 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 0xc4202fe020 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c2c 01-05 06:37:27.69 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 0xc4202fe020 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [c2d 01-05 06:37:27.69 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 0xc4202fe020 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c2e 01-05 06:37:27.69 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 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [c2f 01-05 06:37:27.69 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 0xc4202fe020 principal matched by identity 1 -orderer.example.com | [c30 01-05 06:37:27.69 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 -> DEBU Verify: digest = 00000000 d7 c2 86 fa 0e 7b a8 dd 10 a9 39 f5 1e 7a 0b 0f |.....{....9..z..| -orderer.example.com | 00000010 d3 87 dc 97 61 90 14 fc 2d 06 73 05 28 09 08 7f |....a...-.s.(...| -orderer.example.com | [c31 01-05 06:37:27.69 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 -> DEBU Verify: sig = 00000000 30 44 02 20 5b 7f 38 c6 85 f0 bc 22 6c 45 41 69 |0D. [.8...."lEAi| -orderer.example.com | 00000010 46 7c 58 8c 50 ad 79 a5 b3 7b 46 c0 63 02 e7 5b |F|X.P.y..{F.c..[| -orderer.example.com | 00000020 cd 95 de 36 02 20 17 71 bf 15 0f b5 26 63 3d e2 |...6. .q....&c=.| -orderer.example.com | 00000030 79 8f 64 1d 6c de 51 c5 fc 01 6e 18 28 21 94 f1 |y.d.l.Q...n.(!..| -orderer.example.com | 00000040 be 99 86 93 d2 fb |......| -orderer.example.com | [c32 01-05 06:37:27.69 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 0xc4202fe020 principal evaluation succeeds for identity 1 -orderer.example.com | [c33 01-05 06:37:27.69 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 0xc4202fe020 gate 1515134247692799000 evaluation succeeds -orderer.example.com | [c34 01-05 06:37:27.69 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 | [c35 01-05 06:37:27.69 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 | [c36 01-05 06:37:27.69 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 | [c37 01-05 06:37:27.69 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [c38 01-05 06:37:27.69 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 0xc4202fe5e0 gate 1515134247695431600 evaluation starts -orderer.example.com | [c39 01-05 06:37:27.69 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 0xc4202fe5e0 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [c3a 01-05 06:37:27.69 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 0xc4202fe5e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c3b 01-05 06:37:27.69 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 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [c3c 01-05 06:37:27.69 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 0xc4202fe5e0 principal matched by identity 0 -orderer.example.com | [c3d 01-05 06:37:27.69 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 -> DEBU Verify: digest = 00000000 47 c0 67 c5 95 f9 6c 2b a5 e5 8c cd b1 5c 01 fd |G.g...l+.....\..| -orderer.example.com | 00000010 f4 9a 17 a6 9f a6 41 16 b4 b1 1c ef d6 4c 1e b8 |......A......L..| -orderer.example.com | [c3e 01-05 06:37:27.69 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 -> DEBU Verify: sig = 00000000 30 44 02 20 6c a4 ef 03 10 e6 ad 4c 0f 55 a7 0a |0D. l......L.U..| -orderer.example.com | 00000010 ac 4f 05 cb 34 b4 52 94 06 c5 a6 73 97 35 f1 ed |.O..4.R....s.5..| -orderer.example.com | 00000020 3f 15 c1 f0 02 20 00 bc 39 94 46 0d c4 08 bf f4 |?.... ..9.F.....| -orderer.example.com | 00000030 ba a8 ee 0a f6 78 33 0e 95 ea 62 17 07 5b 2e 69 |.....x3...b..[.i| -orderer.example.com | 00000040 71 a6 85 88 fb 6b |q....k| -orderer.example.com | [c3f 01-05 06:37:27.69 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 0xc4202fe5e0 principal evaluation succeeds for identity 0 -orderer.example.com | [c40 01-05 06:37:27.69 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 0xc4202fe5e0 gate 1515134247695431600 evaluation succeeds -orderer.example.com | [c41 01-05 06:37:27.69 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 | [c42 01-05 06:37:27.69 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 | [c43 01-05 06:37:27.69 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 | [c44 01-05 06:37:27.69 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 | [c45 01-05 06:37:27.69 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 | [c46 01-05 06:37:27.69 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 | [c47 01-05 06:37:27.69 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 | [c48 01-05 06:37:27.69 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 | [c49 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c4a 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c4b 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c4c 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c4d 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c4e 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c4f 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c50 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c51 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c52 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [c53 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [c54 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [c55 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c56 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c57 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c58 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c59 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c5a 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c5b 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [c5c 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c5d 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c5e 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c5f 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [c60 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [c61 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [c62 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [c63 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [c64 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [c65 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [c66 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [c67 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [c68 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [c69 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [c6a 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [c6b 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [c6c 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [c6d 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c6e 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [c6f 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [c70 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [c71 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [c72 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [aca 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c668 gate 1515824096050966888 evaluation starts +peer0.org1.example.com | [e84 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]sending state message TRANSACTION +peer0.org1.example.com | [e85 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Received message TRANSACTION from shim +peer0.org1.example.com | [e86 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [e87 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9b1dea9b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [e88 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [e89 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [e8a 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Move state message COMPLETED +peer0.org1.example.com | [e8b 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [e8c 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]send state message COMPLETED +peer0.org1.example.com | [e8d 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Received message COMPLETED from shim +peer0.org1.example.com | [e8e 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [e8f 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [e90 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90, channelID:businesschannel +peer0.org1.example.com | [e91 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [e92 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [e93 01-13 06:14:44.88 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 | [e94 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +peer0.org1.example.com | [e95 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [e96 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [e97 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [e98 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [e99 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90,syscc=true,proposal=0xc424537a90,canname=escc:1.1.0 +peer0.org1.example.com | [e9a 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [e9b 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [e9c 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [e9d 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [e9e 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [e9f 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [ea0 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [ea1 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Move state message TRANSACTION +peer0.org1.example.com | [ea2 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [ea3 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [ea4 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]sending state message TRANSACTION +peer0.org1.example.com | [ea5 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Received message TRANSACTION from shim +peer0.org1.example.com | [ea6 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [ea7 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9b1dea9b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [acb 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [ea8 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [acc 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [ea9 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [acd 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [ace 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [eaa 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [eab 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Move state message COMPLETED +orderer.example.com | [acf 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 principal matched by identity 0 +orderer.example.com | [ad0 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7d 13 48 49 37 f2 a6 f9 b6 ac 91 fb 2a 94 14 53 |}.HI7.......*..S| +orderer.example.com | 00000010 c7 63 f1 84 6f 56 a4 5f 59 be 97 f3 5b e8 82 c5 |.c..oV._Y...[...| +orderer.example.com | [ad1 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 92 a5 a7 8a 93 07 fb 0b 37 bc a5 |0E.!.........7..| +orderer.example.com | 00000010 1b a0 3e ff ab 0e 8d c3 ce 17 00 7c 29 62 6c 4c |..>........|)blL| +peer0.org1.example.com | [eac 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 00000020 fa 9d 50 47 02 02 20 26 41 3d 33 b4 c7 43 d6 b2 |..PG.. &A=3..C..| +peer0.org1.example.com | [ead 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]send state message COMPLETED +orderer.example.com | 00000030 8f c0 86 55 31 16 9e 82 84 9f 62 dc c3 df c6 b3 |...U1.....b.....| +orderer.example.com | 00000040 38 19 80 90 05 ac 84 |8......| +peer0.org1.example.com | [eae 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Received message COMPLETED from shim +orderer.example.com | [ad2 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [eaf 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [ad3 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c668 gate 1515824096050966888 evaluation succeeds +peer0.org1.example.com | [eb0 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90]HandleMessage- COMPLETED. Notify +orderer.example.com | [ad4 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [eb1 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90, channelID:businesschannel +orderer.example.com | [ad5 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [ad6 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [eb2 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [ad7 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [eb3 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [ad8 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [eb4 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [ad9 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [eb5 01-13 06:14:44.89 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 [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +orderer.example.com | [ada 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203d05a0) start: > stop: > from 172.18.0.8:50280 +peer0.org1.example.com | [eb6 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53730) +orderer.example.com | [adb 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer0.org1.example.com | [eb7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53732 +orderer.example.com | [adc 01-13 06:14:56.05 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 | [eb8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427875a70 +peer0.org1.example.com | [eb9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [add 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes +orderer.example.com | [ade 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +peer0.org1.example.com | [eba 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [adf 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] +peer0.org1.example.com | [ebb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [ae0 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203d05a0) for 172.18.0.8:50280 +peer0.org1.example.com | [ebc 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [ebd 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [ae1 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50280 for (0xc4203d05a0) +orderer.example.com | [ae2 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50280 +orderer.example.com | [ae3 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50280 +peer0.org1.example.com | [ebe 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42788eb40, header 0xc427875dd0 +orderer.example.com | [ae4 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50280: read: connection reset by peer +peer0.org1.example.com | [ebf 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [ae5 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50280: rpc error: code = Canceled desc = context canceled +orderer.example.com | [ae6 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [ae7 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [ae8 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50282 +orderer.example.com | [ae9 01-13 06:14:56.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.8:50282 +orderer.example.com | [aea 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [aeb 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [ec0 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 +orderer.example.com | [aec 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [aed 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [aee 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [aef 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6e8 gate 1515824096194633288 evaluation starts +orderer.example.com | [af0 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [af1 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [ec1 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +orderer.example.com | [af2 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [ec2 01-13 06:14:45.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 +orderer.example.com | [af3 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [ec3 01-13 06:14:45.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 = [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +peer0.org1.example.com | [ec4 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel +orderer.example.com | [af4 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 principal matched by identity 0 +orderer.example.com | [af5 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 71 7c 77 fa 28 09 7d 15 f8 57 f7 2d 61 32 88 a9 |q|w.(.}..W.-a2..| +peer0.org1.example.com | [ec5 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel version: 1.1.0 +orderer.example.com | 00000010 9b 5d f1 df 4d d7 96 9e 92 4b 17 0d b8 5d 9b 9a |.]..M....K...]..| +orderer.example.com | [af6 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 36 15 06 4e cf 13 84 3d d2 b5 22 dd |0D. 6..N...=..".| +peer0.org1.example.com | [ec6 01-13 06:14:45.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.1.0,txid=99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8,syscc=true,proposal=0xc42788eb40,canname=qscc:1.1.0 +orderer.example.com | 00000010 06 1f 84 60 e0 99 9f 8b 3e 2a 7d b4 8c fd 16 09 |...`....>*}.....| +orderer.example.com | 00000020 ff 82 37 66 02 20 39 32 87 38 fb 59 35 4d 57 dd |..7f. 92.8.Y5MW.| +orderer.example.com | 00000030 ea b0 51 62 82 c9 2f 6a 44 40 87 b7 c2 27 11 de |..Qb../jD@...'..| +peer0.org1.example.com | [ec7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [ec8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [ec9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | 00000040 ea c4 ab 63 79 38 |...cy8| +orderer.example.com | [af7 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [eca 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [af8 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6e8 gate 1515824096194633288 evaluation succeeds +peer0.org1.example.com | [ecb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [ecc 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [ecd 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [ece 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Move state message TRANSACTION +peer0.org1.example.com | [ecf 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [af9 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [ed0 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [afa 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [ed1 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]sending state message TRANSACTION +orderer.example.com | [afb 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [ed2 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Received message TRANSACTION from shim +orderer.example.com | [afc 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [ed3 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [afd 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [ed4 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [99771384]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [ed5 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [afe 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [ed6 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [ed7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Move state message COMPLETED +peer0.org1.example.com | [ed8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [aff 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203d1a20) start: > stop: > from 172.18.0.8:50282 +peer0.org1.example.com | [ed9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]send state message COMPLETED +orderer.example.com | [b00 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer0.org1.example.com | [eda 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Received message COMPLETED from shim +orderer.example.com | [b01 01-13 06:14:56.19 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 | [edb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [edc 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8]HandleMessage- COMPLETED. Notify +orderer.example.com | [b02 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes +peer0.org1.example.com | [edd 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8, channelID:businesschannel +orderer.example.com | [b03 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +peer0.org1.example.com | [ede 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [b04 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] +orderer.example.com | [b05 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203d1a20) for 172.18.0.8:50282 +peer0.org1.example.com | [edf 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [b06 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50282 for (0xc4203d1a20) +peer0.org1.example.com | [ee0 01-13 06:14:45.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 +orderer.example.com | [b07 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50282 +orderer.example.com | [b08 01-13 06:14:56.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.8:50282 +orderer.example.com | [b09 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [ee1 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +orderer.example.com | [b0a 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [ee2 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [ee3 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [b0b 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [ee4 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [b0c 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [ee5 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel version: 1.1.0 +orderer.example.com | [b0d 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [b0e 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b8 gate 1515824096202512388 evaluation starts +peer0.org1.example.com | [ee6 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8,syscc=true,proposal=0xc42788eb40,canname=escc:1.1.0 +peer0.org1.example.com | [ee7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [ee8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [ee9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [b0f 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [eea 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [eeb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [eec 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [b10 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [eed 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [eee 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Move state message TRANSACTION +peer0.org1.example.com | [eef 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [ef0 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [ef1 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]sending state message TRANSACTION +peer0.org1.example.com | [ef2 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Received message TRANSACTION from shim +peer0.org1.example.com | [ef3 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [b11 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [ef4 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [99771384]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [ef5 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [ef6 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [ef7 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [ef8 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Move state message COMPLETED +orderer.example.com | [b12 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [ef9 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [efa 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]send state message COMPLETED +peer0.org1.example.com | [efb 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Received message COMPLETED from shim +peer0.org1.example.com | [efc 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [efd 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [efe 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8, channelID:businesschannel +peer0.org1.example.com | [eff 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [b13 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 principal matched by identity 0 +peer0.org1.example.com | [f00 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [b14 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7a 82 ae 46 be b7 20 20 50 86 b7 de cc f2 6b 77 |z..F.. P.....kw| +peer0.org1.example.com | [f01 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 00000010 f9 00 fc 75 bb 42 0a 5d c4 f9 af 6a 38 3a 74 75 |...u.B.]...j8:tu| +peer0.org1.example.com | [f02 01-13 06:14:45.93 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 [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +orderer.example.com | [b15 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 66 fc d0 52 93 c6 f5 43 95 99 ae 65 |0D. f..R...C...e| +peer0.org1.example.com | [f03 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53732) +orderer.example.com | 00000010 d1 ab 56 68 72 b5 f8 d0 a8 ce b9 7c 80 da 77 e4 |..Vhr......|..w.| +orderer.example.com | 00000020 a1 48 b9 3e 02 20 29 f4 e7 2f 18 89 9d 5e 54 41 |.H.>. )../...^TA| +peer0.org1.example.com | [f04 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org1.example.com | [f05 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +orderer.example.com | 00000030 13 68 f6 22 f1 3e 80 ad e3 09 33 74 a2 2f eb 81 |.h.".>....3t./..| +peer0.org1.example.com | [f06 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | 00000040 c7 50 46 1b 55 b0 |.PF.U.| +peer0.org1.example.com | [f07 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [b16 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [f08 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc427852e80 env 0xc4278338f0 txn 0 +orderer.example.com | [b17 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b8 gate 1515824096202512388 evaluation succeeds +peer0.org1.example.com | [f09 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4278338f0 +orderer.example.com | [b18 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [f0a 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +orderer.example.com | [b19 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [f0b 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [b1a 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [f0c 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [b1b 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [f0d 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [b1c 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [b1d 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [f0e 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [b1e 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4200d2460) start: > stop: > from 172.18.0.8:50282 +peer0.org1.example.com | [f0f 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [b1f 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer0.org1.example.com | [f10 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42794e000, header channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +orderer.example.com | [b20 01-13 06:14:56.20 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] +peer0.org1.example.com | [f11 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [b21 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes +peer0.org1.example.com | [f12 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [b22 01-13 06:14:56.20 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]} +peer0.org1.example.com | [f13 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [b23 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +peer0.org1.example.com | [f14 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +orderer.example.com | [b24 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4200d2460) for 172.18.0.8:50282 +peer0.org1.example.com | [f15 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [b25 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50282 for (0xc4200d2460) +orderer.example.com | [b26 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50282 +peer0.org1.example.com | [f16 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [f17 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4278338f0 envbytes 0xc427939c00 +orderer.example.com | [b27 01-13 06:14:56.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.8:50282 +peer0.org1.example.com | [f18 01-13 06:14:46.61 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 = [5b394d9b-441a-4d3c-a60b-56108a814237] +orderer.example.com | [b28 01-13 06:14:56.22 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50282: read: connection reset by peer +orderer.example.com | [b29 01-13 06:14:56.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50282: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [f19 01-13 06:14:46.61 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 +orderer.example.com | [b2a 01-13 06:14:56.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [b2b 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [f1a 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [5b394d9b-441a-4d3c-a60b-56108a814237] +peer0.org1.example.com | [f1b 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc427939c00 +orderer.example.com | [b2c 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50284 +peer0.org1.example.com | [f1c 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [b2d 01-13 06:14:56.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.8:50284 +orderer.example.com | [b2e 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [b2f 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [f1d 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [b30 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [f1e 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=f05c5645-71e4-4338-b804-0db2663bbcd7,syscc=true,proposal=0x0,canname=vscc:1.1.0 +orderer.example.com | [b31 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [f1f 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 chaindID businesschannel +orderer.example.com | [b32 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [f20 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [f21 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [b33 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e328 gate 1515824096367353588 evaluation starts +peer0.org1.example.com | [f22 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +orderer.example.com | [b34 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [f23 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f05c5645]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [b35 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [f24 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [b36 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [f25 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f05c5645]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [b37 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [b38 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 principal matched by identity 0 +peer0.org1.example.com | [f26 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f05c5645]Move state message TRANSACTION +orderer.example.com | [b39 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ba 1a c3 1f 5c b2 50 61 c2 f4 61 74 77 70 70 12 |....\.Pa..atwpp.| +orderer.example.com | 00000010 1c 8d a3 b0 c5 be cc e9 cf 16 1d e4 dd ab 90 29 |...............)| +peer0.org1.example.com | [f27 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f05c5645]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [b3a 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1b 3c 08 27 c8 2d 7c be 03 5d a7 d2 |0D. .<.'.-|..]..| +peer0.org1.example.com | [f28 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000010 5d 20 00 43 d2 bd be 7d d4 7f 3a 78 e6 cc 30 8d |] .C...}..:x..0.| +orderer.example.com | 00000020 7d 5c 29 0a 02 20 78 b9 6f aa 6c 56 e0 62 18 ae |}\).. x.o.lV.b..| +peer0.org1.example.com | [f29 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f05c5645]sending state message TRANSACTION +orderer.example.com | 00000030 ec 04 21 92 05 b4 c3 75 d0 46 3a da 48 41 3f a1 |..!....u.F:.HA?.| +orderer.example.com | 00000040 a4 57 f0 0e 58 15 |.W..X.| +orderer.example.com | [b3b 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 principal evaluation succeeds for identity 0 +orderer.example.com | [b3c 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e328 gate 1515824096367353588 evaluation succeeds +peer0.org1.example.com | [f2a 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]Received message TRANSACTION from shim +orderer.example.com | [b3d 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [b3e 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [f2b 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f05c5645]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [b3f 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [f2c 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f05c5645]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [b40 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [b41 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [b42 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [b43 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420124680) start: > stop: > from 172.18.0.8:50284 +peer0.org1.example.com | [f2d 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [b44 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [b45 01-13 06:14:56.36 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] +peer0.org1.example.com | [f2e 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [b46 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes +orderer.example.com | [b47 01-13 06:14:56.36 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 | [b48 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +peer0.org1.example.com | [f2f 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [b49 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420124680) for 172.18.0.8:50284 +orderer.example.com | [b4a 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50284 for (0xc420124680) +orderer.example.com | [b4b 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50284 +peer0.org1.example.com | [f30 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]Transaction completed. Sending COMPLETED +orderer.example.com | [b4c 01-13 06:14:56.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.8:50284 +orderer.example.com | [b4d 01-13 06:14:56.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50284: rpc error: code = Canceled desc = context canceled +orderer.example.com | [b4e 01-13 06:14:56.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [f31 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]Move state message COMPLETED +orderer.example.com | [b4f 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [f32 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f05c5645]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [b50 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50286 +peer0.org1.example.com | [f33 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]send state message COMPLETED +orderer.example.com | [b51 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50286 +peer0.org1.example.com | [f34 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f05c5645]Received message COMPLETED from shim +peer0.org1.example.com | [f35 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f05c5645]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [f36 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f05c5645-71e4-4338-b804-0db2663bbcd7]HandleMessage- COMPLETED. Notify +orderer.example.com | [b52 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [b53 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [f37 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f05c5645-71e4-4338-b804-0db2663bbcd7, channelID:businesschannel +orderer.example.com | [b54 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [b55 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [f38 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [b56 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [f39 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +orderer.example.com | [b57 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c768 gate 1515824096508655488 evaluation starts +peer0.org1.example.com | [f3a 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc427939c00 +orderer.example.com | [b58 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [f3b 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4278338f0 envbytes 0xc427939c00 +orderer.example.com | [b59 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [f3c 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc427852e80 env 0xc4278338f0 txn 0 +orderer.example.com | [b5a 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [b5b 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [f3d 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [f3e 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [b5c 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 principal matched by identity 0 +peer0.org1.example.com | [f3f 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +orderer.example.com | [b5d 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7a 71 68 2c 78 67 71 ef 30 5f 41 67 4c cb 81 fd |zqh,xgq.0_AgL...| +peer0.org1.example.com | [f40 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 00000010 26 88 99 24 da 7d f7 1a 89 4a e7 53 13 31 1d 4f |&..$.}...J.S.1.O| +orderer.example.com | [b5e 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1e ca 22 30 d9 ee 6f a3 ea 1b d8 d8 |0D. .."0..o.....| +peer0.org1.example.com | [f41 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +orderer.example.com | 00000010 5f f4 db f3 78 65 31 67 59 16 22 ef 14 f0 9f af |_...xe1gY.".....| +orderer.example.com | 00000020 3e f6 68 67 02 20 41 2d 6b d4 9a 62 5d 80 5f 71 |>.hg. A-k..b]._q| +peer0.org1.example.com | [f42 01-13 06:14:46.66 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 | [f43 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +orderer.example.com | 00000030 88 68 a2 1f a4 8a 86 e0 c9 34 f5 4d b9 c4 8c 38 |.h.......4.M...8| +peer0.org1.example.com | [f44 01-13 06:14:46.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=exp02, key=a +orderer.example.com | 00000040 89 9c f1 9c 3a e9 |....:.| +peer0.org1.example.com | [f45 01-13 06:14:46.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 [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [f46 01-13 06:14:46.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=exp02, key=b +orderer.example.com | [b5f 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [f47 01-13 06:14:46.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 [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | [b60 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c768 gate 1515824096508655488 evaluation succeeds +orderer.example.com | [b61 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [f48 01-13 06:14:46.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 +orderer.example.com | [b62 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [f49 01-13 06:14:46.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +orderer.example.com | [b63 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [f4a 01-13 06:14:46.67 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] marked as valid by state validator +orderer.example.com | [b64 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [b65 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [f4b 01-13 06:14:46.67 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 | [f4c 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [b66 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [f4d 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [b67 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420232f40) start: > stop: > from 172.18.0.8:50286 +peer0.org1.example.com | [f4e 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +orderer.example.com | [b68 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [b69 01-13 06:14:56.51 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 | [f4f 01-13 06:14:46.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 [5] +orderer.example.com | [b6a 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes +orderer.example.com | [b6b 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +orderer.example.com | [b6c 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] +peer0.org1.example.com | [f50 01-13 06:14:46.67 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{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +orderer.example.com | [b6d 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420232f40) for 172.18.0.8:50286 +peer0.org1.example.com | txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 +peer0.org1.example.com | ] +orderer.example.com | [b6e 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50286 for (0xc420232f40) +peer0.org1.example.com | [f51 01-13 06:14:46.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=50812, bytesLength=2916] for tx ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to index +orderer.example.com | [b6f 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50286 +peer0.org1.example.com | [f52 01-13 06:14:46.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=50812, bytesLength=2916] for tx number:[0] ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to blockNumTranNum index +orderer.example.com | [b70 01-13 06:14:56.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.8:50286 +peer0.org1.example.com | [f53 01-13 06:14:46.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=[55522], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [b71 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50286: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [f54 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +orderer.example.com | [b72 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [f55 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +orderer.example.com | [b73 01-13 06:15:01.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [f56 01-13 06:14:46.68 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 | [f57 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +orderer.example.com | [b74 01-13 06:15:01.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50308 +peer0.org1.example.com | [f58 01-13 06:14:46.68 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 | [b75 01-13 06:15:01.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.8:50308 +peer0.org1.example.com | [f59 01-13 06:14:46.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 +orderer.example.com | [b76 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org1.example.com | [f5a 01-13 06:14:46.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}] +orderer.example.com | [b77 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50310 +peer0.org1.example.com | [f5b 01-13 06:14:46.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}] +orderer.example.com | [b78 01-13 06:15:01.96 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.8:50310 +peer0.org1.example.com | [f5c 01-13 06:14:46.68 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 | [b79 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +peer0.org1.example.com | [f5d 01-13 06:14:46.68 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 | [f5e 01-13 06:14:46.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 [5] with [1] transactions +peer0.org1.example.com | [f5f 01-13 06:14:46.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 [5] +peer0.org1.example.com | [f60 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [b7a 01-13 06:15:01.96 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 | [f61 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +peer0.org1.example.com | [f62 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [f63 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [f64 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [f65 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [f66 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [f67 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [f68 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [f69 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [f6a 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [f6b 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53734 +peer0.org1.example.com | [f6c 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427b55320 +orderer.example.com | [b7b 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [f6d 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [f6e 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [f6f 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [f70 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [f71 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [b7c 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer0.org1.example.com | [f72 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc427b4cf00, header 0xc427b55680 +orderer.example.com | [b7d 01-13 06:15:01.96 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 | [f73 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [f74 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a +orderer.example.com | [b7e 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer0.org1.example.com | [f75 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +orderer.example.com | [b7f 01-13 06:15:01.96 UTC] [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 0xc42011c7f0 gate 1515824101966177390 evaluation starts +orderer.example.com | [b80 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [f76 01-13 06:14:46.97 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 | [f77 01-13 06:14:46.97 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 = [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +orderer.example.com | [b81 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [b82 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +peer0.org1.example.com | [f78 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel +orderer.example.com | [b83 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 principal evaluation fails +peer0.org1.example.com | [f79 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [f7a 01-13 06:14:46.97 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.1.0,txid=b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a,syscc=true,proposal=0xc427b4cf00,canname=qscc:1.1.0 +orderer.example.com | [b84 01-13 06:15:01.96 UTC] [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 0xc42011c7f0 gate 1515824101966177390 evaluation fails +peer0.org1.example.com | [f7b 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [b85 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [f7c 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [b86 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [f7d 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [b87 01-13 06:15:01.96 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 ] +peer0.org1.example.com | [f7e 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [b88 01-13 06:15:01.96 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 +peer0.org1.example.com | [f7f 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [f80 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [b89 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer0.org1.example.com | [f81 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [f82 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Move state message TRANSACTION +orderer.example.com | [b8a 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer0.org1.example.com | [f83 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [b8b 01-13 06:15:01.97 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 | [f84 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [b8c 01-13 06:15:01.97 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 | [b8d 01-13 06:15:01.97 UTC] [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 0xc42011c7f8 gate 1515824101971023890 evaluation starts +peer0.org1.example.com | [f85 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]sending state message TRANSACTION +peer0.org1.example.com | [f86 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Received message TRANSACTION from shim +peer0.org1.example.com | [f87 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [b8e 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [f88 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b07053bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [b8f 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [f89 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [f8a 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Transaction completed. Sending COMPLETED +orderer.example.com | [b90 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [b91 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [f8b 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Move state message COMPLETED +orderer.example.com | [b92 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 principal matched by identity 0 +orderer.example.com | [b93 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d8 f5 3d ad a2 44 30 02 c1 5e 72 f4 74 a0 7c 5a |..=..D0..^r.t.|Z| +peer0.org1.example.com | [f8c 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 00000010 9e de 91 d1 e4 33 84 e8 36 02 78 58 55 b4 c0 02 |.....3..6.xXU...| +orderer.example.com | [b94 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f4 d9 9f fe 91 d0 fb 2c 26 9e e6 |0E.!........,&..| +orderer.example.com | 00000010 81 46 2b f7 95 65 dd a6 c0 0c 9c c6 88 71 c6 52 |.F+..e.......q.R| +peer0.org1.example.com | [f8d 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]send state message COMPLETED +orderer.example.com | 00000020 11 b5 f1 7f 2f 02 20 61 0a 84 60 a5 17 87 91 f9 |..../. a..`.....| +orderer.example.com | 00000030 05 11 c2 dc 8a df 0a 2d 8c a0 ba d7 b6 0c 28 dd |.......-......(.| +peer0.org1.example.com | [f8e 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Received message COMPLETED from shim +orderer.example.com | 00000040 46 96 70 a7 77 86 62 |F.p.w.b| +orderer.example.com | [b95 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [f8f 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [b96 01-13 06:15:01.97 UTC] [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 0xc42011c7f8 gate 1515824101971023890 evaluation succeeds +orderer.example.com | [b97 01-13 06:15:01.97 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 | [b98 01-13 06:15:01.97 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 | [b99 01-13 06:15:01.97 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 | [b9a 01-13 06:15:01.97 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 | [b9b 01-13 06:15:01.97 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 | [b9c 01-13 06:15:01.97 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 | [b9d 01-13 06:15:01.97 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 | [b9e 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [b9f 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba0 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba1 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba2 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba3 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [f90 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a]HandleMessage- COMPLETED. Notify +orderer.example.com | [ba4 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba5 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [f91 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a, channelID:businesschannel +orderer.example.com | [ba6 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba7 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [f92 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [ba8 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [ba9 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [f93 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [baa 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [bab 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [bac 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [bad 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [f94 01-13 06:14:46.98 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 +orderer.example.com | [bae 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [f95 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +orderer.example.com | [baf 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [f96 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [bb0 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 | [bb1 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [f97 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [bb2 01-13 06:15:01.97 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 | [bb3 01-13 06:15:01.97 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 | [bb4 01-13 06:15:01.98 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 +peer0.org1.example.com | [f98 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [bb5 01-13 06:15:01.98 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 | [bb6 01-13 06:15:01.98 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 | [bb7 01-13 06:15:01.98 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.org1.example.com | [f99 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [f9a 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a,syscc=true,proposal=0xc427b4cf00,canname=escc:1.1.0 +orderer.example.com | [bb8 01-13 06:15:01.98 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 | [bb9 01-13 06:15:01.98 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 +peer0.org1.example.com | [f9b 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [bba 01-13 06:15:01.98 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 | [bbb 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [f9c 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [bbc 01-13 06:15:01.98 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 | [bbd 01-13 06:15:01.98 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 +peer0.org1.example.com | [f9d 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [bbe 01-13 06:15:01.98 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 == +peer0.org1.example.com | [f9e 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [bbf 01-13 06:15:01.98 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 +peer0.org1.example.com | [f9f 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [bc0 01-13 06:15:01.98 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 | [bc1 01-13 06:15:01.98 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [fa0 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [bc2 01-13 06:15:01.98 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 0xc420a1f160 gate 1515824101986657490 evaluation starts +orderer.example.com | [bc3 01-13 06:15:01.98 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 0xc420a1f160 signed by 0 principal evaluation starts (used [false false false]) +peer0.org1.example.com | [fa1 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [bc4 01-13 06:15:01.98 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 0xc420a1f160 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [fa2 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Move state message TRANSACTION +peer0.org1.example.com | [fa3 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [bc5 01-13 06:15:01.98 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 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [bc6 01-13 06:15:01.98 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 0xc420a1f160 principal matched by identity 0 +peer0.org1.example.com | [fa4 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [bc7 01-13 06:15:01.98 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 -> DEBU Verify: digest = 00000000 91 c0 00 94 5e 16 db 4a a5 e0 3e d4 d4 13 e6 25 |....^..J..>....%| +peer0.org1.example.com | [fa5 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]sending state message TRANSACTION +orderer.example.com | 00000010 20 03 56 af 0e f1 3d 52 d7 1a 53 c7 79 d2 d0 5c | .V...=R..S.y..\| +peer0.org1.example.com | [fa6 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Received message TRANSACTION from shim +orderer.example.com | [bc8 01-13 06:15:01.98 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 -> DEBU Verify: sig = 00000000 30 45 02 21 00 d7 10 ee 4c be 23 ff f0 fe 2d 34 |0E.!....L.#...-4| +orderer.example.com | 00000010 03 29 2a 36 dc b1 fe 01 e2 9e 82 26 f9 d2 5c 8c |.)*6.......&..\.| +peer0.org1.example.com | [fa7 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 00000020 3b de c2 ad 7b 02 20 29 43 ae 4a d4 b6 99 95 c4 |;...{. )C.J.....| +orderer.example.com | 00000030 75 a8 00 9a 90 12 ac 16 88 3c 78 70 df 16 63 b9 |u........ DEBU [b07053bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 00000040 56 97 be d2 a3 5f 39 |V...._9| +peer0.org1.example.com | [fa9 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [faa 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [bc9 01-13 06:15:01.98 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 0xc420a1f160 principal evaluation succeeds for identity 0 +orderer.example.com | [bca 01-13 06:15:01.98 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 0xc420a1f160 gate 1515824101986657490 evaluation succeeds +peer0.org1.example.com | [fab 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [fac 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Move state message COMPLETED +orderer.example.com | [bcb 01-13 06:15:01.98 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 | [bcc 01-13 06:15:01.98 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 +peer0.org1.example.com | [fad 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [bcd 01-13 06:15:01.99 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 == +peer0.org1.example.com | [fae 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]send state message COMPLETED +orderer.example.com | [bce 01-13 06:15:01.99 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [faf 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Received message COMPLETED from shim +peer0.org1.example.com | [fb0 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [fb1 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [fb2 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a, channelID:businesschannel +orderer.example.com | [bcf 01-13 06:15:01.99 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 0xc420a1f4c0 gate 1515824101999743690 evaluation starts +peer0.org1.example.com | [fb3 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [bd0 01-13 06:15:01.99 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 0xc420a1f4c0 signed by 0 principal evaluation starts (used [false false false]) +orderer.example.com | [bd1 01-13 06:15:02.00 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 0xc420a1f4c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [bd2 01-13 06:15:02.00 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 0xc420a1f4c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [bd3 01-13 06:15:02.00 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 0xc420a1f4c0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [fb4 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [bd4 01-13 06:15:02.00 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 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [bd5 01-13 06:15:02.00 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 0xc420a1f4c0 principal matched by identity 1 +orderer.example.com | [bd6 01-13 06:15:02.00 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 -> DEBU Verify: digest = 00000000 7e 5b aa 11 b3 49 d1 08 df cf ec ca ef c3 be 16 |~[...I..........| +orderer.example.com | 00000010 70 7a 50 54 81 5b 05 1a 80 fa 74 65 c1 bf d9 56 |pzPT.[....te...V| +orderer.example.com | [bd7 01-13 06:15:02.00 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 -> DEBU Verify: sig = 00000000 30 44 02 20 1f 30 e1 37 03 45 88 da e2 a3 1a 9c |0D. .0.7.E......| +orderer.example.com | 00000010 4c bb 78 81 90 e3 ed cf 9e 73 f3 72 7c 1c 82 ef |L.x......s.r|...| +orderer.example.com | 00000020 a5 13 61 d5 02 20 4c f6 07 44 2a 53 df 5d 68 94 |..a.. L..D*S.]h.| +peer0.org1.example.com | [fb5 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 00000030 c2 f6 16 b8 d8 8e 18 4c 02 c8 53 55 06 2c e8 58 |.......L..SU.,.X| +orderer.example.com | 00000040 3f 1c c5 ff ef 4f |?....O| +peer0.org1.example.com | [fb6 01-13 06:14:46.98 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 [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +orderer.example.com | [bd8 01-13 06:15:02.00 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 0xc420a1f4c0 principal evaluation succeeds for identity 1 +peer0.org1.example.com | [fb7 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53734) +orderer.example.com | [bd9 01-13 06:15:02.00 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 0xc420a1f4c0 gate 1515824101999743690 evaluation succeeds +peer0.org1.example.com | [fb8 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53736 +orderer.example.com | [bda 01-13 06:15:02.00 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 | [bdb 01-13 06:15:02.00 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 +peer0.org1.example.com | [fb9 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427c59500 +peer0.org1.example.com | [fba 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [bdc 01-13 06:15:02.00 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 +peer0.org1.example.com | [fbb 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [fbc 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [bdd 01-13 06:15:02.00 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 +peer0.org1.example.com | [fbd 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [fbe 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [bde 01-13 06:15:02.00 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 +peer0.org1.example.com | [fbf 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc427b73ef0, header 0xc427c59860 +orderer.example.com | [bdf 01-13 06:15:02.00 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 +peer0.org1.example.com | [fc0 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [be0 01-13 06:15:02.00 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 | [be1 01-13 06:15:02.00 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 +peer0.org1.example.com | [fc1 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb +orderer.example.com | [be2 01-13 06:15:02.00 UTC] [github.com/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 | [fc2 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +orderer.example.com | [be3 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [fc3 01-13 06:14:48.02 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 | [fc4 01-13 06:14:48.02 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 = [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +orderer.example.com | [be4 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [fc5 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel +orderer.example.com | [be5 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [fc6 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [fc7 01-13 06:14:48.02 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.1.0,txid=2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb,syscc=true,proposal=0xc427b73ef0,canname=qscc:1.1.0 +orderer.example.com | [be6 01-13 06:15:02.00 UTC] [github.com/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 | [be7 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [fc8 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [be8 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [fc9 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [fca 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +orderer.example.com | [be9 01-13 06:15:02.00 UTC] [github.com/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 | [bea 01-13 06:15:02.00 UTC] [github.com/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 | [fcb 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [fcc 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [beb 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [fcd 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [fce 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [fcf 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Move state message TRANSACTION +orderer.example.com | [bec 01-13 06:15:02.00 UTC] [github.com/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 | [bed 01-13 06:15:02.00 UTC] [github.com/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 | [bee 01-13 06:15:02.00 UTC] [github.com/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 | [fd0 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [fd1 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [fd2 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]sending state message TRANSACTION +peer0.org1.example.com | [fd3 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Received message TRANSACTION from shim +orderer.example.com | [bef 01-13 06:15:02.00 UTC] [github.com/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 | [bf0 01-13 06:15:02.00 UTC] [github.com/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 | [fd4 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [bf1 01-13 06:15:02.00 UTC] [github.com/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 | [bf2 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [fd5 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2f9fccd2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [fd6 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [fd7 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [fd8 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Move state message COMPLETED +orderer.example.com | [bf3 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [fd9 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [fda 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]send state message COMPLETED +peer0.org1.example.com | [fdb 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Received message COMPLETED from shim +peer0.org1.example.com | [fdc 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [bf4 01-13 06:15:02.00 UTC] [github.com/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 +peer0.org1.example.com | [fdd 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [fde 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb, channelID:businesschannel +peer0.org1.example.com | [fdf 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [fe0 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [bf5 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [fe1 01-13 06:14:48.03 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 | [fe2 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +orderer.example.com | [bf6 01-13 06:15:02.00 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" +peer0.org1.example.com | [fe3 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [fe4 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [fe5 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [bf7 01-13 06:15:02.00 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 | [bf8 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [fe6 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [fe7 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb,syscc=true,proposal=0xc427b73ef0,canname=escc:1.1.0 +peer0.org1.example.com | [fe8 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [fe9 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [fea 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [bf9 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [feb 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [bfa 01-13 06:15:02.00 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 | [bfb 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [fec 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [fed 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [fee 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [bfc 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [fef 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Move state message TRANSACTION +peer0.org1.example.com | [ff0 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [bfd 01-13 06:15:02.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [ff1 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [ff2 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]sending state message TRANSACTION +orderer.example.com | [bfe 01-13 06:15:02.00 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 | [bff 01-13 06:15:02.01 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 +peer0.org1.example.com | [ff3 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Received message TRANSACTION from shim +orderer.example.com | [c00 01-13 06:15:02.01 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 | [ff4 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [ff5 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2f9fccd2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [ff6 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [c01 01-13 06:15:02.01 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 | [c02 01-13 06:15:02.01 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 | [c03 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [ff7 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [ff8 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [ff9 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Move state message COMPLETED +orderer.example.com | [c04 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [ffa 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [ffb 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]send state message COMPLETED +orderer.example.com | [c05 01-13 06:15:02.01 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 | [c06 01-13 06:15:02.01 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 | [c07 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [ffc 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Received message COMPLETED from shim +orderer.example.com | [c08 01-13 06:15:02.01 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 | [c09 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [ffd 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [ffe 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb]HandleMessage- COMPLETED. Notify +orderer.example.com | [c0a 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [fff 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb, channelID:businesschannel +orderer.example.com | [c0b 01-13 06:15:02.01 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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [1000 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [1001 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [1002 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +peer0.org1.example.com | [1003 01-13 06:14:48.03 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 [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [1004 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53736) +peer0.org1.example.com | [1005 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53738 orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [1006 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427e97200 orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +peer0.org1.example.com | [1007 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [1008 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +peer0.org1.example.com | [1009 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +peer0.org1.example.com | [100a 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +peer0.org1.example.com | [100b 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [100c 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc427e49cc0, header 0xc427e97560 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c73 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [100d 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [c0c 01-13 06:15:02.01 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----- +peer0.org1.example.com | [100e 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [100f 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [1010 01-13 06:14:49.07 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 orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer0.org1.example.com | [1011 01-13 06:14:49.07 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 = [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [1012 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [1013 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1014 01-13 06:14:49.07 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.1.0,txid=e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60,syscc=true,proposal=0xc427e49cc0,canname=qscc:1.1.0 orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer0.org1.example.com | [1015 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1016 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [1017 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer0.org1.example.com | [1018 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org1.example.com | [1019 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org1.example.com | [101a 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [101b 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]sendExecuteMsg trigger event TRANSACTION orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c74 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c75 01-05 06:37:27.70 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 | [c76 01-05 06:37:27.70 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 | [c77 01-05 06:37:27.70 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 | [c78 01-05 06:37:27.70 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 | [c79 01-05 06:37:27.70 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 | [c7a 01-05 06:37:27.70 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 | [c7b 01-05 06:37:27.70 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 | [c7c 01-05 06:37:27.70 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 | [c7d 01-05 06:37:27.70 UTC] [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 | [c7e 01-05 06:37:27.70 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 | [c7f 01-05 06:37:27.70 UTC] [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 | [c80 01-05 06:37:27.70 UTC] [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 | [c0d 01-13 06:15:02.01 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 | [c0e 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [101c 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Move state message TRANSACTION +orderer.example.com | [c0f 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [101d 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [101e 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [c10 01-13 06:15:02.01 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 | [c11 01-13 06:15:02.01 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 | [c12 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [101f 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]sending state message TRANSACTION +peer0.org1.example.com | [1020 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Received message TRANSACTION from shim +orderer.example.com | [c13 01-13 06:15:02.01 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 | [c14 01-13 06:15:02.01 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 | [c15 01-13 06:15:02.01 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 | [c16 01-13 06:15:02.01 UTC] [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 | [c17 01-13 06:15:02.01 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 | [c18 01-13 06:15:02.01 UTC] [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 | [c19 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1021 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [1022 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1b0ebc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +peer0.org1.example.com | [1023 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [1024 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Transaction completed. Sending COMPLETED orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org1.example.com | [1025 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Move state message COMPLETED orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer0.org1.example.com | [1026 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P orderer.example.com | vA2BLfriqQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c81 01-05 06:37:27.70 UTC] [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 | [c1a 01-13 06:15:02.01 UTC] [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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [1027 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]send state message COMPLETED orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +peer0.org1.example.com | [1028 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Received message COMPLETED from shim orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +peer0.org1.example.com | [1029 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +peer0.org1.example.com | [102a 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60]HandleMessage- COMPLETED. Notify orderer.example.com | R0L5Jr8878bLU6IcEA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c82 01-05 06:37:27.70 UTC] [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 | [c83 01-05 06:37:27.70 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 | [c84 01-05 06:37:27.70 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 | [c85 01-05 06:37:27.70 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 | [c86 01-05 06:37:27.70 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 | [c87 01-05 06:37:27.70 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 | [c88 01-05 06:37:27.70 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 | [c89 01-05 06:37:27.70 UTC] [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 | [c8a 01-05 06:37:27.70 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 | [c8b 01-05 06:37:27.70 UTC] [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 | [c8c 01-05 06:37:27.70 UTC] [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 | [c1b 01-13 06:15:02.01 UTC] [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 | [c1c 01-13 06:15:02.01 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 | [c1d 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [102b 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60, channelID:businesschannel +orderer.example.com | [c1e 01-13 06:15:02.01 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 | [c1f 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [102c 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [c20 01-13 06:15:02.01 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 | [c21 01-13 06:15:02.01 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 +peer0.org1.example.com | [102d 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [102e 01-13 06:14:49.08 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 +orderer.example.com | [c22 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [102f 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] +peer0.org1.example.com | [1030 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1031 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [c23 01-13 06:15:02.01 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 | [c24 01-13 06:15:02.01 UTC] [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 | [c25 01-13 06:15:02.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1032 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc orderer.example.com | MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [1033 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1034 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60,syscc=true,proposal=0xc427e49cc0,canname=escc:1.1.0 +peer0.org1.example.com | [1035 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2NDNaFw0yNzEyMjcwNjI2NDNa +peer0.org1.example.com | [1036 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [1037 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [1038 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | ECHNCjOlwIXN9/sd33I4VWt2lY/TG5HW3JumY9nD1n9xmQzZfSDqia12BJ44qumL +peer0.org1.example.com | [1039 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [103a 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | vyq1K0EuYHw3ztuOvAamP6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg/qnu4M+Dom5jJ6IJKsy7 +peer0.org1.example.com | [103b 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]sendExecuteMsg trigger event TRANSACTION orderer.example.com | OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv +peer0.org1.example.com | [103c 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Move state message TRANSACTION +peer0.org1.example.com | [103d 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [103e 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition orderer.example.com | cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD +peer0.org1.example.com | [103f 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]sending state message TRANSACTION orderer.example.com | nJqgrP2wQg== +peer0.org1.example.com | [1040 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Received message TRANSACTION from shim +peer0.org1.example.com | [1041 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c8d 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [c26 01-13 06:15:02.02 UTC] [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 | MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [1042 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1b0ebc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [1043 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args orderer.example.com | Lm9yZzMuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjQ0WhcNMjcxMjI3MDYyNjQ0 +peer0.org1.example.com | [1044 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [1045 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Transaction completed. Sending COMPLETED orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMy5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [1046 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Move state message COMPLETED orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKCjrPfn6toP3a96+ty3D4q4INzURBZ0 +peer0.org1.example.com | [1047 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1048 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]send state message COMPLETED orderer.example.com | Uo/s2uUgA+YEraC+q0RbGGFgBsOtGiKvgHMqd8M7V06pjiUb7Q0YBISjTTBLMA4G +peer0.org1.example.com | [1049 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Received message COMPLETED from shim orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP6p7uDPg6Ju +peer0.org1.example.com | [104a 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 +peer0.org1.example.com | [104b 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60]HandleMessage- COMPLETED. Notify orderer.example.com | cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r +peer0.org1.example.com | [104c 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60, channelID:businesschannel +peer0.org1.example.com | [104d 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit orderer.example.com | hVFCfUaM7mJS8t0Pz4U= +peer0.org1.example.com | [104e 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c8e 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity -orderer.example.com | [c8f 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [c90 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [c91 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [c92 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c93 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [c94 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [c95 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [c96 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [c97 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [c98 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [104f 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [1050 01-13 06:14:49.09 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 [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] +peer0.org1.example.com | [1051 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53738) +orderer.example.com | [c27 01-13 06:15:02.02 UTC] [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 | [c28 01-13 06:15:02.02 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 | [c29 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [1052 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53740 +orderer.example.com | [c2a 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [1053 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428121620 +orderer.example.com | [c2b 01-13 06:15:02.02 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 | [c2c 01-13 06:15:02.02 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 | [c2d 01-13 06:15:02.02 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 | [c2e 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [1054 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1055 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1056 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [c2f 01-13 06:15:02.02 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 | [c30 01-13 06:15:02.02 UTC] [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 | [c31 01-13 06:15:02.02 UTC] [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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [1057 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [1058 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1059 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428134c80, header 0xc428121980 orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [105a 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +peer0.org1.example.com | [105b 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 orderer.example.com | oQmWQsjpiQ== +peer0.org1.example.com | [105c 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c99 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [c32 01-13 06:15:02.02 UTC] [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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [105d 01-13 06:14:50.17 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 | [105e 01-13 06:14:50.17 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 = [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [105f 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [1060 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel version: 1.1.0 orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org1.example.com | [1061 01-13 06:14:50.17 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.1.0,txid=93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20,syscc=true,proposal=0xc428134c80,canname=qscc:1.1.0 orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer0.org1.example.com | [1062 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org1.example.com | [1063 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer0.org1.example.com | [1064 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 orderer.example.com | jTZ94VyvHhJOn4fshoU= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c9a 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [c9b 01-05 06:37:27.71 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 | [c9c 01-05 06:37:27.71 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 | [c9d 01-05 06:37:27.71 UTC] [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 | [c9e 01-05 06:37:27.71 UTC] [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 | [c9f 01-05 06:37:27.71 UTC] [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 | [ca0 01-05 06:37:27.71 UTC] [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 | [ca1 01-05 06:37:27.71 UTC] [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 | [ca2 01-05 06:37:27.71 UTC] [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 | [ca3 01-05 06:37:27.71 UTC] [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 | [ca4 01-05 06:37:27.71 UTC] [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 | [ca5 01-05 06:37:27.71 UTC] [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 | [ca6 01-05 06:37:27.71 UTC] [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 | [ca7 01-05 06:37:27.71 UTC] [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 | [ca8 01-05 06:37:27.71 UTC] [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 | [ca9 01-05 06:37:27.71 UTC] [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 | [caa 01-05 06:37:27.71 UTC] [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 | [cab 01-05 06:37:27.71 UTC] [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 | [cac 01-05 06:37:27.71 UTC] [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 | [cad 01-05 06:37:27.71 UTC] [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 | [cae 01-05 06:37:27.71 UTC] [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 | [caf 01-05 06:37:27.71 UTC] [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 | [cb0 01-05 06:37:27.71 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 | [cb1 01-05 06:37:27.71 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 | [cb2 01-05 06:37:27.71 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 | [cb3 01-05 06:37:27.71 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 | [cb4 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cb5 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cb6 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cb7 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [cb8 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [cb9 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [cba 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cbb 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cbc 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cbd 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cbe 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 | [cbf 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [cc0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [cc1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [cc2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [cc3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [cc4 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [cc5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [cc6 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [cc7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [cc8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [cc9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [cca 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [ccb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [ccc 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [ccd 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [cce 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [ccf 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [cd0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [cd1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [cd2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [cd3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [cd4 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [cd5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [cd6 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [cd7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [cd8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [cd9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [cda 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [cdb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [cdc 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [cdd 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [cde 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [cdf 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [ce0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [ce1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [ce2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [ce3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [ce4 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [ce5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [ce6 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [ce7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [ce8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -orderer.example.com | [ce9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [cea 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [ceb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [cec 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [ced 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [cee 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [cef 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [cf0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [cf1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [cf2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [cf3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [cf4 01-05 06:37:27.72 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 | [cf5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [cf6 01-05 06:37:27.72 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 | [cf7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608A7BABCD20522...A2A55830865EA3E249E091D93ECFDD05 -orderer.example.com | [cf8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: A07642CC0BA11BEF362B0530369DB06201EA3C70AE33A57784858D2FD874F667 -orderer.example.com | [cf9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [cfa 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [cfb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [cfc 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [cfd 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [cfe 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [cff 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1065 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1066 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [c33 01-13 06:15:02.02 UTC] [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.org1.example.com | [1067 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1068 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [c34 01-13 06:15:02.02 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 | [c35 01-13 06:15:02.02 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.org1.example.com | [1069 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Move state message TRANSACTION +orderer.example.com | [c36 01-13 06:15:02.02 UTC] [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 | [c37 01-13 06:15:02.02 UTC] [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.org1.example.com | [106a 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [c38 01-13 06:15:02.02 UTC] [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 | [c39 01-13 06:15:02.02 UTC] [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 | [c3a 01-13 06:15:02.02 UTC] [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 | [c3b 01-13 06:15:02.02 UTC] [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 | [c3c 01-13 06:15:02.02 UTC] [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 | [106b 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [c3d 01-13 06:15:02.02 UTC] [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 | [c3e 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [106c 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]sending state message TRANSACTION +orderer.example.com | [c3f 01-13 06:15:02.02 UTC] [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 | [c40 01-13 06:15:02.02 UTC] [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 +peer0.org1.example.com | [106d 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Received message TRANSACTION from shim +orderer.example.com | [c41 01-13 06:15:02.02 UTC] [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 | [c42 01-13 06:15:02.02 UTC] [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 | [c43 01-13 06:15:02.02 UTC] [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 | [c44 01-13 06:15:02.02 UTC] [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 | [c45 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org1.example.com | [106e 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [c46 01-13 06:15:02.02 UTC] [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 | [c47 01-13 06:15:02.02 UTC] [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 | [c48 01-13 06:15:02.02 UTC] [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 | [c49 01-13 06:15:02.02 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 | [106f 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [93872715]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [c4a 01-13 06:15:02.02 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 | [c4b 01-13 06:15:02.02 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 | [c4c 01-13 06:15:02.02 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 | [1070 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1071 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Transaction completed. Sending COMPLETED +orderer.example.com | [c4d 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/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 | [c4e 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/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 | [c4f 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/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 | [c50 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c51 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1072 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Move state message COMPLETED +orderer.example.com | [c52 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1073 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [c53 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [1074 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]send state message COMPLETED +peer0.org1.example.com | [1075 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Received message COMPLETED from shim +peer0.org1.example.com | [1076 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1077 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1078 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20, channelID:businesschannel +orderer.example.com | [c54 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c55 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c56 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +peer0.org1.example.com | [1079 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [107a 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [107b 01-13 06:14:50.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 +peer0.org1.example.com | [107c 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] +peer0.org1.example.com | [107d 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [107e 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | [c57 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c58 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c59 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c5a 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [107f 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1080 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1081 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20,syscc=true,proposal=0xc428134c80,canname=escc:1.1.0 +peer0.org1.example.com | [1082 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [c5b 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c5c 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c5d 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c5e 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c5f 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c60 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [1083 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1084 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1085 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1086 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1087 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1088 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1089 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Move state message TRANSACTION +peer0.org1.example.com | [108a 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [108b 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [108c 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]sending state message TRANSACTION +orderer.example.com | [c61 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c62 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c63 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c64 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c65 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c66 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +peer0.org1.example.com | [108d 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Received message TRANSACTION from shim +orderer.example.com | [c67 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c68 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c69 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [108e 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [c6a 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c6b 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [108f 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [93872715]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1090 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1091 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1092 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Transaction completed. Sending COMPLETED +orderer.example.com | [c6c 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org1.example.com | [1093 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Move state message COMPLETED +peer0.org1.example.com | [1094 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [c6d 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c6e 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 | [c6f 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c70 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c71 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c72 01-13 06:15:02.03 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 +peer0.org1.example.com | [1095 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]send state message COMPLETED +orderer.example.com | [c73 01-13 06:15:02.03 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 | [c74 01-13 06:15:02.03 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 | [c75 01-13 06:15:02.03 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 | [c76 01-13 06:15:02.03 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 | [c77 01-13 06:15:02.03 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 +peer0.org1.example.com | [1096 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Received message COMPLETED from shim +peer0.org1.example.com | [1097 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [c78 01-13 06:15:02.03 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 | [c79 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [1098 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20]HandleMessage- COMPLETED. Notify +orderer.example.com | [c7a 01-13 06:15:02.03 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 | [c7b 01-13 06:15:02.03 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 | [c7c 01-13 06:15:02.03 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 | [c7d 01-13 06:15:02.03 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 | [1099 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20, channelID:businesschannel +orderer.example.com | [c7e 01-13 06:15:02.03 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 | [c7f 01-13 06:15:02.03 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 | [109a 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [c80 01-13 06:15:02.03 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.org1.example.com | [109b 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [c81 01-13 06:15:02.03 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.org1.example.com | [109c 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [c82 01-13 06:15:02.03 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 | [c83 01-13 06:15:02.03 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 | [c84 01-13 06:15:02.03 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.org1.example.com | [109d 01-13 06:14:50.23 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 [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] +orderer.example.com | [c85 01-13 06:15:02.03 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 | [c86 01-13 06:15:02.03 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 | [c87 01-13 06:15:02.03 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 | [c88 01-13 06:15:02.04 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 | [c89 01-13 06:15:02.04 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 | [c8a 01-13 06:15:02.04 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 | [109e 01-13 06:14:50.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53740) +peer0.org1.example.com | [109f 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53742 +peer0.org1.example.com | [10a0 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4283f6030 +orderer.example.com | [c8b 01-13 06:15:02.04 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 | [10a1 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [10a2 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [c8c 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [c8d 01-13 06:15:02.04 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 | [c8e 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [c8f 01-13 06:15:02.04 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 | [10a3 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [c90 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E6C7E6D20522...2D8CA0BAD7B60C28DD469670A7778662 +peer0.org1.example.com | [10a4 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [c91 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 08B7E45FB84D68A638C6AA788C26EA57FD7FF14A1DC434FC30D4838972E4453B +orderer.example.com | [c92 01-13 06:15:02.04 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 | [c93 01-13 06:15:02.04 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 | [c94 01-13 06:15:02.04 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 | [c95 01-13 06:15:02.04 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 | [c96 01-13 06:15:02.04 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 | [c97 01-13 06:15:02.04 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 | [c98 01-13 06:15:02.04 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 | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -15478,176 +19263,338 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d00 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134247728748100 evaluation starts -orderer.example.com | [d01 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d02 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d03 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [d04 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 principal evaluation fails -orderer.example.com | [d05 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134247728748100 evaluation fails -orderer.example.com | [d06 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [d07 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [d08 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [d09 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138768 gate 1515134247729355600 evaluation starts -orderer.example.com | [d0a 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d0b 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d0c 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [d0d 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 principal evaluation fails -orderer.example.com | [d0e 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138768 gate 1515134247729355600 evaluation fails -orderer.example.com | [d0f 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [d10 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [d11 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Writers Org1MSP.Writers ] -orderer.example.com | [d12 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers -orderer.example.com | [d13 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [d14 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [d15 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d16 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [d17 01-05 06:37:27.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 0xc420138770 gate 1515134247730037300 evaluation starts -orderer.example.com | [d18 01-05 06:37:27.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 0xc420138770 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d19 01-05 06:37:27.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 0xc420138770 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d1a 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [d1b 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [d1c 01-05 06:37:27.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 0xc420138770 principal matched by identity 0 -orderer.example.com | [d1d 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a0 76 42 cc 0b a1 1b ef 36 2b 05 30 36 9d b0 62 |.vB.....6+.06..b| -orderer.example.com | 00000010 01 ea 3c 70 ae 33 a5 77 84 85 8d 2f d8 74 f6 67 |.. DEBU Verify: sig = 00000000 30 45 02 21 00 bc 32 29 26 8d 6d f5 9b 8d e2 fb |0E.!..2)&.m.....| -orderer.example.com | 00000010 47 52 ba 1e bc 7c ce dc 9a f3 7a bf ab ec da d6 |GR...|....z.....| -orderer.example.com | 00000020 78 28 f4 e0 99 02 20 28 e7 a7 dc 82 85 9d 39 19 |x(.... (......9.| -orderer.example.com | 00000030 32 35 9e be 33 3e 9e 49 99 6f c0 64 b4 a4 cc ab |25..3>.I.o.d....| -orderer.example.com | 00000040 f5 c3 d8 b3 c0 34 0c |.....4.| -orderer.example.com | [d1f 01-05 06:37:27.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 0xc420138770 principal evaluation succeeds for identity 0 -orderer.example.com | [d20 01-05 06:37:27.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 0xc420138770 gate 1515134247730037300 evaluation succeeds -orderer.example.com | [d21 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [d22 01-05 06:37:27.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 | [d23 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [d24 01-05 06:37:27.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 | [d25 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [d26 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [d27 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:44238 -orderer.example.com | [d28 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44238: rpc error: code = Canceled desc = context canceled -orderer.example.com | [d29 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [d2a 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44236: rpc error: code = Canceled desc = context canceled -orderer.example.com | [d2b 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [d2c 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [d2d 01-05 06:37:27.74 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 | [d2e 01-05 06:37:27.74 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 | [d2f 01-05 06:37:27.74 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 | [d30 01-05 06:37:27.74 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 | [d31 01-05 06:37:27.74 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 | [d32 01-05 06:37:27.74 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 | [d33 01-05 06:37:27.74 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 | [d34 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [d35 01-05 06:37:27.74 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 | [d36 01-05 06:37:27.74 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 | [d37 01-05 06:37:27.74 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 | [d38 01-05 06:37:27.74 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 | [d39 01-05 06:37:27.74 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 | [d3a 01-05 06:37:27.74 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 | [d3b 01-05 06:37:27.74 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 | [d3c 01-05 06:37:27.74 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 | [d3d 01-05 06:37:27.74 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 | [d3e 01-05 06:37:27.74 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 | [d3f 01-05 06:37:27.74 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 | [d40 01-05 06:37:27.74 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 | [d41 01-05 06:37:27.74 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 | [d42 01-05 06:37:27.74 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 | [d43 01-05 06:37:27.74 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 | [d44 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -orderer.example.com | [d45 01-05 06:37:27.74 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 | [d46 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [d47 01-05 06:37:27.74 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 | [d48 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -orderer.example.com | [d49 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [d4a 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [d4b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [d4c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [d4d 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [d4e 01-05 06:37:27.74 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 | [d4f 01-05 06:37:27.74 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 | [d50 01-05 06:37:27.74 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 | [d51 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -orderer.example.com | [d52 01-05 06:37:27.74 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 | [d53 01-05 06:37:27.74 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 | [d54 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [d55 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6adc0 gate 1515134247746349200 evaluation starts -orderer.example.com | [d56 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [d57 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d58 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [d59 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d5a 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [d5b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 principal matched by identity 1 -orderer.example.com | [d5c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d7 c2 86 fa 0e 7b a8 dd 10 a9 39 f5 1e 7a 0b 0f |.....{....9..z..| -orderer.example.com | 00000010 d3 87 dc 97 61 90 14 fc 2d 06 73 05 28 09 08 7f |....a...-.s.(...| -orderer.example.com | [d5d 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5b 7f 38 c6 85 f0 bc 22 6c 45 41 69 |0D. [.8...."lEAi| -orderer.example.com | 00000010 46 7c 58 8c 50 ad 79 a5 b3 7b 46 c0 63 02 e7 5b |F|X.P.y..{F.c..[| -orderer.example.com | 00000020 cd 95 de 36 02 20 17 71 bf 15 0f b5 26 63 3d e2 |...6. .q....&c=.| -orderer.example.com | 00000030 79 8f 64 1d 6c de 51 c5 fc 01 6e 18 28 21 94 f1 |y.d.l.Q...n.(!..| -orderer.example.com | 00000040 be 99 86 93 d2 fb |......| -orderer.example.com | [d5e 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 principal evaluation succeeds for identity 1 -orderer.example.com | [d5f 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6adc0 gate 1515134247746349200 evaluation succeeds -orderer.example.com | [d60 01-05 06:37:27.74 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 | [d61 01-05 06:37:27.74 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 | [d62 01-05 06:37:27.74 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 | [d63 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [d64 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6b220 gate 1515134247749109600 evaluation starts -orderer.example.com | [d65 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [d66 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d67 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [d68 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 principal matched by identity 0 -orderer.example.com | [d69 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 47 c0 67 c5 95 f9 6c 2b a5 e5 8c cd b1 5c 01 fd |G.g...l+.....\..| -orderer.example.com | 00000010 f4 9a 17 a6 9f a6 41 16 b4 b1 1c ef d6 4c 1e b8 |......A......L..| -orderer.example.com | [d6a 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6c a4 ef 03 10 e6 ad 4c 0f 55 a7 0a |0D. l......L.U..| -orderer.example.com | 00000010 ac 4f 05 cb 34 b4 52 94 06 c5 a6 73 97 35 f1 ed |.O..4.R....s.5..| -orderer.example.com | 00000020 3f 15 c1 f0 02 20 00 bc 39 94 46 0d c4 08 bf f4 |?.... ..9.F.....| -orderer.example.com | 00000030 ba a8 ee 0a f6 78 33 0e 95 ea 62 17 07 5b 2e 69 |.....x3...b..[.i| -orderer.example.com | 00000040 71 a6 85 88 fb 6b |q....k| -orderer.example.com | [d6b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 principal evaluation succeeds for identity 0 -orderer.example.com | [d6c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6b220 gate 1515134247749109600 evaluation succeeds -orderer.example.com | [d6d 01-05 06:37:27.75 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 | [d6e 01-05 06:37:27.75 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 | [d6f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -orderer.example.com | [d70 01-05 06:37:27.75 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 | [d71 01-05 06:37:27.75 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 | [d72 01-05 06:37:27.75 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 | [d73 01-05 06:37:27.75 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 | [d74 01-05 06:37:27.75 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 | [d75 01-05 06:37:27.75 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 | [d76 01-05 06:37:27.75 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 | [d77 01-05 06:37:27.75 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 | [d78 01-05 06:37:27.75 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 | [d79 01-05 06:37:27.75 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 | [d7a 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [d7b 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [d7c 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [d7d 01-05 06:37:27.75 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 | [d7e 01-05 06:37:27.75 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 | [d7f 01-05 06:37:27.75 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 | [d80 01-05 06:37:27.75 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 | [d81 01-05 06:37:27.75 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 | [d82 01-05 06:37:27.75 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 | [d83 01-05 06:37:27.75 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 | [d84 01-05 06:37:27.75 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 | [d85 01-05 06:37:27.75 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 | [d86 01-05 06:37:27.75 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 | [d87 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [d88 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [d89 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [d8a 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [d8b 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [d8c 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [d8d 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [d8e 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [d8f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [d90 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [d91 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [d92 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [d93 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [d94 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d95 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d96 01-05 06:37:27.75 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 | [d97 01-05 06:37:27.75 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 | [d98 01-05 06:37:27.75 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 | [d99 01-05 06:37:27.75 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 | [d9a 01-05 06:37:27.75 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 | [c99 01-13 06:15:02.04 UTC] [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 0xc42011d058 gate 1515824102043941290 evaluation starts +peer0.org1.example.com | [10a5 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [c9a 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c9b 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [c9c 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [10a6 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4282672c0, header 0xc4283f6390 +orderer.example.com | [c9d 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [c9e 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 principal matched by identity 0 +orderer.example.com | [c9f 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 08 b7 e4 5f b8 4d 68 a6 38 c6 aa 78 8c 26 ea 57 |..._.Mh.8..x.&.W| +orderer.example.com | 00000010 fd 7f f1 4a 1d c4 34 fc 30 d4 83 89 72 e4 45 3b |...J..4.0...r.E;| +orderer.example.com | [ca0 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 20 e6 75 23 24 ad e2 e2 38 8f 43 9c |0D. .u#$...8.C.| +orderer.example.com | 00000010 d0 de 77 ad 90 b6 70 d4 83 dc cb de 89 90 86 18 |..w...p.........| +orderer.example.com | 00000020 0c 00 d3 5b 02 20 58 ca 93 cd 9d e9 81 ef e7 ac |...[. X.........| +orderer.example.com | 00000030 9e df 45 6f c8 a2 0a 5b 19 cf 4b 9e 68 a8 42 84 |..Eo...[..K.h.B.| +orderer.example.com | 00000040 04 37 c7 88 d8 41 |.7...A| +orderer.example.com | [ca1 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 principal evaluation succeeds for identity 0 +orderer.example.com | [ca2 01-13 06:15:02.04 UTC] [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 0xc42011d058 gate 1515824102043941290 evaluation succeeds +orderer.example.com | [ca3 01-13 06:15:02.04 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 | [10a7 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [ca4 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [10a8 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c +orderer.example.com | [ca5 01-13 06:15:02.04 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 | [ca6 01-13 06:15:02.04 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 | [ca7 01-13 06:15:02.04 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 | [ca8 01-13 06:15:02.04 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 | [ca9 01-13 06:15:02.04 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.8:50310 +orderer.example.com | [caa 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [cab 01-13 06:15:02.04 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 | [cac 01-13 06:15:02.04 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 | [cad 01-13 06:15:02.04 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 | [cae 01-13 06:15:02.04 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 | [caf 01-13 06:15:02.04 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 | [cb0 01-13 06:15:02.04 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 | [cb1 01-13 06:15:02.04 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 | [cb2 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [cb3 01-13 06:15:02.04 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 | [cb4 01-13 06:15:02.04 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 | [cb5 01-13 06:15:02.04 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 | [cb6 01-13 06:15:02.04 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 | [cb7 01-13 06:15:02.04 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 | [cb8 01-13 06:15:02.04 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 | [cb9 01-13 06:15:02.04 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 | [cba 01-13 06:15:02.04 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 | [cbb 01-13 06:15:02.04 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 | [cbc 01-13 06:15:02.04 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 | [cbd 01-13 06:15:02.04 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 | [cbe 01-13 06:15:02.04 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 | [cbf 01-13 06:15:02.04 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 | [cc0 01-13 06:15:02.04 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 | [cc1 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +orderer.example.com | [cc2 01-13 06:15:02.04 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 | [cc3 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +orderer.example.com | [cc4 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [cc5 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [cc6 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [cc7 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [10a9 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +orderer.example.com | [cc8 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [cc9 01-13 06:15:02.05 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 | [cca 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org1.example.com | [10aa 01-13 06:14:51.27 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 +orderer.example.com | [ccb 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org1.example.com | [10ab 01-13 06:14:51.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 = [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +peer0.org1.example.com | [10ac 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel +peer0.org1.example.com | [10ad 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [10ae 01-13 06:14:51.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=qscc,version=1.1.0,txid=13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c,syscc=true,proposal=0xc4282672c0,canname=qscc:1.1.0 +orderer.example.com | [ccc 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == +peer0.org1.example.com | [10af 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [10b0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [ccd 01-13 06:15:02.05 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 | [cce 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer0.org1.example.com | [10b1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [10b2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [ccf 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [10b3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [cd0 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976c00 gate 1515824102050518890 evaluation starts +peer0.org1.example.com | [10b4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [cd1 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976c00 signed by 0 principal evaluation starts (used [false false false]) +peer0.org1.example.com | [10b5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [cd2 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976c00 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [cd3 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [cd4 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976c00 principal matched by identity 0 +orderer.example.com | [cd5 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 91 c0 00 94 5e 16 db 4a a5 e0 3e d4 d4 13 e6 25 |....^..J..>....%| +orderer.example.com | 00000010 20 03 56 af 0e f1 3d 52 d7 1a 53 c7 79 d2 d0 5c | .V...=R..S.y..\| +orderer.example.com | [cd6 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d7 10 ee 4c be 23 ff f0 fe 2d 34 |0E.!....L.#...-4| +orderer.example.com | 00000010 03 29 2a 36 dc b1 fe 01 e2 9e 82 26 f9 d2 5c 8c |.)*6.......&..\.| +orderer.example.com | 00000020 3b de c2 ad 7b 02 20 29 43 ae 4a d4 b6 99 95 c4 |;...{. )C.J.....| +orderer.example.com | 00000030 75 a8 00 9a 90 12 ac 16 88 3c 78 70 df 16 63 b9 |u........ DEBU 0xc420976c00 principal evaluation succeeds for identity 0 +orderer.example.com | [cd8 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976c00 gate 1515824102050518890 evaluation succeeds +orderer.example.com | [cd9 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [10b6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Move state message TRANSACTION +peer0.org1.example.com | [10b7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [cda 01-13 06:15:02.05 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 | [cdb 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +peer0.org1.example.com | [10b8 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [10b9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]sending state message TRANSACTION +peer0.org1.example.com | [10ba 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Received message TRANSACTION from shim +peer0.org1.example.com | [10bb 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [10bc 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [13645931]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [10bd 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [10be 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [10bf 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Move state message COMPLETED +peer0.org1.example.com | [10c0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [10c1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]send state message COMPLETED +peer0.org1.example.com | [10c2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Received message COMPLETED from shim +peer0.org1.example.com | [10c3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [10c4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [10c5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c, channelID:businesschannel +peer0.org1.example.com | [10c6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [10c7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [10c8 01-13 06:14:51.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 +peer0.org1.example.com | [10c9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +peer0.org1.example.com | [10ca 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [10cb 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [10cc 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [10cd 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [10ce 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c,syscc=true,proposal=0xc4282672c0,canname=escc:1.1.0 +peer0.org1.example.com | [10cf 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [10d0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [10d1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [10d2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [10d3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [10d4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [10d5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [10d6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Move state message TRANSACTION +peer0.org1.example.com | [10d7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [10d8 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [10d9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]sending state message TRANSACTION +peer0.org1.example.com | [10da 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Received message TRANSACTION from shim +peer0.org1.example.com | [10db 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [10dc 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [13645931]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [10dd 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [10de 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [10df 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [10e0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Move state message COMPLETED +peer0.org1.example.com | [10e1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [10e2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]send state message COMPLETED +peer0.org1.example.com | [10e3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Received message COMPLETED from shim +peer0.org1.example.com | [10e4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [10e5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [10e6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c, channelID:businesschannel +peer0.org1.example.com | [10e7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [10e8 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [10e9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [10ea 01-13 06:14:51.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 [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +peer0.org1.example.com | [10eb 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53742) +peer0.org1.example.com | [10ec 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40184 +peer0.org1.example.com | [10ed 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4283bb0b0 +peer0.org1.example.com | [10ee 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [cdc 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [10ef 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [10f0 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [10f1 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [10f2 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [10f3 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4283b6960, header 0xc4283bb410 +peer0.org1.example.com | [10f4 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [10f5 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 +peer0.org1.example.com | [10f6 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +peer0.org1.example.com | [10f7 01-13 06:14:52.22 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 | [10f8 01-13 06:14:52.22 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 = [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +peer0.org1.example.com | [10f9 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel +peer0.org1.example.com | [10fa 01-13 06:14:52.22 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.1.0,txid=92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2,syscc=true,proposal=0xc4283b6960,canname=lscc:1.1.0 +orderer.example.com | [cdd 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976f20 gate 1515824102051965190 evaluation starts +orderer.example.com | [cde 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 signed by 0 principal evaluation starts (used [false false false]) +orderer.example.com | [ce0 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50310, hangup +peer0.org1.example.com | [10fb 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [10fc 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [ce1 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +peer0.org1.example.com | [10fd 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [10fe 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [cdf 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [10ff 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [ce2 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [ce3 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [ce4 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +peer0.org1.example.com | [1100 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1101 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1102 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Move state message TRANSACTION +peer0.org1.example.com | [1103 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1104 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1105 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]sending state message TRANSACTION +peer0.org1.example.com | [1106 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Received message TRANSACTION from shim +peer0.org1.example.com | [1107 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1108 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [92c989e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [ce5 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 principal matched by identity 1 +orderer.example.com | [ce6 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7e 5b aa 11 b3 49 d1 08 df cf ec ca ef c3 be 16 |~[...I..........| +orderer.example.com | 00000010 70 7a 50 54 81 5b 05 1a 80 fa 74 65 c1 bf d9 56 |pzPT.[....te...V| +orderer.example.com | [ce7 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1f 30 e1 37 03 45 88 da e2 a3 1a 9c |0D. .0.7.E......| +orderer.example.com | 00000010 4c bb 78 81 90 e3 ed cf 9e 73 f3 72 7c 1c 82 ef |L.x......s.r|...| +orderer.example.com | 00000020 a5 13 61 d5 02 20 4c f6 07 44 2a 53 df 5d 68 94 |..a.. L..D*S.]h.| +orderer.example.com | 00000030 c2 f6 16 b8 d8 8e 18 4c 02 c8 53 55 06 2c e8 58 |.......L..SU.,.X| +orderer.example.com | 00000040 3f 1c c5 ff ef 4f |?....O| +orderer.example.com | [ce8 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 principal evaluation succeeds for identity 1 +peer0.org1.example.com | [1109 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [92c989e0]Sending GET_STATE +peer0.org1.example.com | [110a 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message GET_STATE from shim +peer0.org1.example.com | [110b 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [110c 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [92c989e0]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [110d 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [110e 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | [ce9 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976f20 gate 1515824102051965190 evaluation succeeds +peer0.org1.example.com | [110f 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [cea 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [1110 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0]Got state. Sending RESPONSE +orderer.example.com | [ceb 01-13 06:15:02.06 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 +peer0.org1.example.com | [1111 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [92c989e0]handleGetState serial send RESPONSE +peer0.org1.example.com | [1112 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Received message RESPONSE from shim +peer0.org1.example.com | [1113 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [cec 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins +peer0.org1.example.com | [1114 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [92c989e0]before send +orderer.example.com | [ced 01-13 06:15:02.06 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 | [cee 01-13 06:15:02.06 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 | [cef 01-13 06:15:02.06 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 | [cf0 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +orderer.example.com | [cf1 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50308: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [1115 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [92c989e0]after send +orderer.example.com | [cf2 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [1116 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [92c989e0]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [1117 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [92c989e0]GetState received payload RESPONSE +peer0.org1.example.com | [1118 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1119 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Move state message COMPLETED +peer0.org1.example.com | [111a 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [cf3 01-13 06:15:02.06 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 | [cf4 01-13 06:15:02.06 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 | [cf5 01-13 06:15:02.06 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 | [cf6 01-13 06:15:02.06 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 | [cf7 01-13 06:15:02.06 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 | [cf8 01-13 06:15:02.06 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 | [cf9 01-13 06:15:02.06 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 | [111b 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]send state message COMPLETED +orderer.example.com | [cfa 01-13 06:15:02.06 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 | [cfb 01-13 06:15:02.06 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 | [cfc 01-13 06:15:02.06 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 | [111c 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message COMPLETED from shim +peer0.org1.example.com | [111d 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [111e 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [111f 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2, channelID:businesschannel +peer0.org1.example.com | [1120 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1121 01-13 06:14:52.22 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 | [1122 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [1123 01-13 06:14:52.22 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=92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2,syscc=false,proposal=0xc4283b6960,canname=exp02:1.0 +peer0.org1.example.com | [1124 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org1.example.com | [1125 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1126 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org1.example.com | [1127 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [cfd 01-13 06:15:02.06 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 | [1128 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1129 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [112a 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [cfe 01-13 06:15:02.06 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 | [112b 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Move state message TRANSACTION +peer0.org1.example.com | [112c 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [112d 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [cff 01-13 06:15:02.06 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 | [112e 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]sending state message TRANSACTION +peer0.org1.example.com | [112f 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message GET_STATE from shim +peer0.org1.example.com | [1130 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [1131 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [92c989e0]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [1132 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1133 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0] getting state for chaincode exp02, key a, channel businesschannel +orderer.example.com | [d00 01-13 06:15:02.06 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 | [1134 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [1135 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0]Got state. Sending RESPONSE +orderer.example.com | [d01 01-13 06:15:02.06 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 | [1136 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [92c989e0]handleGetState serial send RESPONSE +peer0.org1.example.com | [1137 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message COMPLETED from shim +peer0.org1.example.com | [1138 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1139 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [113a 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2, channelID:businesschannel +peer0.org1.example.com | [113b 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [113c 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [113d 01-13 06:14:52.23 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 | [113e 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +peer0.org1.example.com | [113f 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1140 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [1141 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org1.example.com | [1142 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1143 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2,syscc=true,proposal=0xc4283b6960,canname=escc:1.1.0 +peer0.org1.example.com | [1144 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1145 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1146 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1147 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1148 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1149 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [114a 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [114b 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Move state message TRANSACTION +peer0.org1.example.com | [114c 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [114d 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [114e 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]sending state message TRANSACTION +peer0.org1.example.com | [114f 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Received message TRANSACTION from shim +peer0.org1.example.com | [1150 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1151 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [92c989e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1152 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1153 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1154 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1155 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Move state message COMPLETED +peer0.org1.example.com | [1156 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1157 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]send state message COMPLETED +peer0.org1.example.com | [1158 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message COMPLETED from shim +peer0.org1.example.com | [1159 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [115a 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [115b 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2, channelID:businesschannel +orderer.example.com | [d02 01-13 06:15:02.06 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 | [d03 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [d04 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [115c 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [d05 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [d06 01-13 06:15:02.06 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 | [d07 01-13 06:15:02.06 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 | [d08 01-13 06:15:02.06 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 | [d09 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [d0a 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [d0b 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [d0c 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [d0d 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [d0e 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [d0f 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [d10 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [d11 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [d12 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [d13 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [d14 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [115d 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [d15 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [d16 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [d17 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d18 01-13 06:15:02.06 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 | [d19 01-13 06:15:02.06 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 | [d1a 01-13 06:15:02.06 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 | [d1b 01-13 06:15:02.06 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 | [d1c 01-13 06:15:02.06 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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -15661,7 +19608,7 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d9b 01-05 06:37:27.75 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 | [d1d 01-13 06:15:02.06 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -15674,97 +19621,37 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d9c 01-05 06:37:27.75 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 | [d9d 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [d9e 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [d9f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [da0 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [da1 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [da2 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [da3 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -orderer.example.com | [da4 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -orderer.example.com | [da5 01-05 06:37:27.75 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 | [da6 01-05 06:37:27.75 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 | [da7 01-05 06:37:27.75 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 | [da8 01-05 06:37:27.75 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 | MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2NDNaFw0yNzEyMjcwNjI2NDNa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | ECHNCjOlwIXN9/sd33I4VWt2lY/TG5HW3JumY9nD1n9xmQzZfSDqia12BJ44qumL -orderer.example.com | vyq1K0EuYHw3ztuOvAamP6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg/qnu4M+Dom5jJ6IJKsy7 -orderer.example.com | OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv -orderer.example.com | cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD -orderer.example.com | nJqgrP2wQg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [da9 01-05 06:37:27.75 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 | MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzMuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjQ0WhcNMjcxMjI3MDYyNjQ0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMy5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKCjrPfn6toP3a96+ty3D4q4INzURBZ0 -orderer.example.com | Uo/s2uUgA+YEraC+q0RbGGFgBsOtGiKvgHMqd8M7V06pjiUb7Q0YBISjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP6p7uDPg6Ju -orderer.example.com | YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 -orderer.example.com | cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r -orderer.example.com | hVFCfUaM7mJS8t0Pz4U= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [daa 01-05 06:37:27.75 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 -orderer.example.com | [dab 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [dac 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [dad 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [dae 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [daf 01-05 06:37:27.75 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 | [db0 01-05 06:37:27.75 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 | [db1 01-05 06:37:27.75 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 | [db2 01-05 06:37:27.75 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 | [db3 01-05 06:37:27.75 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 | [db4 01-05 06:37:27.75 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -orderer.example.com | oQmWQsjpiQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [db5 01-05 06:37:27.76 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -orderer.example.com | jTZ94VyvHhJOn4fshoU= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [db6 01-05 06:37:27.76 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 | [db7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [db8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [db9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [dba 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [dbb 01-05 06:37:27.76 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 | [dbc 01-05 06:37:27.76 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 | [dbd 01-05 06:37:27.76 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 | [dbe 01-05 06:37:27.76 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 | [dbf 01-05 06:37:27.76 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 | [dc0 01-05 06:37:27.76 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 | [d1e 01-13 06:15:02.06 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.org1.example.com | [115e 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [d1f 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [115f 01-13 06:14:52.24 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 [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +orderer.example.com | [d20 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [d21 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [d22 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [d23 01-13 06:15:02.06 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 | [1160 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40184) +peer0.org1.example.com | [1161 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53754 +peer0.org1.example.com | [1162 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428552de0 +peer0.org1.example.com | [1163 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [d24 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1164 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1165 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [1166 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [1167 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1168 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42847d950, header 0xc428553140 +orderer.example.com | [d25 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [1169 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [116a 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c +peer0.org1.example.com | [116b 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +peer0.org1.example.com | [116c 01-13 06:14:52.32 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 | [116d 01-13 06:14:52.32 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 = [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +peer0.org1.example.com | [116e 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel +peer0.org1.example.com | [116f 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel version: 1.1.0 +orderer.example.com | [d26 01-13 06:15:02.06 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 | [d27 01-13 06:15:02.07 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 | [d28 01-13 06:15:02.07 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 | [d29 01-13 06:15:02.07 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 | [d2a 01-13 06:15:02.07 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 | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -15774,12 +19661,36 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [1170 01-13 06:14:52.32 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.1.0,txid=5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c,syscc=true,proposal=0xc42847d950,canname=qscc:1.1.0 +peer0.org1.example.com | [1171 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1172 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1173 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [1174 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1175 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1176 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1177 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]sendExecuteMsg trigger event TRANSACTION orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +peer0.org1.example.com | [1178 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Move state message TRANSACTION +peer0.org1.example.com | [1179 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [117a 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [117b 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]sending state message TRANSACTION +peer0.org1.example.com | [117c 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Received message TRANSACTION from shim +peer0.org1.example.com | [117d 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +peer0.org1.example.com | [117e 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c267e82]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +peer0.org1.example.com | [117f 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel orderer.example.com | vA2BLfriqQ== +peer0.org1.example.com | [1180 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1181 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Move state message COMPLETED +peer0.org1.example.com | [1182 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1183 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]send state message COMPLETED +peer0.org1.example.com | [1184 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Received message COMPLETED from shim +peer0.org1.example.com | [1185 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1186 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1187 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c, channelID:businesschannel orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [dc1 01-05 06:37:27.76 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 | [d2b 01-13 06:15:02.07 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -15793,179 +19704,667 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL orderer.example.com | R0L5Jr8878bLU6IcEA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [dc2 01-05 06:37:27.76 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 | [dc3 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -orderer.example.com | [dc4 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -orderer.example.com | [dc5 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -orderer.example.com | [dc6 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -orderer.example.com | [dc7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -orderer.example.com | [dc8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [dc9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [dca 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [dcb 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [dcc 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [dcd 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [dce 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [dcf 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [dd0 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [dd1 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [dd2 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [dd3 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [dd4 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [dd5 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [dd6 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [dd7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [dd8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [dd9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [dda 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [ddb 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [ddc 01-05 06:37:27.76 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 | [ddd 01-05 06:37:27.76 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 | [dde 01-05 06:37:27.76 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 | [ddf 01-05 06:37:27.76 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 | [de0 01-05 06:37:27.76 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 | [de1 01-05 06:37:27.76 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 | [de2 01-05 06:37:27.76 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 | [de3 01-05 06:37:27.76 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 | [de4 01-05 06:37:27.76 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 | [de5 01-05 06:37:27.76 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 | [de6 01-05 06:37:27.76 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 | [de7 01-05 06:37:27.76 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 | [de8 01-05 06:37:27.76 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 | [de9 01-05 06:37:27.76 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 | [dea 01-05 06:37:27.76 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 | [deb 01-05 06:37:27.76 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 | [dec 01-05 06:37:27.76 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 | [ded 01-05 06:37:27.76 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 | [dee 01-05 06:37:27.76 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 | [def 01-05 06:37:27.77 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 | [df0 01-05 06:37:27.77 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 | [df1 01-05 06:37:27.77 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 | [df2 01-05 06:37:27.77 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 | [df3 01-05 06:37:27.77 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 | [df4 01-05 06:37:27.77 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 | [df5 01-05 06:37:27.77 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 | [df6 01-05 06:37:27.77 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 | [df7 01-05 06:37:27.77 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 | [df8 01-05 06:37:27.77 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 | [df9 01-05 06:37:27.77 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 | [dfa 01-05 06:37:27.77 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 | [dfb 01-05 06:37:27.77 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 | [dfc 01-05 06:37:27.77 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 | [dfd 01-05 06:37:27.77 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 | [dfe 01-05 06:37:27.77 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 | [dff 01-05 06:37:27.77 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 | [e00 01-05 06:37:27.77 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 | [e01 01-05 06:37:27.77 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 | [e02 01-05 06:37:27.77 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 | [e03 01-05 06:37:27.77 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 | [e04 01-05 06:37:27.77 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 | [e05 01-05 06:37:27.77 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 | [e06 01-05 06:37:27.77 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 | [e07 01-05 06:37:27.77 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 | [e08 01-05 06:37:27.77 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 | [e09 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [e0a 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [e0b 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [e0c 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [e0d 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [e0e 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [e0f 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [e10 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [e11 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -orderer.example.com | [e12 01-05 06:37:27.77 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 | [e13 01-05 06:37:27.77 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 | [e14 01-05 06:37:27.77 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 | [e15 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [e16 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [e17 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [e18 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [e19 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [e1a 01-05 06:37:27.77 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 | [e1b 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e1c 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e1d 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e1e 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e1f 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...FE70E6517F307A389949835DC97BF90C -orderer.example.com | [e20 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 932DB9714BC4AEF4364E60650FAEDD5FC15258512EDA6E6D08BDAEA8C65DF8D1 -orderer.example.com | [e21 01-05 06:37:27.78 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 | [e22 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e23 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e24 01-05 06:37:27.78 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 | [e25 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e26 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e27 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...FE70E6517F307A389949835DC97BF90C -orderer.example.com | [e28 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BA2B7999D940040BC374C82FDFD8C4EF50D5620443B5160853C6B124A923633C -orderer.example.com | [e29 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -orderer.example.com | txId= locPointer=offset=71, bytesLength=19401 +orderer.example.com | [d2c 01-13 06:15:02.07 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 | [d2d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [1188 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1189 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [118a 01-13 06:14:52.32 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 +orderer.example.com | [d2e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [118b 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +peer0.org1.example.com | [118c 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [118d 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [118e 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [d2f 01-13 06:15:02.07 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 | [118f 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1190 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c,syscc=true,proposal=0xc42847d950,canname=escc:1.1.0 +peer0.org1.example.com | [1191 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1192 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [d30 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d31 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer0.org1.example.com | [1193 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1194 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1195 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [d32 01-13 06:15:02.07 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 | [1196 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [d33 01-13 06:15:02.07 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.org1.example.com | [1197 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1198 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Move state message TRANSACTION +peer0.org1.example.com | [1199 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [d34 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [119a 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [d35 01-13 06:15:02.07 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.org1.example.com | [119b 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]sending state message TRANSACTION +peer0.org1.example.com | [119c 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Received message TRANSACTION from shim +peer0.org1.example.com | [119d 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [119e 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c267e82]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [119f 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [11a0 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [11a1 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [11a2 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Move state message COMPLETED +orderer.example.com | [d36 01-13 06:15:02.07 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 | [11a3 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [11a4 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]send state message COMPLETED +peer0.org1.example.com | [11a5 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Received message COMPLETED from shim +peer0.org1.example.com | [11a6 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [11a7 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [11a8 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c, channelID:businesschannel +peer0.org1.example.com | [11a9 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [11aa 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2NDNaFw0yNzEyMjcwNjI2NDNa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [11ab 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [11ac 01-13 06:14:52.33 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 [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +peer0.org1.example.com | [11ad 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53754) +peer0.org1.example.com | [11ae 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40190 +peer0.org1.example.com | [11af 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428703050 +peer0.org1.example.com | [11b0 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [11b1 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [11b2 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [11b3 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [11b4 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [11b5 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4286abb80, header 0xc4287033b0 +peer0.org1.example.com | [11b6 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [11b7 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 +peer0.org1.example.com | [11b8 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +peer0.org1.example.com | [11b9 01-13 06:14:52.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 | [11ba 01-13 06:14:52.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 = [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +peer0.org1.example.com | [11bb 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel +peer0.org1.example.com | [11bc 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [11bd 01-13 06:14:52.82 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.1.0,txid=e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071,syscc=true,proposal=0xc4286abb80,canname=lscc:1.1.0 +orderer.example.com | ECHNCjOlwIXN9/sd33I4VWt2lY/TG5HW3JumY9nD1n9xmQzZfSDqia12BJ44qumL +peer0.org1.example.com | [11be 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [11bf 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | vyq1K0EuYHw3ztuOvAamP6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg/qnu4M+Dom5jJ6IJKsy7 +peer0.org1.example.com | [11c0 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv +orderer.example.com | cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD +peer0.org1.example.com | [11c1 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [11c2 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [11c3 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [11c4 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [11c5 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Move state message TRANSACTION +peer0.org1.example.com | [11c6 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | nJqgrP2wQg== +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [11c7 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [d37 01-13 06:15:02.07 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 | MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [11c8 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]sending state message TRANSACTION +peer0.org1.example.com | [11c9 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Received message TRANSACTION from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [11ca 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [11cb 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e8eb0fbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | Lm9yZzMuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjQ0WhcNMjcxMjI3MDYyNjQ0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [11cc 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e8eb0fbd]Sending GET_STATE +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMy5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKCjrPfn6toP3a96+ty3D4q4INzURBZ0 +peer0.org1.example.com | [11cd 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Received message GET_STATE from shim +orderer.example.com | Uo/s2uUgA+YEraC+q0RbGGFgBsOtGiKvgHMqd8M7V06pjiUb7Q0YBISjTTBLMA4G +peer0.org1.example.com | [11ce 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP6p7uDPg6Ju +orderer.example.com | YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 +peer0.org1.example.com | [11cf 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e8eb0fbd]Received GET_STATE, invoking get state from ledger +orderer.example.com | cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r +peer0.org1.example.com | [11d1 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e8eb0fbd] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | hVFCfUaM7mJS8t0Pz4U= +peer0.org1.example.com | [11d2 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [11d3 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e8eb0fbd]Got state. Sending RESPONSE +peer0.org1.example.com | [11d4 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e8eb0fbd]handleGetState serial send RESPONSE +orderer.example.com | [d38 01-13 06:15:02.07 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.org1.example.com | [11d5 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Received message RESPONSE from shim +peer0.org1.example.com | [11d6 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [d39 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [11d7 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e8eb0fbd]before send +orderer.example.com | [d3a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [11d8 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e8eb0fbd]after send +peer0.org1.example.com | [11d9 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e8eb0fbd]Received RESPONSE, communicated (state:ready) +orderer.example.com | [d3b 01-13 06:15:02.07 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 | [11da 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e8eb0fbd]GetState received payload RESPONSE +orderer.example.com | [d3c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [11db 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [11dc 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Move state message COMPLETED +orderer.example.com | [d3d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [11dd 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [d3e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [11de 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]send state message COMPLETED +orderer.example.com | [d3f 01-13 06:15:02.07 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.org1.example.com | [11d0 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [11df 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Received message COMPLETED from shim +orderer.example.com | [d40 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [11e0 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [d41 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [11e1 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071]HandleMessage- COMPLETED. Notify +orderer.example.com | [d42 01-13 06:15:02.07 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 | [11e2 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071, channelID:businesschannel +orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [11e3 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [11e4 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +peer0.org1.example.com | [11e5 01-13 06:14:52.83 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 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [11e6 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +peer0.org1.example.com | [11e7 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [11e8 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [11e9 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +peer0.org1.example.com | [11ea 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [11eb 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071,syscc=true,proposal=0xc4286abb80,canname=escc:1.1.0 +orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [11ec 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [11ed 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +peer0.org1.example.com | [11ee 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +peer0.org1.example.com | [11ef 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +peer0.org1.example.com | [11f0 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | oQmWQsjpiQ== +peer0.org1.example.com | [11f1 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [11f2 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [d43 01-13 06:15:02.07 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [11f3 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Move state message TRANSACTION +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [11f4 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [11f5 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [11f6 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]sending state message TRANSACTION +peer0.org1.example.com | [11f7 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Received message TRANSACTION from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [11f8 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +peer0.org1.example.com | [11f9 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e8eb0fbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +peer0.org1.example.com | [11fa 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [11fb 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +peer0.org1.example.com | [11fc 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Transaction completed. Sending COMPLETED +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +peer0.org1.example.com | [11fd 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Move state message COMPLETED +orderer.example.com | jTZ94VyvHhJOn4fshoU= +peer0.org1.example.com | [11fe 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [11ff 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]send state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d44 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [1200 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Received message COMPLETED from shim +orderer.example.com | [d45 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) +peer0.org1.example.com | [1201 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [d46 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps +peer0.org1.example.com | [1202 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071]HandleMessage- COMPLETED. Notify +orderer.example.com | [d47 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [1203 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071, channelID:businesschannel +orderer.example.com | [d48 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [d49 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [1204 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [d4a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org1.example.com | [1205 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [d4b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [d4c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org1.example.com | [1206 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [d4d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org1.example.com | [1207 01-13 06:14:52.83 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 [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +orderer.example.com | [d4e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [d4f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org1.example.com | [1208 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40190) +peer0.org1.example.com | [1209 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40192 +peer0.org1.example.com | [120a 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4287a6540 +peer0.org1.example.com | [120b 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [120c 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [d50 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer0.org1.example.com | [120d 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [120e 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [120f 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [d51 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP +orderer.example.com | [d52 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP +orderer.example.com | [d53 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP +peer0.org1.example.com | [1210 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4287925a0, header 0xc4287a68a0 +peer0.org1.example.com | [1211 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [1212 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c +orderer.example.com | [d54 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [1213 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +orderer.example.com | [d55 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org1.example.com | [1214 01-13 06:14:53.01 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 +orderer.example.com | [d56 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org1.example.com | [1215 01-13 06:14:53.01 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 = [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +orderer.example.com | [d57 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org1.example.com | [1216 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel +orderer.example.com | [d58 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org1.example.com | [1217 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1218 01-13 06:14:53.01 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.1.0,txid=5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c,syscc=true,proposal=0xc4287925a0,canname=lscc:1.1.0 +orderer.example.com | [d59 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer0.org1.example.com | [1219 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [121a 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [121b 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [121c 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [121d 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [121e 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [d5a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer0.org1.example.com | [121f 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1220 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Move state message TRANSACTION +orderer.example.com | [d5b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [1221 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [d5c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [1222 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [d5d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [1223 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]sending state message TRANSACTION +orderer.example.com | [d5e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [1224 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Received message TRANSACTION from shim +peer0.org1.example.com | [1225 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1226 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5960cf49]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1227 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5960cf49]Sending GET_STATE +orderer.example.com | [d5f 01-13 06:15:02.07 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 | [1228 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Received message GET_STATE from shim +orderer.example.com | [d60 01-13 06:15:02.07 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 +peer0.org1.example.com | [1229 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [122a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [5960cf49]Received GET_STATE, invoking get state from ledger +orderer.example.com | [d61 01-13 06:15:02.07 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 +peer0.org1.example.com | [122b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [d62 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [122c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5960cf49] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [122d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [d63 01-13 06:15:02.07 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 | [122e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5960cf49]Got state. Sending RESPONSE +peer0.org1.example.com | [122f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [5960cf49]handleGetState serial send RESPONSE +peer0.org1.example.com | [1230 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Received message RESPONSE from shim +peer0.org1.example.com | [1231 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [1232 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5960cf49]before send +peer0.org1.example.com | [1233 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5960cf49]after send +orderer.example.com | [d64 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [1234 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [5960cf49]Received RESPONSE, communicated (state:ready) +orderer.example.com | [d65 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [1235 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5960cf49]GetState received payload RESPONSE +orderer.example.com | [d66 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [1236 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Transaction completed. Sending COMPLETED +orderer.example.com | [d67 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [1237 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Move state message COMPLETED +orderer.example.com | [d68 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [1238 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [d69 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [1239 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]send state message COMPLETED +orderer.example.com | [d6a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [123a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Received message COMPLETED from shim +orderer.example.com | [d6b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [123b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [d6c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [123c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c]HandleMessage- COMPLETED. Notify +orderer.example.com | [d6d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [123d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c, channelID:businesschannel +orderer.example.com | [d6e 01-13 06:15:02.07 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 | [d6f 01-13 06:15:02.07 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 +peer0.org1.example.com | [123e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [d70 01-13 06:15:02.07 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 | [d71 01-13 06:15:02.07 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 | [d72 01-13 06:15:02.07 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 | [d73 01-13 06:15:02.07 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 | [d74 01-13 06:15:02.07 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 | [d75 01-13 06:15:02.07 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 | [123f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [d76 01-13 06:15:02.07 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 | [1240 01-13 06:14:53.02 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 +orderer.example.com | [d77 01-13 06:15:02.07 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 | [d78 01-13 06:15:02.07 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 | [d79 01-13 06:15:02.07 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 | [d7a 01-13 06:15:02.07 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 | [1241 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +orderer.example.com | [d7b 01-13 06:15:02.07 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 | [1242 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1243 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | [d7c 01-13 06:15:02.07 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 | [d7d 01-13 06:15:02.07 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 | [1244 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [1245 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel version: 1.1.0 +orderer.example.com | [d7e 01-13 06:15:02.07 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 | [1246 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c,syscc=true,proposal=0xc4287925a0,canname=escc:1.1.0 +peer0.org1.example.com | [1247 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | [d7f 01-13 06:15:02.07 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 | [1248 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1249 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [d80 01-13 06:15:02.07 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 | [124a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [d81 01-13 06:15:02.07 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 | [124b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [124c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [d82 01-13 06:15:02.07 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 | [124d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [d83 01-13 06:15:02.07 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 | [124e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Move state message TRANSACTION +orderer.example.com | [d84 01-13 06:15:02.07 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 | [d85 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [124f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [d86 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [1250 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1251 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]sending state message TRANSACTION +orderer.example.com | [d87 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [1252 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Received message TRANSACTION from shim +orderer.example.com | [d88 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [1253 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [d89 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [1254 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5960cf49]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [d8a 01-13 06:15:02.07 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 | [d8b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [1255 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1256 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [d8c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [1257 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1258 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Move state message COMPLETED +orderer.example.com | [d8d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer0.org1.example.com | [1259 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [125a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]send state message COMPLETED +peer0.org1.example.com | [125b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Received message COMPLETED from shim +orderer.example.com | [d8e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org1.example.com | [125c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [d8f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [125d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c]HandleMessage- COMPLETED. Notify +orderer.example.com | [d90 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [125e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c, channelID:businesschannel +peer0.org1.example.com | [125f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [d91 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer0.org1.example.com | [1260 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1261 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [d92 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP +orderer.example.com | [d93 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer0.org1.example.com | [1262 01-13 06:14:53.02 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 [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +orderer.example.com | [d94 01-13 06:15:02.07 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 | [d95 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [1263 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40192) +peer0.org1.example.com | [1264 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40194 +orderer.example.com | [d96 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [1265 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4287a75c0 +peer0.org1.example.com | [1266 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [d97 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org1.example.com | [1267 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [d98 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [d99 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org1.example.com | [1268 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [d9a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer0.org1.example.com | [1269 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [d9b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [d9c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [126a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [126b 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428792be0, header 0xc4287a7920 +orderer.example.com | [d9d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [d9e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [126c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [d9f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [126d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 +orderer.example.com | [da0 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [126e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +orderer.example.com | [da1 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...41B667E62154D3009B65CCAEC56C54B1 +orderer.example.com | [da2 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 534AAA011501DBBFD8253F072CBF1FAE94F9E5DA4134ED87CBF333EDF08A8AA2 +peer0.org1.example.com | [126f 01-13 06:14:53.22 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 | [1270 01-13 06:14:53.22 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 = [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +peer0.org1.example.com | [1271 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel +orderer.example.com | [da3 01-13 06:15:02.07 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 +peer0.org1.example.com | [1272 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1273 01-13 06:14:53.22 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.1.0,txid=f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808,syscc=true,proposal=0xc428792be0,canname=lscc:1.1.0 +peer0.org1.example.com | [1274 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +peer0.org1.example.com | [1275 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1276 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +peer0.org1.example.com | [1277 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [da4 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [da5 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [da6 01-13 06:15:02.07 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 | [da7 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [da8 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [da9 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...41B667E62154D3009B65CCAEC56C54B1 +orderer.example.com | [daa 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 719D4B981CE5571610B2D0832D6DA5115F3A7DC1F7C404D2E40CC9764963B601 +peer0.org1.example.com | [1278 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1279 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [127a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [127b 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Move state message TRANSACTION +orderer.example.com | [dab 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +peer0.org1.example.com | [127c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [127d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [127e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]sending state message TRANSACTION +orderer.example.com | txId= locPointer=offset=71, bytesLength=19402 +peer0.org1.example.com | [127f 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Received message TRANSACTION from shim orderer.example.com | ] -orderer.example.com | [e2a 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81566], isChainEmpty=[false], lastBlockNumber=[7] -orderer.example.com | [e2b 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 -orderer.example.com | [e2c 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e2d 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -orderer.example.com | [e2e 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -orderer.example.com | [e2f 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -orderer.example.com | [e30 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [e31 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e32 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [e33 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e34 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [e35 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [e36 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e37 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -orderer.example.com | [e38 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -orderer.example.com | [e39 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -orderer.example.com | [e3a 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [e3b 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e3c 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [e3d 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e3e 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [e3f 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [e41 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1280 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1281 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9aacedc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1282 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9aacedc]Sending GET_STATE +peer0.org1.example.com | [1283 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Received message GET_STATE from shim +peer0.org1.example.com | [1284 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [1285 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f9aacedc]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [1286 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1287 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9aacedc] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [1288 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [dac 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81566], isChainEmpty=[false], lastBlockNumber=[7] +peer0.org1.example.com | [1289 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9aacedc]Got state. Sending RESPONSE +peer0.org1.example.com | [128a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f9aacedc]handleGetState serial send RESPONSE +peer0.org1.example.com | [128b 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Received message RESPONSE from shim +peer0.org1.example.com | [128c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [128d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9aacedc]before send +peer0.org1.example.com | [128e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9aacedc]after send +orderer.example.com | [dad 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 +peer0.org1.example.com | [128f 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f9aacedc]Received RESPONSE, communicated (state:ready) +orderer.example.com | [dae 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +orderer.example.com | [daf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +peer0.org1.example.com | [1290 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9aacedc]GetState received payload RESPONSE +orderer.example.com | [db0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +orderer.example.com | [db1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +orderer.example.com | [db2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +peer0.org1.example.com | [1291 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1292 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Move state message COMPLETED +peer0.org1.example.com | [1293 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1294 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]send state message COMPLETED +orderer.example.com | [db3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +peer0.org1.example.com | [1295 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Received message COMPLETED from shim +orderer.example.com | [db4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [db5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [db6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [1296 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [db7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [1297 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808]HandleMessage- COMPLETED. Notify +orderer.example.com | [db8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [db9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [1298 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808, channelID:businesschannel +orderer.example.com | [dba 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [1299 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [129a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 +peer0.org1.example.com | [129b 01-13 06:14:53.22 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 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [129c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +peer0.org1.example.com | [129d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [129e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel chaincode id: name:"lscc" orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd +peer0.org1.example.com | [129f 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [12a0 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel version: 1.1.0 orderer.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G +peer0.org1.example.com | [12a1 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808,syscc=true,proposal=0xc428792be0,canname=escc:1.1.0 +peer0.org1.example.com | [12a2 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [12a3 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [12a4 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [12a5 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [12a6 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [12a7 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [12a8 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [12a9 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Move state message TRANSACTION +peer0.org1.example.com | [12aa 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [12ab 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [12ac 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]sending state message TRANSACTION +peer0.org1.example.com | [12ad 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Received message TRANSACTION from shim orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +peer0.org1.example.com | [12ae 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [12af 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9aacedc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U +peer0.org1.example.com | [12b0 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [12b1 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully orderer.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB +peer0.org1.example.com | [12b2 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [12b3 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Move state message COMPLETED +peer0.org1.example.com | [12b4 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [12b5 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]send state message COMPLETED +peer0.org1.example.com | [12b6 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Received message COMPLETED from shim orderer.example.com | IMM+3uC8p/M1qCSaOiQ= +peer0.org1.example.com | [12b7 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [12b8 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808]HandleMessage- COMPLETED. Notify orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e42 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201383b0 gate 1515134247814206900 evaluation starts -orderer.example.com | [e43 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e44 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e45 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) -orderer.example.com | [e46 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 principal evaluation fails -orderer.example.com | [e47 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201383b0 gate 1515134247814206900 evaluation fails -orderer.example.com | [e48 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e49 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e4a 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [e4b 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134247817255800 evaluation starts -orderer.example.com | [e4c 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e4d 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e4e 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [e4f 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 principal evaluation fails -orderer.example.com | [e50 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134247817255800 evaluation fails -orderer.example.com | [e51 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e52 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e53 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [e54 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138460 gate 1515134247819487600 evaluation starts -orderer.example.com | [e55 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e56 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e57 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [e58 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [e59 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 principal matched by identity 0 -orderer.example.com | [e40 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [dbb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c388 gate 1515824102084428090 evaluation starts +peer0.org1.example.com | [12b9 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808, channelID:businesschannel +orderer.example.com | [dbc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [12ba 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [dbd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [12bb 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [dbe 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +peer0.org1.example.com | [12bc 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [12bd 01-13 06:14:53.23 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 [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +orderer.example.com | [dbf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 principal evaluation fails +peer0.org1.example.com | [12be 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40194) +peer0.org1.example.com | [12bf 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53764 +orderer.example.com | [dc0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c388 gate 1515824102084428090 evaluation fails +peer0.org1.example.com | [12c0 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4288eeae0 +orderer.example.com | [dc1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [12c1 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [dc2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [12c2 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [dc3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +peer0.org1.example.com | [12c3 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [dc4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +peer0.org1.example.com | [12c4 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [dc5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [12c5 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [dc6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org1.example.com | [12c6 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4288ec730, header 0xc4288eee40 +peer0.org1.example.com | [12c7 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [dc7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [12c8 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 +orderer.example.com | [dc8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org1.example.com | [12c9 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +orderer.example.com | [dc9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824102084941390 evaluation starts +peer0.org1.example.com | [12ca 01-13 06:14:53.38 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 | [12cb 01-13 06:14:53.38 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 = [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +orderer.example.com | [dca 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [12cc 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel +orderer.example.com | [dcb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [12cd 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel version: 1.1.0 +orderer.example.com | [dcc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) +peer0.org1.example.com | [12ce 01-13 06:14:53.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=qscc,version=1.1.0,txid=f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419,syscc=true,proposal=0xc4288ec730,canname=qscc:1.1.0 +orderer.example.com | [dcd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 principal evaluation fails +orderer.example.com | [dce 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824102084941390 evaluation fails +orderer.example.com | [dcf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +orderer.example.com | [dd0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +orderer.example.com | [dd1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [dd2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c438 gate 1515824102085256890 evaluation starts +peer0.org1.example.com | [12cf 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +orderer.example.com | [dd3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [dd4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [dd5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [dd6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 principal evaluation fails +peer0.org1.example.com | [12d0 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [dd7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c438 gate 1515824102085256890 evaluation fails +orderer.example.com | [dd8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [dd9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [dda 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [ddb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c440 gate 1515824102085601490 evaluation starts +orderer.example.com | [ddc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [12d1 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [12d2 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [ddd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [dde 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [12d3 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [ddf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [12d4 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [12d5 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [12d6 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Move state message TRANSACTION +orderer.example.com | [de0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 principal matched by identity 0 +peer0.org1.example.com | [12d7 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [de1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fb 3e 27 9e c5 ac 31 e3 cc 45 1c 7e af 64 93 6f |.>'...1..E.~.d.o| +peer0.org1.example.com | [12d8 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000010 85 4b 15 5f 7e ef 49 b4 a4 ef a5 a4 a2 30 61 94 |.K._~.I......0a.| +orderer.example.com | [de2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5c 5c ff cc 10 cc 63 88 40 93 46 |0D. K\\....c.@.F| +peer0.org1.example.com | [12d9 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]sending state message TRANSACTION +peer0.org1.example.com | [12da 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Received message TRANSACTION from shim +peer0.org1.example.com | [12db 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [12dc 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f70f9992]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 00000010 33 d5 8e 39 bf 1c 85 96 bf a6 70 07 73 de 71 71 |3..9......p.s.qq| +peer0.org1.example.com | [12dd 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | 00000020 56 12 c9 fd 02 20 13 6c 74 ea a8 f1 3c 57 b2 9b |V.... .lt... DEBU [f70f9992]Transaction completed. Sending COMPLETED +orderer.example.com | 00000030 ba 2a a2 41 eb 11 08 13 3f 50 a2 99 95 a7 98 14 |.*.A....?P......| +peer0.org1.example.com | [12df 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Move state message COMPLETED +peer0.org1.example.com | [12e0 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [12e1 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]send state message COMPLETED +orderer.example.com | 00000040 8b 5e 91 70 b0 c0 |.^.p..| +orderer.example.com | [de3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 principal evaluation succeeds for identity 0 +orderer.example.com | [de4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c440 gate 1515824102085601490 evaluation succeeds +orderer.example.com | [de5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [de6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [de7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [de8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [de9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [12e2 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Received message COMPLETED from shim +peer0.org1.example.com | [12e3 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [12e4 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [12e5 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419, channelID:businesschannel +orderer.example.com | [dea 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [12e6 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [deb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +peer0.org1.example.com | [12e7 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [12e8 01-13 06:14:53.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 +peer0.org1.example.com | [12e9 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +orderer.example.com | [dec 01-13 06:15:02.08 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 | [12ea 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [12eb 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [12ec 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [ded 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +peer0.org1.example.com | [12ed 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel version: 1.1.0 +orderer.example.com | [dee 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +peer0.org1.example.com | [12ee 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419,syscc=true,proposal=0xc4288ec730,canname=escc:1.1.0 +peer0.org1.example.com | [12ef 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [12f0 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [def 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [12f1 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +orderer.example.com | [df0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [12f2 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [df1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [12f3 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [df2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [12f4 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [df3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [df4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [12f5 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [12f6 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Move state message TRANSACTION +peer0.org1.example.com | [12f7 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [12f8 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [12f9 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]sending state message TRANSACTION +orderer.example.com | [df5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [12fa 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Received message TRANSACTION from shim orderer.example.com | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [12fb 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [12fc 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f70f9992]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [12fd 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [12fe 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [12ff 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1300 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Move state message COMPLETED +peer0.org1.example.com | [1301 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [1302 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]send state message COMPLETED orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw orderer.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 @@ -15973,220 +20372,1832 @@ Attaching to peer1.org1.example.com, fabric-cli, orderer.example.com, peer1.org2 orderer.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk orderer.example.com | oOWGb8BDg2Tnm3LS orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e5a 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 79 d1 5d b1 3f 52 2d 32 82 54 e0 af e2 de 98 1c |y.].?R-2.T......| -orderer.example.com | 00000010 eb 5b 21 04 d1 58 18 0f 4d a2 ee 7f ea de ac d7 |.[!..X..M.......| -orderer.example.com | [e5b 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 24 d6 1a fc 1c 66 ec ec 80 4d 34 f0 |0D. $....f...M4.| -orderer.example.com | 00000010 41 77 9b 17 96 68 20 eb 0a 9f 97 31 6a 0c fb 79 |Aw...h ....1j..y| -orderer.example.com | 00000020 a4 f1 cf dc 02 20 5a 2d 47 f7 c1 3b 55 2c 5b 85 |..... Z-G..;U,[.| -orderer.example.com | 00000030 c7 8f 0b 90 01 a7 ff f8 32 db 15 9a 1f 40 23 e9 |........2....@#.| -orderer.example.com | 00000040 ff 92 43 68 35 2c |..Ch5,| -orderer.example.com | [e5c 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134247822883600 evaluation starts -orderer.example.com | [e5d 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e5e 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 principal evaluation succeeds for identity 0 -orderer.example.com | [e60 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138460 gate 1515134247819487600 evaluation succeeds -orderer.example.com | [e5f 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e62 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) -orderer.example.com | [e63 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -orderer.example.com | [e64 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134247822883600 evaluation fails -orderer.example.com | [e61 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [e66 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [e67 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [e68 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [e69 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [e65 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e6a 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [e6b 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e6c 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -orderer.example.com | [e6d 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [e6f 01-05 06:37:27.82 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 | [e6e 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134247828599900 evaluation starts -orderer.example.com | [e70 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e71 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e72 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [e73 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [e74 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal matched by identity 0 -orderer.example.com | [e75 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 25 97 8d e1 ec f1 fe 3d 55 d2 3e 34 d0 9c b9 19 |%......=U.>4....| -orderer.example.com | 00000010 23 5d 41 55 29 6e 92 64 2a 32 dd 80 d5 5d f6 b6 |#]AU)n.d*2...]..| -orderer.example.com | [e76 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 2b 20 7e 5d cf 07 9d ca 69 7b 7e |0D. ,+ ~]....i{~| -orderer.example.com | 00000010 5e 69 fc 7e c9 33 12 88 7f 0e 5c 1d 27 a4 3c fe |^i.~.3....\.'.<.| -orderer.example.com | 00000020 7f 1f 12 5e 02 20 76 5e 13 59 d4 cd 3b 83 42 e8 |...^. v^.Y..;.B.| -orderer.example.com | 00000030 40 ee 47 fc 75 cf 04 26 99 8d c1 66 d1 0d 4c 41 |@.G.u..&...f..LA| -orderer.example.com | 00000040 a2 96 e7 c6 1d 05 |......| -orderer.example.com | [e77 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation succeeds for identity 0 -orderer.example.com | [e78 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134247828599900 evaluation succeeds -orderer.example.com | [e79 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e7a 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e7b 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [e7c 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [e7d 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [e7e 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [e7f 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -orderer.example.com | [e80 01-05 06:37:27.83 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 | [e81 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [e82 01-05 06:37:29.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:44260 -orderer.example.com | [e83 01-05 06:37:29.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:44260 -orderer.example.com | [e84 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [e85 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e86 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [e87 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e88 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [e89 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [e8a 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | [df6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8a8 gate 1515824102087898390 evaluation starts +peer0.org1.example.com | [1303 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Received message COMPLETED from shim +orderer.example.com | [df7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [df8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1304 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [df9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [dfa 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 principal evaluation fails +peer0.org1.example.com | [1306 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419]HandleMessage- COMPLETED. Notify +orderer.example.com | [dfb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8a8 gate 1515824102087898390 evaluation fails +orderer.example.com | [dfc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [dfd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [dfe 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +orderer.example.com | [dff 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +orderer.example.com | [e00 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [1307 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419, channelID:businesschannel +peer0.org1.example.com | [1305 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40198 +peer0.org1.example.com | [1309 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428809200 +orderer.example.com | [e01 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [e02 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [e03 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +orderer.example.com | [e04 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1515824102088692590 evaluation starts +orderer.example.com | [e05 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e06 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [e07 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) +orderer.example.com | [e08 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 principal evaluation fails +peer0.org1.example.com | [1308 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [e09 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1515824102088692590 evaluation fails +orderer.example.com | [e0a 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [130a 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [130c 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [e0b 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [130b 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [e0c 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [130d 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [e0d 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c0 gate 1515824102089025690 evaluation starts +peer0.org1.example.com | [130e 01-13 06:14:53.40 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 [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +orderer.example.com | [e0e 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [130f 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53764) +peer0.org1.example.com | [1310 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [e0f 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1311 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [1312 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1313 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4288ecaa0, header 0xc4288efb90 +peer0.org1.example.com | [1314 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [1315 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 +peer0.org1.example.com | [1316 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +orderer.example.com | [e10 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer0.org1.example.com | [1317 01-13 06:14:53.40 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 | [1318 01-13 06:14:53.40 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 = [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +orderer.example.com | [e11 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [1319 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel +peer0.org1.example.com | [131a 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [131b 01-13 06:14:53.40 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.1.0,txid=44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866,syscc=true,proposal=0xc4288ecaa0,canname=lscc:1.1.0 +peer0.org1.example.com | [131c 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [e12 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 principal matched by identity 0 +peer0.org1.example.com | [131d 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [e13 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 12 9a be bd 3d 0d a9 f6 bf f3 e1 0f 5f ff 04 3c |....=......._..<| +peer0.org1.example.com | [131e 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | 00000010 0d 62 04 6e 15 09 9f 48 7e 88 9c f7 b2 61 6d 40 |.b.n...H~....am@| +peer0.org1.example.com | [131f 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [e14 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 ec 20 2c 7f 3d 8f de f3 25 98 |0E.!... ,.=...%.| +peer0.org1.example.com | [1320 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 00000010 7c 3d df f9 99 57 85 ef 74 47 cf 43 a9 5a 97 ba ||=...W..tG.C.Z..| +orderer.example.com | 00000020 0d 64 e1 e4 1b 02 20 4d e4 7f 28 18 be 55 54 f9 |.d.... M..(..UT.| +orderer.example.com | 00000030 00 22 e1 87 dd 87 09 8b 56 02 10 1a a4 e8 0f 91 |."......V.......| +orderer.example.com | 00000040 60 04 03 f4 c6 8a 13 |`......| +orderer.example.com | [e15 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 principal evaluation succeeds for identity 0 +orderer.example.com | [e16 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c0 gate 1515824102089025690 evaluation succeeds +peer0.org1.example.com | [1321 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [e17 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [e18 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [e19 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +peer0.org1.example.com | [1322 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [e1a 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [e1b 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [e1c 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [e1d 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +orderer.example.com | [e1e 01-13 06:15:02.10 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 | [1323 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Move state message TRANSACTION +orderer.example.com | [e1f 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [e20 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50338 +orderer.example.com | [e21 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50338 +orderer.example.com | [e22 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [e23 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [1324 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [e24 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [e25 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [e26 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [e27 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [e28 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [1325 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [1326 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]sending state message TRANSACTION orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [1327 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Received message TRANSACTION from shim orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +peer0.org1.example.com | [1328 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [1329 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [44a27630]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [132a 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Transaction completed. Sending COMPLETED orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +peer0.org1.example.com | [132b 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Move state message COMPLETED orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [132c 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +peer0.org1.example.com | [132d 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]send state message COMPLETED +peer0.org1.example.com | [132e 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Received message COMPLETED from shim orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +peer0.org1.example.com | [132f 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +peer0.org1.example.com | [1330 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1331 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866, channelID:businesschannel orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e8b 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384b0 gate 1515134249827740800 evaluation starts -orderer.example.com | [e8c 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e8d 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e8e 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [e8f 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 principal evaluation fails -orderer.example.com | [e90 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384b0 gate 1515134249827740800 evaluation fails -orderer.example.com | [e91 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e92 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e93 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [e94 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134249829119000 evaluation starts -orderer.example.com | [e95 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e96 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e97 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [e98 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 principal evaluation fails -orderer.example.com | [e99 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134249829119000 evaluation fails -orderer.example.com | [e9a 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e9b 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e9c 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [e9d 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134249830692100 evaluation starts -orderer.example.com | [e9e 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e9f 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ea0 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [ea1 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 principal evaluation fails -orderer.example.com | [ea2 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134249830692100 evaluation fails -orderer.example.com | [ea3 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [ea4 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [ea5 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [ea6 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [ea7 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [ea8 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [ea9 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [eaa 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [eab 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134249832530000 evaluation starts -orderer.example.com | [eac 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ead 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [eae 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [eaf 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [eb0 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal matched by identity 0 -orderer.example.com | [eb1 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8d 25 e2 30 22 fe 63 97 b1 a2 4b 6a 22 68 31 46 |.%.0".c...Kj"h1F| -orderer.example.com | 00000010 eb 44 99 a7 b4 4e 7a e7 79 7c aa 80 11 6c 06 67 |.D...Nz.y|...l.g| -orderer.example.com | [eb2 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 50 fd 68 64 dc de aa 38 a9 a8 |0E.!..P.hd...8..| -orderer.example.com | 00000010 5e 15 6b 64 ce 97 ba 17 bf 59 26 cd 90 90 19 88 |^.kd.....Y&.....| -orderer.example.com | 00000020 79 e2 4d ae c2 02 20 3f 61 fb 4c cc c6 1a 5f 75 |y.M... ?a.L..._u| -orderer.example.com | 00000030 a2 3b 84 65 64 cd fe a2 75 03 34 c3 73 80 ef fa |.;.ed...u.4.s...| -orderer.example.com | 00000040 db 7a 4e f2 37 c2 99 |.zN.7..| -orderer.example.com | [eb3 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal evaluation succeeds for identity 0 -orderer.example.com | [eb4 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134249832530000 evaluation succeeds -orderer.example.com | [eb5 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [eb6 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [eb7 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [eb8 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [eb9 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [eba 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [ebb 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a73b40) start: > stop: > from 172.18.0.7:44260 -orderer.example.com | [ebc 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [ebd 01-05 06:37:29.83 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=[60301] -orderer.example.com | [ebe 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -orderer.example.com | [ebf 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -orderer.example.com | [ec0 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -orderer.example.com | [ec1 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a73b40) for 172.18.0.7:44260 -orderer.example.com | [ec2 01-05 06:37:29.83 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:44260 for (0xc420a73b40) -orderer.example.com | [ec3 01-05 06:37:29.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:44260 -orderer.example.com | [ec5 01-05 06:37:29.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:44260 -orderer.example.com | [ec4 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [ec6 01-05 06:37:29.83 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 | [ec7 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [ec8 01-05 06:37:29.83 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 | [ec9 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44260: rpc error: code = Canceled desc = context canceled -orderer.example.com | [eca 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [ecb 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [ecc 01-05 06:37:29.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:44262 -orderer.example.com | [ecd 01-05 06:37:29.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:44262 -orderer.example.com | [ece 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [ecf 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ed0 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [ed1 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ed2 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [ed3 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138528 gate 1515134249919774800 evaluation starts -orderer.example.com | [ed4 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ed5 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ed6 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [ed7 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 principal evaluation fails -orderer.example.com | [ed8 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138528 gate 1515134249919774800 evaluation fails -orderer.example.com | [ed9 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [eda 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [edb 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [edc 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138530 gate 1515134249921245800 evaluation starts -orderer.example.com | [edd 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ede 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [edf 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [ee0 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 principal evaluation fails -orderer.example.com | [ee1 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138530 gate 1515134249921245800 evaluation fails -orderer.example.com | [ee2 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [ee3 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [ee4 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [ee5 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138538 gate 1515134249922523700 evaluation starts -orderer.example.com | [ee6 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ee7 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ee8 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [ee9 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 principal evaluation fails -orderer.example.com | [eea 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138538 gate 1515134249922523700 evaluation fails -orderer.example.com | [eeb 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [eec 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [eed 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [eee 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [eef 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [ef0 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [ef1 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ef2 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [ef3 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138540 gate 1515134249924332000 evaluation starts -orderer.example.com | [ef4 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ef5 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ef6 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [ef7 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [ef8 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 principal matched by identity 0 -orderer.example.com | [ef9 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1f f0 a4 34 b9 0b c6 43 1b f5 22 1c b7 d4 dc 70 |...4...C.."....p| -orderer.example.com | 00000010 dc 10 20 a5 16 f4 3c c2 cd 60 3e c8 88 4a 20 da |.. ...<..`>..J .| -orderer.example.com | [efa 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b2 16 d2 62 0d 46 ba 7d b5 34 15 |0E.!....b.F.}.4.| -orderer.example.com | 00000010 86 9d 6c d1 bf e4 b5 ee 55 8d 1d 58 2b e2 09 19 |..l.....U..X+...| -orderer.example.com | 00000020 27 87 54 c3 b2 02 20 21 50 5d 86 cc 1f a3 7f cb |'.T... !P]......| -orderer.example.com | 00000030 8f aa fd a8 6b 61 51 a5 f3 1c 98 3b 6e 74 7e 5a |....kaQ....;nt~Z| -orderer.example.com | 00000040 b2 e3 fe c1 3e db a1 |....>..| -orderer.example.com | [efb 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 principal evaluation succeeds for identity 0 -orderer.example.com | [efc 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138540 gate 1515134249924332000 evaluation succeeds -orderer.example.com | [efd 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [efe 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [eff 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [f00 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [f01 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [f02 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [f03 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202a9180) start: > stop: > from 172.18.0.7:44262 -orderer.example.com | [f04 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [f05 01-05 06:37:29.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=[60301] -orderer.example.com | [f06 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -orderer.example.com | [f07 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -orderer.example.com | [f08 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -orderer.example.com | [f09 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202a9180) for 172.18.0.7:44262 -orderer.example.com | [f0a 01-05 06:37:29.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:44262 for (0xc4202a9180) -orderer.example.com | [f0c 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [f0d 01-05 06:37:29.92 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 | [f0e 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [f0f 01-05 06:37:29.92 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 | [f0b 01-05 06:37:29.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:44262 -orderer.example.com | [f10 01-05 06:37:29.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:44262 -orderer.example.com | [f11 01-05 06:37:29.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44262: rpc error: code = Canceled desc = context canceled -orderer.example.com | [f12 01-05 06:37:29.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [1332 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [e29 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8f0 gate 1515824104159188390 evaluation starts +orderer.example.com | [e2a 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1333 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [e2b 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1334 01-13 06:14:53.41 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 +orderer.example.com | [e2c 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [1335 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +orderer.example.com | [e2d 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [e2e 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 principal matched by identity 0 +peer0.org1.example.com | [1336 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [e2f 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c7 8a f8 03 d8 14 d9 e3 49 0a 04 cf 4e bf 68 e7 |........I...N.h.| +peer0.org1.example.com | [1337 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | 00000010 81 04 20 11 39 06 37 84 2f 40 88 77 fe d5 5d c6 |.. .9.7./@.w..].| +peer0.org1.example.com | [1338 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | [e30 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 42 f8 92 37 63 b5 45 84 d8 42 d4 06 |0D. B..7c.E..B..| +peer0.org1.example.com | [1339 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel version: 1.1.0 +orderer.example.com | 00000010 cf 6f 8d 66 ca 3c b1 d4 50 e1 e6 57 ef 1a 26 96 |.o.f.<..P..W..&.| +peer0.org1.example.com | [133a 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866,syscc=true,proposal=0xc4288ecaa0,canname=escc:1.1.0 +orderer.example.com | 00000020 32 68 c9 6f 02 20 02 80 75 f0 a8 3f 24 6b 00 51 |2h.o. ..u..?$k.Q| +peer0.org1.example.com | [133b 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +orderer.example.com | 00000030 c8 43 42 b3 4b 5d 80 ee a0 62 10 89 6c 4b f6 e4 |.CB.K]...b..lK..| +peer0.org1.example.com | [133c 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [133d 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [133e 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 00000040 60 09 97 43 53 98 |`..CS.| +peer0.org1.example.com | [133f 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [e31 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [1340 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [e32 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8f0 gate 1515824104159188390 evaluation succeeds +peer0.org1.example.com | [1341 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [e33 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1342 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Move state message TRANSACTION +orderer.example.com | [e34 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [e35 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [1343 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [e36 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [e37 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [1344 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1345 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]sending state message TRANSACTION +orderer.example.com | [e38 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [1346 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Received message TRANSACTION from shim +orderer.example.com | [e39 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42092a300) start: > stop: > from 172.18.0.8:50338 +peer0.org1.example.com | [1347 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1348 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [44a27630]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1349 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [e3a 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org1.example.com | [134a 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [134b 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [134c 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Move state message COMPLETED +orderer.example.com | [e3b 01-13 06:15:04.16 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=[60299] +peer0.org1.example.com | [134d 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [134e 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]send state message COMPLETED +peer0.org1.example.com | [134f 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Received message COMPLETED from shim +peer0.org1.example.com | [1350 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1351 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1352 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866, channelID:businesschannel +peer0.org1.example.com | [1353 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [e3c 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +peer0.org1.example.com | [1354 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1355 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [1356 01-13 06:14:53.41 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 [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +peer0.org1.example.com | [1357 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40198) +peer0.org1.example.com | [1358 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40200 +peer0.org1.example.com | [1359 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428809e30 +peer0.org1.example.com | [135a 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [e3d 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +peer0.org1.example.com | [135b 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [135c 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +orderer.example.com | [e3e 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +peer0.org1.example.com | [135d 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [135e 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [e3f 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42092a300) for 172.18.0.8:50338 +peer0.org1.example.com | [135f 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428814be0, header 0xc428a041b0 +orderer.example.com | [e40 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50338 for (0xc42092a300) +peer0.org1.example.com | [1360 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [e41 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50338 +peer0.org1.example.com | [1361 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 +orderer.example.com | [e43 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1362 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +orderer.example.com | [e44 01-13 06:15:04.16 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 | [1363 01-13 06:14:53.57 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 +orderer.example.com | [e42 01-13 06:15:04.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.8:50338 +peer0.org1.example.com | [1364 01-13 06:14:53.57 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 = [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +orderer.example.com | [e45 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +orderer.example.com | [e46 01-13 06:15:04.16 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 | [1365 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel +peer0.org1.example.com | [1366 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel version: 1.1.0 +orderer.example.com | [e47 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50338: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [1367 01-13 06:14:53.57 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.1.0,txid=84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327,syscc=true,proposal=0xc428814be0,canname=lscc:1.1.0 +orderer.example.com | [e48 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [1368 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +orderer.example.com | [e49 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [1369 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [e4a 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50340 +peer0.org1.example.com | [136a 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +orderer.example.com | [e4b 01-13 06:15:04.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.8:50340 +peer0.org1.example.com | [136b 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [e4c 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [e4d 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [136c 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [e4e 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [e4f 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.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 | [e50 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [136d 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [e51 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c608 gate 1515824104247597690 evaluation starts +orderer.example.com | [e52 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [136e 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [e53 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [136f 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Move state message TRANSACTION +orderer.example.com | [e54 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [1370 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1371 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [e55 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [1372 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]sending state message TRANSACTION +orderer.example.com | [e56 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 principal matched by identity 0 +peer0.org1.example.com | [1373 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message TRANSACTION from shim +orderer.example.com | [e57 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9c 24 d4 2d bb c1 c1 ca 2e 72 cf 18 69 46 15 48 |.$.-.....r..iF.H| +peer0.org1.example.com | [1374 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 00000010 3c 06 3c e6 ba 7b 25 ac ae 1d 9c ba 8b dd bc 39 |<.<..{%........9| +peer0.org1.example.com | [1375 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [84081219]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [e58 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fc 90 df 42 d9 61 dc f8 17 d0 b0 |0E.!....B.a.....| +orderer.example.com | 00000010 fd bc 72 77 d4 90 29 c3 50 f0 8c 46 97 c0 fc 50 |..rw..).P..F...P| +peer0.org1.example.com | [1376 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [84081219]Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [1377 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message GET_STATE_BY_RANGE from shim +peer0.org1.example.com | [1378 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +orderer.example.com | 00000020 1d 33 4b af 01 02 20 39 a2 0d 6a 40 ce d6 da f7 |.3K... 9..j@....| +orderer.example.com | 00000030 a7 73 40 3a 00 2b 2d 3e b6 66 e3 10 c9 95 91 be |.s@:.+->.f......| +peer0.org1.example.com | [1379 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +orderer.example.com | 00000040 88 06 30 c7 f4 6b ff |..0..k.| +orderer.example.com | [e59 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [137a 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +peer0.org1.example.com | [137b 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [137c 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +orderer.example.com | [e5a 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c608 gate 1515824104247597690 evaluation succeeds +orderer.example.com | [e5b 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [137d 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +peer0.org1.example.com | [137e 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +orderer.example.com | [e5c 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [137f 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [84081219]handleGetStateByRange serial send RESPONSE +orderer.example.com | [e5d 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [1380 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message RESPONSE from shim +orderer.example.com | [e5e 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [e5f 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [1381 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [e60 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [1382 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]before send +orderer.example.com | [e61 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420824ce0) start: > stop: > from 172.18.0.8:50340 +peer0.org1.example.com | [1383 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]after send +orderer.example.com | [e62 01-13 06:15:04.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 | [1384 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [84081219]Received RESPONSE, communicated (state:ready) +orderer.example.com | [e63 01-13 06:15:04.25 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=[60299] +peer0.org1.example.com | [1385 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [84081219]Received RESPONSE. Successfully got range +orderer.example.com | [e64 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +peer0.org1.example.com | [1386 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [84081219]Sending QUERY_STATE_CLOSE +orderer.example.com | [e65 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +orderer.example.com | [e66 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +peer0.org1.example.com | [1387 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message QUERY_STATE_CLOSE from shim +orderer.example.com | [e67 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420824ce0) for 172.18.0.8:50340 +peer0.org1.example.com | [1388 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +orderer.example.com | [e68 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50340 for (0xc420824ce0) +orderer.example.com | [e69 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50340 +peer0.org1.example.com | [1389 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +orderer.example.com | [e6a 01-13 06:15:04.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.8:50340 +peer0.org1.example.com | [138a 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +orderer.example.com | [e6b 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [138b 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [e6c 01-13 06:15:04.25 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 | [138c 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +orderer.example.com | [e6d 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [138d 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [84081219]handleQueryStateClose serial send RESPONSE +peer0.org1.example.com | [138e 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message RESPONSE from shim +orderer.example.com | [e6e 01-13 06:15:04.25 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 | [e6f 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50340: read: connection reset by peer +orderer.example.com | [e70 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50340: rpc error: code = Canceled desc = context canceled +orderer.example.com | [e71 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [138f 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [1390 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]before send +peer0.org1.example.com | [1391 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]after send +peer0.org1.example.com | [1392 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [84081219]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [1393 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [84081219]Received RESPONSE. Successfully got range +peer0.org1.example.com | [1394 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1395 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Move state message COMPLETED +peer0.org1.example.com | [1396 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1397 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]send state message COMPLETED +peer0.org1.example.com | [1398 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message COMPLETED from shim +peer0.org1.example.com | [1399 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [139a 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [139b 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327, channelID:businesschannel +peer0.org1.example.com | [139c 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [139d 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [139e 01-13 06:14:53.58 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 | [139f 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +peer0.org1.example.com | [13a0 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [13a1 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [13a2 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [13a3 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [13a4 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327,syscc=true,proposal=0xc428814be0,canname=escc:1.1.0 +peer0.org1.example.com | [13a5 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [13a6 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [13a7 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [13a8 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [13a9 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [13aa 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [13ab 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [13ac 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Move state message TRANSACTION +peer0.org1.example.com | [13ad 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [13ae 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [13af 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]sending state message TRANSACTION +peer0.org1.example.com | [13b0 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message TRANSACTION from shim +peer0.org1.example.com | [13b1 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [13b2 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [84081219]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [13b3 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [13b4 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [13b5 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [13b6 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Move state message COMPLETED +peer0.org1.example.com | [13b7 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [13b8 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]send state message COMPLETED +peer0.org1.example.com | [13b9 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message COMPLETED from shim +peer0.org1.example.com | [13ba 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [13bb 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [13bc 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327, channelID:businesschannel +peer0.org1.example.com | [13bd 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [13be 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [13bf 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [13c0 01-13 06:14:53.59 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 [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +peer0.org1.example.com | [13c1 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40200) +peer0.org1.example.com | [13c2 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40202 +peer0.org1.example.com | [13c3 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428aee420 +peer0.org1.example.com | [13c4 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [13c5 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [13c6 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [13c7 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [13c8 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [13c9 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4288ede50, header 0xc428aee780 +peer0.org1.example.com | [13ca 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [13cb 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 +peer0.org1.example.com | [13cc 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +peer0.org1.example.com | [13cd 01-13 06:14:53.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 +peer0.org1.example.com | [13ce 01-13 06:14:53.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 = [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +peer0.org1.example.com | [13cf 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel +peer0.org1.example.com | [13d0 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [13d1 01-13 06:14:53.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.1.0,txid=7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6,syscc=true,proposal=0xc4288ede50,canname=qscc:1.1.0 +peer0.org1.example.com | [13d2 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [13d3 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [13d4 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [13d5 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [13d6 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [13d7 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [13d8 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [13d9 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Move state message TRANSACTION +peer0.org1.example.com | [13da 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [13db 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [13dc 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]sending state message TRANSACTION +peer0.org1.example.com | [13dd 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Received message TRANSACTION from shim +peer0.org1.example.com | [13de 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [13df 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74713044]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [13e0 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [13e1 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [13e2 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Move state message COMPLETED +peer0.org1.example.com | [13e3 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [13e4 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]send state message COMPLETED +peer0.org1.example.com | [13e5 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Received message COMPLETED from shim +peer0.org1.example.com | [13e6 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [13e7 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [13e8 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6, channelID:businesschannel +peer0.org1.example.com | [13e9 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [13ea 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [13eb 01-13 06:14:53.93 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 | [13ec 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +peer0.org1.example.com | [13ed 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [13ee 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [13ef 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [13f0 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [13f1 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6,syscc=true,proposal=0xc4288ede50,canname=escc:1.1.0 +peer0.org1.example.com | [13f2 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [13f3 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [13f4 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [13f5 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [13f6 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [13f7 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [13f8 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [13f9 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Move state message TRANSACTION +peer0.org1.example.com | [13fa 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [13fb 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [13fc 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]sending state message TRANSACTION +peer0.org1.example.com | [13fd 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Received message TRANSACTION from shim +peer0.org1.example.com | [13fe 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [13ff 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74713044]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1400 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1401 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1402 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1403 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Move state message COMPLETED +peer0.org1.example.com | [1404 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1405 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]send state message COMPLETED +peer0.org1.example.com | [1406 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Received message COMPLETED from shim +peer0.org1.example.com | [1407 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1408 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1409 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6, channelID:businesschannel +peer0.org1.example.com | [140a 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [140b 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [140c 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [140d 01-13 06:14:53.94 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 [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +peer0.org1.example.com | [140e 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40202) +peer0.org1.example.com | [140f 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40204 +peer0.org1.example.com | [1410 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428aef650 +peer0.org1.example.com | [1411 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1412 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1413 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [1414 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [1415 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1416 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428b2c500, header 0xc428aef9b0 +peer0.org1.example.com | [1417 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [1418 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 +peer0.org1.example.com | [1419 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +peer0.org1.example.com | [141a 01-13 06:14:54.08 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 | [141b 01-13 06:14:54.08 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 = [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +peer0.org1.example.com | [141c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel +peer0.org1.example.com | [141d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [141e 01-13 06:14:54.08 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.1.0,txid=552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27,syscc=true,proposal=0xc428b2c500,canname=qscc:1.1.0 +peer0.org1.example.com | [141f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1420 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1421 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [1422 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1423 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1424 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1425 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1426 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Move state message TRANSACTION +peer0.org1.example.com | [1427 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1428 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1429 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]sending state message TRANSACTION +peer0.org1.example.com | [142a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Received message TRANSACTION from shim +peer0.org1.example.com | [142b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [142c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [552d0ffd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [142d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +peer0.org1.example.com | [142e 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +peer0.org1.example.com | [142f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[26080] +peer0.org1.example.com | [1430 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[29442], Going to peek [8] bytes +peer0.org1.example.com | [1431 01-13 06:14:54.08 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=[26080], bytesOffset=[26082]} +peer0.org1.example.com | [1432 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1433 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Move state message COMPLETED +peer0.org1.example.com | [1434 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1435 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]send state message COMPLETED +peer0.org1.example.com | [1436 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Received message COMPLETED from shim +peer0.org1.example.com | [1437 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1438 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1439 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27, channelID:businesschannel +peer0.org1.example.com | [143a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [143b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [143c 01-13 06:14:54.08 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 | [143d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +peer0.org1.example.com | [143e 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [143f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [1440 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1441 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1442 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27,syscc=true,proposal=0xc428b2c500,canname=escc:1.1.0 +peer0.org1.example.com | [1443 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1444 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1445 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1446 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1447 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1448 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1449 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [144a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Move state message TRANSACTION +peer0.org1.example.com | [144b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [144c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [144d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]sending state message TRANSACTION +peer0.org1.example.com | [144e 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Received message TRANSACTION from shim +peer0.org1.example.com | [144f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1450 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [552d0ffd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1451 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1452 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1453 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1454 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Move state message COMPLETED +peer0.org1.example.com | [1455 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1456 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]send state message COMPLETED +peer0.org1.example.com | [1457 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Received message COMPLETED from shim +peer0.org1.example.com | [1458 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1459 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [145a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27, channelID:businesschannel +peer0.org1.example.com | [145b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [145c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [145d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [145e 01-13 06:14:54.08 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 [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +peer0.org1.example.com | [145f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40204) +peer0.org1.example.com | [1460 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org1.example.com | [1461 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [1462 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [1463 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org1.example.com | [1464 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc428accc60 env 0xc428abf620 txn 0 +peer0.org1.example.com | [1465 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc428abf620 +peer0.org1.example.com | [1466 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +peer0.org1.example.com | [1467 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1468 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1469 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +peer0.org1.example.com | [146a 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [146b 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [146c 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc428adb000, header channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +peer0.org1.example.com | [146d 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [146e 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [146f 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [1470 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [1471 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer0.org1.example.com | [1472 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [1473 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc428abf620 envbytes 0xc428c3c000 +peer0.org1.example.com | [1474 01-13 06:14:54.15 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 = [dd706bcd-37ff-4bb8-9581-10ff1b431084] +peer0.org1.example.com | [1475 01-13 06:14:54.15 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 | [1476 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [dd706bcd-37ff-4bb8-9581-10ff1b431084] +peer0.org1.example.com | [1477 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc428c3c000 +peer0.org1.example.com | [1478 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [1479 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer0.org1.example.com | [147a 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=191cd131-a388-4521-b263-64748aa5a2d5,syscc=true,proposal=0x0,canname=vscc:1.1.0 +peer0.org1.example.com | [147b 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 chaindID businesschannel +peer0.org1.example.com | [147c 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +peer0.org1.example.com | [147d 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [147e 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +peer0.org1.example.com | [147f 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [191cd131]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1480 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1481 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [191cd131]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1482 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [191cd131]Move state message TRANSACTION +peer0.org1.example.com | [1483 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [191cd131]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1484 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1485 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [191cd131]sending state message TRANSACTION +peer0.org1.example.com | [1486 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]Received message TRANSACTION from shim +peer0.org1.example.com | [1487 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [191cd131]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1488 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [191cd131]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1489 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [148a 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [148b 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [148c 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [148d 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]Move state message COMPLETED +peer0.org1.example.com | [148e 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [191cd131]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [148f 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]send state message COMPLETED +peer0.org1.example.com | [1490 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [191cd131]Received message COMPLETED from shim +peer0.org1.example.com | [1491 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [191cd131]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1492 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [191cd131-a388-4521-b263-64748aa5a2d5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1493 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:191cd131-a388-4521-b263-64748aa5a2d5, channelID:businesschannel +peer0.org1.example.com | [1494 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1495 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +peer0.org1.example.com | [1496 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc428c3c000 +peer0.org1.example.com | [1497 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc428abf620 envbytes 0xc428c3c000 +peer0.org1.example.com | [1498 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc428accc60 env 0xc428abf620 txn 0 +peer0.org1.example.com | [1499 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [149a 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [149b 01-13 06:14:54.17 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 | [149c 01-13 06:14:54.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] +peer0.org1.example.com | [149d 01-13 06:14:54.17 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 | [149e 01-13 06:14:54.17 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 | [149f 01-13 06:14:54.17 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 | [14a0 01-13 06:14:54.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=exp02, key=a +peer0.org1.example.com | [14a1 01-13 06:14:54.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 [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [14a2 01-13 06:14:54.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=exp02, key=b +peer0.org1.example.com | [14a3 01-13 06:14:54.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 [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [14a4 01-13 06:14:54.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 +peer0.org1.example.com | [14a5 01-13 06:14:54.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [14a6 01-13 06:14:54.17 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 [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] marked as valid by state validator +peer0.org1.example.com | [14a7 01-13 06:14:54.17 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 | [14a8 01-13 06:14:54.17 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 | [14a9 01-13 06:14:54.17 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 | [14aa 01-13 06:14:54.17 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 | [14ab 01-13 06:14:54.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 [6] +peer0.org1.example.com | [14ac 01-13 06:14:54.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +peer0.org1.example.com | txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 +peer0.org1.example.com | ] +peer0.org1.example.com | [14ad 01-13 06:14:54.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=55592, bytesLength=2919] for tx ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to index +peer0.org1.example.com | [14ae 01-13 06:14:54.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=55592, bytesLength=2919] for tx number:[0] ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to blockNumTranNum index +peer0.org1.example.com | [14af 01-13 06:14:54.20 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=[60306], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [14b0 01-13 06:14:54.22 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 | [14b1 01-13 06:14:54.23 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 | [14b2 01-13 06:14:54.23 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 | [14b3 01-13 06:14:54.23 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 | [14b4 01-13 06:14:54.23 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 | [14b5 01-13 06:14:54.23 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 | [14b6 01-13 06:14:54.23 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 | [14b7 01-13 06:14:54.23 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 | [14b8 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [14b9 01-13 06:14:54.24 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 | [14ba 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [14bb 01-13 06:14:54.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 [6] +peer0.org1.example.com | [14bc 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [14bd 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 +peer0.org1.example.com | [14be 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [14bf 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [14c0 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [14c1 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [14c2 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [14c3 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [14c4 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [14c5 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [14c6 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [14c7 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53774 +peer0.org1.example.com | [14c8 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428d738f0 +peer0.org1.example.com | [14c9 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [14ca 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [14cb 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [14cc 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [14cd 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [14ce 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428d37c70, header 0xc428d73c50 +peer0.org1.example.com | [14cf 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [14d0 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 +peer0.org1.example.com | [14d1 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +peer0.org1.example.com | [14d2 01-13 06:14:54.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 +peer0.org1.example.com | [14d3 01-13 06:14:54.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 = [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +peer0.org1.example.com | [14d4 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel +peer0.org1.example.com | [14d5 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [14d6 01-13 06:14:54.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=qscc,version=1.1.0,txid=427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549,syscc=true,proposal=0xc428d37c70,canname=qscc:1.1.0 +peer0.org1.example.com | [14d7 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [14d8 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [14d9 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [14da 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [14db 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [14dc 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [14dd 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [14de 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Move state message TRANSACTION +peer0.org1.example.com | [14df 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [14e0 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [14e1 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]sending state message TRANSACTION +peer0.org1.example.com | [14e2 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Received message TRANSACTION from shim +peer0.org1.example.com | [14e3 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [14e4 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [427322b1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [14e5 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [14e6 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [14e7 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Move state message COMPLETED +peer0.org1.example.com | [14e8 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [14e9 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]send state message COMPLETED +peer0.org1.example.com | [14ea 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Received message COMPLETED from shim +peer0.org1.example.com | [14eb 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [14ec 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [14ed 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549, channelID:businesschannel +peer0.org1.example.com | [14ee 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [14ef 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [14f0 01-13 06:14:54.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 +peer0.org1.example.com | [14f1 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +peer0.org1.example.com | [14f2 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [14f3 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [14f4 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [14f5 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [14f6 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549,syscc=true,proposal=0xc428d37c70,canname=escc:1.1.0 +peer0.org1.example.com | [14f7 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [14f8 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [14f9 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [14fa 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [14fb 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [14fc 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [14fd 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [14fe 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Move state message TRANSACTION +peer0.org1.example.com | [14ff 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1500 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1501 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]sending state message TRANSACTION +peer0.org1.example.com | [1502 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Received message TRANSACTION from shim +peer0.org1.example.com | [1503 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1504 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [427322b1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1505 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1506 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1507 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1508 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Move state message COMPLETED +peer0.org1.example.com | [1509 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [150a 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]send state message COMPLETED +peer0.org1.example.com | [150b 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Received message COMPLETED from shim +peer0.org1.example.com | [150c 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [150d 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [150e 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549, channelID:businesschannel +peer0.org1.example.com | [150f 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1510 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1511 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [1512 01-13 06:14:54.50 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 [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +peer0.org1.example.com | [1513 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53774) +peer0.org1.example.com | [1514 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53788 +peer0.org1.example.com | [1515 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4233fe7e0 +peer0.org1.example.com | [1516 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1517 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1518 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [1519 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [151a 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [151b 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423423900, header 0xc4233feb40 +peer0.org1.example.com | [151c 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [151d 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 +peer0.org1.example.com | [151e 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +peer0.org1.example.com | [151f 01-13 06:14:55.55 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 | [1520 01-13 06:14:55.55 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 = [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +peer0.org1.example.com | [1521 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel +peer0.org1.example.com | [1522 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1523 01-13 06:14:55.55 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.1.0,txid=664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17,syscc=true,proposal=0xc423423900,canname=qscc:1.1.0 +peer0.org1.example.com | [1524 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1525 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1526 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [1527 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1528 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1529 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [152a 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [152b 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Move state message TRANSACTION +peer0.org1.example.com | [152c 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [152d 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [152e 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]sending state message TRANSACTION +peer0.org1.example.com | [152f 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Received message TRANSACTION from shim +peer0.org1.example.com | [1530 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1531 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664f9d27]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1532 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1533 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1534 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Move state message COMPLETED +peer0.org1.example.com | [1535 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1536 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]send state message COMPLETED +peer0.org1.example.com | [1537 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Received message COMPLETED from shim +peer0.org1.example.com | [1538 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1539 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [153a 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17, channelID:businesschannel +peer0.org1.example.com | [153b 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [153c 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [153d 01-13 06:14:55.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 +peer0.org1.example.com | [153e 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +peer0.org1.example.com | [153f 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1540 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [1541 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1542 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1543 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17,syscc=true,proposal=0xc423423900,canname=escc:1.1.0 +peer0.org1.example.com | [1544 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1545 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1546 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1547 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1548 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1549 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [154a 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [154b 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Move state message TRANSACTION +peer0.org1.example.com | [154c 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [154d 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [154e 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]sending state message TRANSACTION +peer0.org1.example.com | [154f 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Received message TRANSACTION from shim +peer0.org1.example.com | [1550 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1551 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664f9d27]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1552 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1553 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1554 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1555 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Move state message COMPLETED +peer0.org1.example.com | [1556 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1557 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]send state message COMPLETED +peer0.org1.example.com | [1558 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Received message COMPLETED from shim +peer0.org1.example.com | [1559 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [155a 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [155b 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17, channelID:businesschannel +peer0.org1.example.com | [155c 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [155d 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [155e 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [155f 01-13 06:14:55.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 [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +peer0.org1.example.com | [1560 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53788) +peer0.org1.example.com | [1561 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53804 +peer0.org1.example.com | [1562 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42306f470 +peer0.org1.example.com | [1563 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1564 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1565 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [1566 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [1567 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1568 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422ffd450, header 0xc42306f7d0 +peer0.org1.example.com | [1569 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [156a 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 +peer0.org1.example.com | [156b 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +peer0.org1.example.com | [156c 01-13 06:14:56.64 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 | [156d 01-13 06:14:56.64 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 = [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +peer0.org1.example.com | [156e 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel +peer0.org1.example.com | [156f 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1570 01-13 06:14:56.64 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.1.0,txid=1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4,syscc=true,proposal=0xc422ffd450,canname=qscc:1.1.0 +peer0.org1.example.com | [1571 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1572 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1573 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [1574 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1575 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1576 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1577 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1578 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Move state message TRANSACTION +peer0.org1.example.com | [1579 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [157a 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [157b 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]sending state message TRANSACTION +peer0.org1.example.com | [157c 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Received message TRANSACTION from shim +peer0.org1.example.com | [157d 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [157e 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1d69deaf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [157f 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1580 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1581 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Move state message COMPLETED +peer0.org1.example.com | [1582 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1583 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]send state message COMPLETED +peer0.org1.example.com | [1584 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Received message COMPLETED from shim +peer0.org1.example.com | [1585 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1586 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1587 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4, channelID:businesschannel +peer0.org1.example.com | [1588 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1589 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [158a 01-13 06:14:56.65 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 | [158b 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +peer0.org1.example.com | [158c 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [158d 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [158e 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [158f 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1590 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4,syscc=true,proposal=0xc422ffd450,canname=escc:1.1.0 +peer0.org1.example.com | [1591 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1592 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1593 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1594 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1595 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1596 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1597 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1598 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Move state message TRANSACTION +peer0.org1.example.com | [1599 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [159a 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [159b 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]sending state message TRANSACTION +peer0.org1.example.com | [159c 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Received message TRANSACTION from shim +peer0.org1.example.com | [159d 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [159e 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1d69deaf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [159f 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [15a0 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [15a1 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [15a2 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Move state message COMPLETED +peer0.org1.example.com | [15a3 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [15a4 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]send state message COMPLETED +peer0.org1.example.com | [15a5 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Received message COMPLETED from shim +peer0.org1.example.com | [15a6 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [15a7 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [15a8 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4, channelID:businesschannel +peer0.org1.example.com | [15a9 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [15aa 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [15ab 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [15ac 01-13 06:14:56.67 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 [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +peer0.org1.example.com | [15ad 01-13 06:14:56.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53804) +peer0.org1.example.com | [15ae 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53806 +peer0.org1.example.com | [15af 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422da5bf0 +peer0.org1.example.com | [15b0 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [15b1 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [15b2 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [15b3 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [15b4 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [15b5 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422d67e50, header 0xc422da5f50 +peer0.org1.example.com | [15b6 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [15b7 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e +peer0.org1.example.com | [15b8 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +peer0.org1.example.com | [15b9 01-13 06:14:57.71 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 | [15ba 01-13 06:14:57.71 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 = [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +peer0.org1.example.com | [15bb 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel +peer0.org1.example.com | [15bc 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [15bd 01-13 06:14:57.71 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.1.0,txid=f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e,syscc=true,proposal=0xc422d67e50,canname=qscc:1.1.0 +peer0.org1.example.com | [15be 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [15bf 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [15c0 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [15c1 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [15c2 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [15c3 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [15c4 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [15c5 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Move state message TRANSACTION +peer0.org1.example.com | [15c6 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [15c7 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [15c8 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]sending state message TRANSACTION +peer0.org1.example.com | [15c9 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Received message TRANSACTION from shim +peer0.org1.example.com | [15ca 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [15cb 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f5975568]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [15cc 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [15cd 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [15ce 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Move state message COMPLETED +peer0.org1.example.com | [15cf 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [15d0 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]send state message COMPLETED +peer0.org1.example.com | [15d1 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Received message COMPLETED from shim +peer0.org1.example.com | [15d2 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [15d3 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [15d4 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e, channelID:businesschannel +peer0.org1.example.com | [15d5 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [15d6 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [15d7 01-13 06:14:57.72 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 | [15d8 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +peer0.org1.example.com | [15d9 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [15da 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [15db 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [15dc 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [15dd 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e,syscc=true,proposal=0xc422d67e50,canname=escc:1.1.0 +peer0.org1.example.com | [15de 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [15df 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [15e0 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [15e1 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [15e2 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [15e3 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [15e4 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [15e5 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Move state message TRANSACTION +peer0.org1.example.com | [15e6 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [15e7 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [15e8 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]sending state message TRANSACTION +peer0.org1.example.com | [15e9 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Received message TRANSACTION from shim +peer0.org1.example.com | [15ea 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [15eb 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f5975568]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [15ec 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [15ed 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [15ee 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [15ef 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Move state message COMPLETED +peer0.org1.example.com | [15f0 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [15f1 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]send state message COMPLETED +peer0.org1.example.com | [15f2 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Received message COMPLETED from shim +peer0.org1.example.com | [15f3 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [15f4 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [15f5 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e, channelID:businesschannel +peer0.org1.example.com | [15f6 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [15f7 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [15f8 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [15f9 01-13 06:14:57.72 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 [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +peer0.org1.example.com | [15fa 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53806) +peer0.org1.example.com | [15fb 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53808 +peer0.org1.example.com | [15fc 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422d42d50 +peer0.org1.example.com | [15fd 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [15fe 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [15ff 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [1600 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [1601 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1602 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422cb11d0, header 0xc422d430b0 +peer0.org1.example.com | [1603 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [1604 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 +peer0.org1.example.com | [1605 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +peer0.org1.example.com | [1606 01-13 06:14:58.76 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 | [1607 01-13 06:14:58.76 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 = [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +peer0.org1.example.com | [1608 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel +peer0.org1.example.com | [1609 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [160a 01-13 06:14:58.76 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.1.0,txid=ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087,syscc=true,proposal=0xc422cb11d0,canname=qscc:1.1.0 +peer0.org1.example.com | [160b 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [160c 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [160d 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [160e 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [160f 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1610 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1611 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1612 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Move state message TRANSACTION +peer0.org1.example.com | [1613 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1614 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1615 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]sending state message TRANSACTION +peer0.org1.example.com | [1616 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Received message TRANSACTION from shim +peer0.org1.example.com | [1617 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1618 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ece50b1e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1619 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [161a 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [161b 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Move state message COMPLETED +peer0.org1.example.com | [161c 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [161d 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]send state message COMPLETED +peer0.org1.example.com | [161e 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Received message COMPLETED from shim +peer0.org1.example.com | [161f 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1620 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1621 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087, channelID:businesschannel +peer0.org1.example.com | [1622 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1623 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1624 01-13 06:14:58.76 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 | [1625 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +peer0.org1.example.com | [1626 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1627 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [1628 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1629 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [162a 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087,syscc=true,proposal=0xc422cb11d0,canname=escc:1.1.0 +peer0.org1.example.com | [162b 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [162c 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [162d 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [162e 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [162f 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1630 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1631 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1632 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Move state message TRANSACTION +peer0.org1.example.com | [1633 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1634 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1635 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]sending state message TRANSACTION +peer0.org1.example.com | [1636 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Received message TRANSACTION from shim +peer0.org1.example.com | [1637 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1638 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ece50b1e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1639 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [163a 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [163b 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [163c 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Move state message COMPLETED +peer0.org1.example.com | [163d 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [163e 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]send state message COMPLETED +peer0.org1.example.com | [163f 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Received message COMPLETED from shim +peer0.org1.example.com | [1640 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1641 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1642 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087, channelID:businesschannel +peer0.org1.example.com | [1643 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1644 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1645 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [1646 01-13 06:14:58.77 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 [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +peer0.org1.example.com | [1647 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53808) +peer0.org1.example.com | [1648 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53810 +peer0.org1.example.com | [1649 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422ade9f0 +peer0.org1.example.com | [164a 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [164b 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [164c 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [164d 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [164e 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [164f 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ebdb30, header 0xc422adede0 +peer0.org1.example.com | [1650 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [1651 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd +peer0.org1.example.com | [1652 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +peer0.org1.example.com | [1653 01-13 06:14:59.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 | [1654 01-13 06:14:59.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 = [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +peer0.org1.example.com | [1655 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel +peer0.org1.example.com | [1656 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1657 01-13 06:14:59.80 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.1.0,txid=4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd,syscc=true,proposal=0xc421ebdb30,canname=qscc:1.1.0 +peer0.org1.example.com | [1658 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1659 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [165a 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [165b 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [165c 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [165d 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [165e 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [165f 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Move state message TRANSACTION +peer0.org1.example.com | [1660 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1661 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1662 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]sending state message TRANSACTION +peer0.org1.example.com | [1663 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Received message TRANSACTION from shim +peer0.org1.example.com | [1664 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1665 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4aec073b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1666 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1667 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1668 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Move state message COMPLETED +peer0.org1.example.com | [1669 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [166a 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]send state message COMPLETED +peer0.org1.example.com | [166b 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Received message COMPLETED from shim +peer0.org1.example.com | [166c 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [166d 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [166e 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd, channelID:businesschannel +peer0.org1.example.com | [166f 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1670 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1671 01-13 06:14:59.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 | [1672 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +peer0.org1.example.com | [1673 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1674 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [1675 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1676 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1677 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd,syscc=true,proposal=0xc421ebdb30,canname=escc:1.1.0 +peer0.org1.example.com | [1678 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1679 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [167a 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [167b 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [167c 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [167d 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [167e 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [167f 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Move state message TRANSACTION +peer0.org1.example.com | [1680 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1681 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1682 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]sending state message TRANSACTION +peer0.org1.example.com | [1683 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Received message TRANSACTION from shim +peer0.org1.example.com | [1684 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1685 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4aec073b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1686 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1687 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1688 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1689 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Move state message COMPLETED +peer0.org1.example.com | [168a 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [168b 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]send state message COMPLETED +peer0.org1.example.com | [168c 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Received message COMPLETED from shim +peer0.org1.example.com | [168d 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [168e 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [168f 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd, channelID:businesschannel +peer0.org1.example.com | [1690 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1691 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1692 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [1693 01-13 06:14:59.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 [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +peer0.org1.example.com | [1694 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53810) +peer0.org1.example.com | [1695 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53822 +peer0.org1.example.com | [1696 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421aafe30 +peer0.org1.example.com | [1697 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1698 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1699 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [169a 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [169b 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [169c 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421979590, header 0xc4219f6210 +peer0.org1.example.com | [169d 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [169e 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a +peer0.org1.example.com | [169f 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +peer0.org1.example.com | [16a0 01-13 06:15:00.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 +peer0.org1.example.com | [16a1 01-13 06:15:00.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 = [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +peer0.org1.example.com | [16a2 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel +peer0.org1.example.com | [16a3 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [16a4 01-13 06:15:00.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.1.0,txid=10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a,syscc=true,proposal=0xc421979590,canname=qscc:1.1.0 +peer0.org1.example.com | [16a5 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [16a6 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [16a7 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [16a8 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [16a9 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [16aa 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [16ab 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [16ac 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Move state message TRANSACTION +peer0.org1.example.com | [16ad 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [16ae 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [16af 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]sending state message TRANSACTION +peer0.org1.example.com | [16b0 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Received message TRANSACTION from shim +peer0.org1.example.com | [16b1 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [16b2 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10630ec3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [16b3 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [16b4 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [16b5 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Move state message COMPLETED +peer0.org1.example.com | [16b6 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [16b7 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]send state message COMPLETED +peer0.org1.example.com | [16b8 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Received message COMPLETED from shim +peer0.org1.example.com | [16b9 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [16ba 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [16bb 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a, channelID:businesschannel +peer0.org1.example.com | [16bc 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [16bd 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [16be 01-13 06:15:00.93 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 | [16bf 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +peer0.org1.example.com | [16c0 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [16c1 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [16c2 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [16c3 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [16c4 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a,syscc=true,proposal=0xc421979590,canname=escc:1.1.0 +peer0.org1.example.com | [16c5 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [16c6 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [16c7 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [16c8 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [16c9 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [16ca 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [16cb 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [16cc 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Move state message TRANSACTION +peer0.org1.example.com | [16cd 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [16ce 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [16cf 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]sending state message TRANSACTION +peer0.org1.example.com | [16d0 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Received message TRANSACTION from shim +peer0.org1.example.com | [16d1 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [16d2 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10630ec3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [16d3 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [16d4 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [16d5 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [16d6 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Move state message COMPLETED +peer0.org1.example.com | [16d7 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [16d8 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]send state message COMPLETED +peer0.org1.example.com | [16d9 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Received message COMPLETED from shim +peer0.org1.example.com | [16da 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [16db 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [16dc 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a, channelID:businesschannel +peer0.org1.example.com | [16dd 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [16de 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [16df 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [16e0 01-13 06:15:00.93 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 [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +peer0.org1.example.com | [16e1 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53822) +peer0.org1.example.com | [16e2 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53828 +peer0.org1.example.com | [16e3 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421868750 +peer0.org1.example.com | [16e4 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [16e5 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [16e6 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [16e7 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [16e8 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [16e9 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4203ca550, header 0xc421868ab0 +peer0.org1.example.com | [16ea 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [16eb 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 +peer0.org1.example.com | [16ec 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +peer0.org1.example.com | [16ed 01-13 06:15:01.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 | [16ee 01-13 06:15:01.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 = [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +peer0.org1.example.com | [16ef 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel +peer0.org1.example.com | [16f0 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [16f1 01-13 06:15:01.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=qscc,version=1.1.0,txid=0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265,syscc=true,proposal=0xc4203ca550,canname=qscc:1.1.0 +peer0.org1.example.com | [16f2 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [16f3 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [16f4 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [16f5 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [16f6 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [16f7 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [16f8 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [16f9 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Move state message TRANSACTION +peer0.org1.example.com | [16fa 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [16fb 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [16fc 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]sending state message TRANSACTION +peer0.org1.example.com | [16fd 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Received message TRANSACTION from shim +peer0.org1.example.com | [16fe 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [16ff 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c104c34]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1700 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1701 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1702 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Move state message COMPLETED +peer0.org1.example.com | [1703 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1704 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]send state message COMPLETED +peer0.org1.example.com | [1705 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Received message COMPLETED from shim +peer0.org1.example.com | [1706 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1707 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1708 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265, channelID:businesschannel +peer0.org1.example.com | [1709 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [170a 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [170b 01-13 06:15:01.98 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 | [170c 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +peer0.org1.example.com | [170d 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [170e 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [170f 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1710 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1711 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265,syscc=true,proposal=0xc4203ca550,canname=escc:1.1.0 +peer0.org1.example.com | [1712 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1713 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1714 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1715 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1716 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1717 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1718 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1719 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Move state message TRANSACTION +peer0.org1.example.com | [171a 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [171b 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [171c 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]sending state message TRANSACTION +peer0.org1.example.com | [171d 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Received message TRANSACTION from shim +peer0.org1.example.com | [171e 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [171f 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c104c34]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1720 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1721 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1722 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1723 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Move state message COMPLETED +peer0.org1.example.com | [1724 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1725 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]send state message COMPLETED +peer0.org1.example.com | [1726 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Received message COMPLETED from shim +peer0.org1.example.com | [1727 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1728 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1729 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265, channelID:businesschannel +peer0.org1.example.com | [172a 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [172b 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [172c 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [172d 01-13 06:15:01.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 [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +peer0.org1.example.com | [172e 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53828) +peer0.org1.example.com | [172f 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] +peer0.org1.example.com | [1730 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] +peer0.org1.example.com | [1731 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [1732 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [1733 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4203bb2a0 env 0xc42037c1e0 txn 0 +peer0.org1.example.com | [1734 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42037c1e0 +peer0.org1.example.com | [1735 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer0.org1.example.com | [1736 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1737 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1738 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +peer0.org1.example.com | [1739 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [173a 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [173b 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422770a80, header channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +peer0.org1.example.com | [173c 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [173d 01-13 06:15:02.09 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 | [173e 01-13 06:15:02.09 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 | [173f 01-13 06:15:02.09 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 | [1740 01-13 06:15:02.09 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 | [1741 01-13 06:15:02.09 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 | [1742 01-13 06:15:02.09 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 | [1743 01-13 06:15:02.09 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 | [1744 01-13 06:15:02.09 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 | [1745 01-13 06:15:02.09 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 | [1746 01-13 06:15:02.09 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 | [1747 01-13 06:15:02.09 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 | [1748 01-13 06:15:02.09 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 | [1749 01-13 06:15:02.09 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 | [174a 01-13 06:15:02.09 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 | [174b 01-13 06:15:02.09 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 | [174c 01-13 06:15:02.09 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 | [174d 01-13 06:15:02.09 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 | [174e 01-13 06:15:02.09 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 | [174f 01-13 06:15:02.09 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 | [1750 01-13 06:15:02.09 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 | [1751 01-13 06:15:02.09 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 | [1752 01-13 06:15:02.09 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 | [1753 01-13 06:15:02.09 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 | [1754 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer0.org1.example.com | [1755 01-13 06:15:02.09 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 | [1756 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [1757 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [1758 01-13 06:15:02.10 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 | [1759 01-13 06:15:02.10 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 | [175a 01-13 06:15:02.10 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 | [175b 01-13 06:15:02.13 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 | [175c 01-13 06:15:02.13 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 | [175d 01-13 06:15:02.13 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 | [175e 01-13 06:15:02.13 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 | [175f 01-13 06:15:02.13 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 | [1760 01-13 06:15:02.13 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 | [1761 01-13 06:15:02.13 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 | [1762 01-13 06:15:02.13 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 | [1763 01-13 06:15:02.13 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 | [1764 01-13 06:15:02.14 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 | [1765 01-13 06:15:02.14 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 | [1766 01-13 06:15:02.14 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 | [1767 01-13 06:15:02.14 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 | [1768 01-13 06:15:02.14 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 | [1769 01-13 06:15:02.14 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 | [176a 01-13 06:15:02.14 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 | [176b 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [176c 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [176d 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [176e 01-13 06:15:02.14 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 | [176f 01-13 06:15:02.14 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 | [1770 01-13 06:15:02.14 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 | [1771 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [1772 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [1773 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [1774 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [1775 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [1776 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [1777 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [1778 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [1779 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [177a 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [177b 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [177c 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [177d 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [177e 01-13 06:15:02.14 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 | [177f 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1780 01-13 06:15:02.14 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 | [1781 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [1782 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [1783 01-13 06:15:02.15 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 | [1784 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [1785 01-13 06:15:02.15 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 | [1786 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1787 01-13 06:15:02.15 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 | [1788 01-13 06:15:02.15 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 | [1789 01-13 06:15:02.15 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 | [178a 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [178b 01-13 06:15:02.15 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 | [178c 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [178d 01-13 06:15:02.15 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 | [178e 01-13 06:15:02.15 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 | [178f 01-13 06:15:02.15 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 | [1790 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [1791 01-13 06:15:02.15 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 | [1792 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1793 01-13 06:15:02.15 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 | [1794 01-13 06:15:02.16 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 | [1795 01-13 06:15:02.16 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 | [1796 01-13 06:15:02.16 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 | [1797 01-13 06:15:02.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 +peer0.org1.example.com | [1798 01-13 06:15:02.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 +peer0.org1.example.com | [1799 01-13 06:15:02.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 +peer0.org1.example.com | [179a 01-13 06:15:02.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 +peer0.org1.example.com | [179b 01-13 06:15:02.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 +peer0.org1.example.com | [179c 01-13 06:15:02.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 +peer0.org1.example.com | [179d 01-13 06:15:02.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 +peer0.org1.example.com | [179e 01-13 06:15:02.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 +peer0.org1.example.com | [179f 01-13 06:15:02.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 +peer0.org1.example.com | [17a0 01-13 06:15:02.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 +peer0.org1.example.com | [17a1 01-13 06:15:02.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 +peer0.org1.example.com | [17a2 01-13 06:15:02.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 +peer0.org1.example.com | [17a3 01-13 06:15:02.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 +peer0.org1.example.com | [17a4 01-13 06:15:02.17 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 | [17a5 01-13 06:15:02.17 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 | [17a6 01-13 06:15:02.17 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 | [17a7 01-13 06:15:02.17 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 | [17a8 01-13 06:15:02.17 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 | [17a9 01-13 06:15:02.17 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 | [17aa 01-13 06:15:02.17 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 | [17ab 01-13 06:15:02.17 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 | [17ac 01-13 06:15:02.17 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 | [17ad 01-13 06:15:02.17 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 | [17ae 01-13 06:15:02.17 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 | [17af 01-13 06:15:02.17 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 | [17b0 01-13 06:15:02.17 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 | [17b1 01-13 06:15:02.17 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 | [17b2 01-13 06:15:02.17 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 | [17b3 01-13 06:15:02.17 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 | [17b4 01-13 06:15:02.17 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 | [17b5 01-13 06:15:02.17 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 | [17b6 01-13 06:15:02.17 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 | [17b7 01-13 06:15:02.17 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 | [17b8 01-13 06:15:02.17 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 | [17b9 01-13 06:15:02.17 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 | [17ba 01-13 06:15:02.17 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 | [17bb 01-13 06:15:02.17 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 | [17bc 01-13 06:15:02.18 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 | [17bd 01-13 06:15:02.18 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 | [17be 01-13 06:15:02.18 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 | [17bf 01-13 06:15:02.18 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 | [17c0 01-13 06:15:02.18 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 | [17c1 01-13 06:15:02.18 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 | [17c2 01-13 06:15:02.18 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 | [17c3 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [17c4 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [17c5 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [17c6 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [17c7 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [17c8 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [17c9 01-13 06:15:02.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +peer0.org1.example.com | [17ca 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [17cb 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [17cc 01-13 06:15:02.21 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 | [17cd 01-13 06:15:02.21 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 | [17ce 01-13 06:15:02.21 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 | [17cf 01-13 06:15:02.21 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 | [17d0 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [17d1 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4203bb2a0 env 0xc42037c1e0 txn 0 +peer0.org1.example.com | [17d2 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [17d3 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [17d4 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [17d5 01-13 06:15:02.22 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 | [17d6 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [17d7 01-13 06:15:02.22 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 | [17d8 01-13 06:15:02.22 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 | [17d9 01-13 06:15:02.22 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 | [17da 01-13 06:15:02.22 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 | [17db 01-13 06:15:02.22 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 | [17dc 01-13 06:15:02.22 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 | [17dd 01-13 06:15:02.22 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 | [17de 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [17df 01-13 06:15:02.22 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 | [17e0 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [17e1 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [17e2 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [17e3 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [17e4 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [17e5 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [17e6 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [17e7 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [17e8 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [17e9 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [17ea 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [17eb 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [17ec 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [17ed 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [17ee 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [17ef 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [17f0 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [17f1 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [17f2 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [17f3 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [17f4 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [17f5 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [17f6 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [17f7 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [17f8 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [17f9 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [17fa 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [17fb 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [17fc 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer0.org1.example.com | [17fd 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer0.org1.example.com | [17fe 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [17ff 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [1800 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [1801 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1802 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [1803 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [1804 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [1805 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [1806 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [1807 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [1808 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [1809 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [180a 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [180b 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [180c 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org1.example.com | [180d 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org1.example.com | [180e 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [180f 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org1.example.com | [1810 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [1811 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [1812 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [1813 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [1814 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [1815 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [1816 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [1817 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [1818 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [1819 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [181a 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [181b 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [181c 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [181d 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [181e 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [181f 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [1820 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1821 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [1822 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [1823 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [1824 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [1825 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [1826 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [1827 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [1828 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [1829 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [182a 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [182b 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [182c 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [182d 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [182e 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [182f 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [1830 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [1831 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [1832 01-13 06:15:02.24 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 | [1833 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [1834 01-13 06:15:02.24 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 | [1835 01-13 06:15:02.24 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 | [1836 01-13 06:15:02.24 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 | [1837 01-13 06:15:02.24 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 | [1838 01-13 06:15:02.24 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 | [1839 01-13 06:15:02.24 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 | [183a 01-13 06:15:02.30 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 | [183b 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org2.example.com:7051, PKIid:[136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48] isn't responsive: rpc error: code = Unavailable desc = transport is closing +peer0.org1.example.com | [183c 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48]] +peer0.org1.example.com | [183d 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org2.example.com:7051, InternalEndpoint: , PKI-ID: [136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48], Metadata: [] +peer0.org1.example.com | [183e 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer0.org1.example.com | [183f 01-13 06:15:02.33 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{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +peer0.org1.example.com | txId= locPointer=offset=71, bytesLength=19402 +peer0.org1.example.com | ] +peer0.org1.example.com | [1840 01-13 06:15:02.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=60377, bytesLength=19402] for tx ID: [] to index +peer0.org1.example.com | [1841 01-13 06:15:02.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=60377, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [1842 01-13 06:15:02.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] +peer0.org1.example.com | [1843 01-13 06:15:02.38 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 | [1844 01-13 06:15:02.39 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 | [1845 01-13 06:15:02.39 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 | [1846 01-13 06:15:02.39 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 | [1847 01-13 06:15:02.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 | [1848 01-13 06:15:02.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 | [1849 01-13 06:15:02.39 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 | [184a 01-13 06:15:02.40 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 | [184b 01-13 06:15:02.42 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 | [184c 01-13 06:15:02.42 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 | [184d 01-13 06:15:02.42 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 | [184e 01-13 06:15:02.42 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 | [184f 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [1850 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [1851 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [1852 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [1853 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [1854 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [1855 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [1856 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [1857 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [1858 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [1859 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53850 +peer0.org1.example.com | [185a 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4287a6930 +peer0.org1.example.com | [185b 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [185c 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [185d 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [185e 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [185f 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1860 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428e9d400, header 0xc4287a6c90 +peer0.org1.example.com | [1861 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [1862 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd +peer0.org1.example.com | [1863 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +peer0.org1.example.com | [1864 01-13 06:15:03.03 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 | [1865 01-13 06:15:03.03 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 = [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +peer0.org1.example.com | [1866 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel +peer0.org1.example.com | [1867 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1868 01-13 06:15:03.03 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.1.0,txid=664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd,syscc=true,proposal=0xc428e9d400,canname=qscc:1.1.0 +peer0.org1.example.com | [1869 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [186a 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [186b 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [186c 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [186d 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [186e 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [186f 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1870 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Move state message TRANSACTION +peer0.org1.example.com | [1871 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1872 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1873 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]sending state message TRANSACTION +peer0.org1.example.com | [1874 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Received message TRANSACTION from shim +peer0.org1.example.com | [1875 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1876 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664b8a22]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1877 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1878 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1879 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Move state message COMPLETED +peer0.org1.example.com | [187a 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [187b 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]send state message COMPLETED +peer0.org1.example.com | [187c 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Received message COMPLETED from shim +peer0.org1.example.com | [187d 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [187e 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [187f 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd, channelID:businesschannel +peer0.org1.example.com | [1880 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1881 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1882 01-13 06:15:03.03 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 | [1883 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +peer0.org1.example.com | [1884 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [1885 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [1886 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1887 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1888 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd,syscc=true,proposal=0xc428e9d400,canname=escc:1.1.0 +peer0.org1.example.com | [1889 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [188a 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [188b 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [188c 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [188d 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [188e 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [188f 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1890 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Move state message TRANSACTION +peer0.org1.example.com | [1891 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1892 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1893 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]sending state message TRANSACTION +peer0.org1.example.com | [1894 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Received message TRANSACTION from shim +peer0.org1.example.com | [1895 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1896 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664b8a22]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1897 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1898 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1899 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [189a 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Move state message COMPLETED +peer0.org1.example.com | [189b 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [189c 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]send state message COMPLETED +peer0.org1.example.com | [189d 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Received message COMPLETED from shim +peer0.org1.example.com | [189e 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [189f 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [18a0 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd, channelID:businesschannel +peer0.org1.example.com | [18a1 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [18a2 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [18a3 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [18a4 01-13 06:15:03.04 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 [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +peer0.org1.example.com | [18a5 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53850) +peer0.org1.example.com | [18a6 01-13 06:15:04.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53852 +peer0.org1.example.com | [18a7 01-13 06:15:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4285520f0 +peer0.org1.example.com | [18a8 01-13 06:15:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [18a9 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [18aa 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [18ab 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [18ac 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [18ad 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428793630, header 0xc428552450 +peer0.org1.example.com | [18ae 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [18af 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 +peer0.org1.example.com | [18b0 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +peer0.org1.example.com | [18b1 01-13 06:15:04.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 | [18b2 01-13 06:15:04.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 = [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +peer0.org1.example.com | [18b3 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel +peer0.org1.example.com | [18b4 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [18b5 01-13 06:15:04.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=qscc,version=1.1.0,txid=1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636,syscc=true,proposal=0xc428793630,canname=qscc:1.1.0 +peer0.org1.example.com | [18b6 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [18b7 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [18b8 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [18b9 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [18ba 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [18bb 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [18bc 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [18bd 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Move state message TRANSACTION +peer0.org1.example.com | [18be 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [18bf 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [18c0 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]sending state message TRANSACTION +peer0.org1.example.com | [18c1 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Received message TRANSACTION from shim +peer0.org1.example.com | [18c2 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [18c3 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c2ac0eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [18c4 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [18c5 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [18c6 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Move state message COMPLETED +peer0.org1.example.com | [18c7 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [18c8 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]send state message COMPLETED +peer0.org1.example.com | [18c9 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Received message COMPLETED from shim +peer0.org1.example.com | [18ca 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [18cb 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [18cc 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636, channelID:businesschannel +peer0.org1.example.com | [18cd 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [18ce 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [18cf 01-13 06:15:04.11 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 | [18d0 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +peer0.org1.example.com | [18d1 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [18d2 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [18d3 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [18d4 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [18d5 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636,syscc=true,proposal=0xc428793630,canname=escc:1.1.0 +peer0.org1.example.com | [18d6 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [18d7 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [18d8 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [18d9 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [18da 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [18db 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [18dc 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [18dd 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Move state message TRANSACTION +peer0.org1.example.com | [18de 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [18df 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [18e0 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]sending state message TRANSACTION +peer0.org1.example.com | [18e1 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Received message TRANSACTION from shim +peer0.org1.example.com | [18e2 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [18e3 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c2ac0eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [18e4 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [18e5 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [18e6 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [18e7 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Move state message COMPLETED +peer0.org1.example.com | [18e8 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [18e9 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]send state message COMPLETED +peer0.org1.example.com | [18ea 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Received message COMPLETED from shim +peer0.org1.example.com | [18eb 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [18ec 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [18ed 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636, channelID:businesschannel +peer0.org1.example.com | [18ee 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [18ef 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [18f0 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [18f1 01-13 06:15:04.12 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 [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +peer0.org1.example.com | [18f2 01-13 06:15:04.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53852) +peer0.org1.example.com | [18f3 01-13 06:15:05.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53860 +peer0.org1.example.com | [18f4 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427c591d0 +peer0.org1.example.com | [18f5 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [18f6 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [18f7 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [18f8 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [18f9 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [18fa 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422667a40, header 0xc427c59590 +peer0.org1.example.com | [18fb 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [18fc 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b +peer0.org1.example.com | [18fd 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b] +peer0.org1.example.com | [18fe 01-13 06:15:05.17 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 | [18ff 01-13 06:15:05.17 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 = [bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b] +peer0.org1.example.com | [1900 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b channel id: businesschannel +peer0.org1.example.com | [1901 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1902 01-13 06:15:05.17 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.1.0,txid=bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b,syscc=true,proposal=0xc422667a40,canname=qscc:1.1.0 +peer0.org1.example.com | [1903 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1904 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1905 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [1906 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bbed0471]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1907 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1908 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1909 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bbed0471]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [190a 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbed0471]Move state message TRANSACTION +peer0.org1.example.com | [190b 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbed0471]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [190c 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [190d 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbed0471]sending state message TRANSACTION +peer0.org1.example.com | [190e 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]Received message TRANSACTION from shim +peer0.org1.example.com | [190f 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbed0471]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1910 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bbed0471]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1911 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [1912 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1913 01-13 06:15:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]Move state message COMPLETED +peer0.org1.example.com | [1914 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbed0471]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1915 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]send state message COMPLETED +peer0.org1.example.com | [1916 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbed0471]Received message COMPLETED from shim +peer0.org1.example.com | [1917 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbed0471]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1918 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1919 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b, channelID:businesschannel +peer0.org1.example.com | [191a 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [191b 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [191c 01-13 06:15:05.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 +peer0.org1.example.com | [191d 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b] +peer0.org1.example.com | [191e 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [191f 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [1920 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [1921 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [1922 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b,syscc=true,proposal=0xc422667a40,canname=escc:1.1.0 +peer0.org1.example.com | [1923 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1924 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1925 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1926 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bbed0471]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1927 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1928 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1929 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bbed0471]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [192a 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbed0471]Move state message TRANSACTION +peer0.org1.example.com | [192b 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbed0471]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [192c 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [192d 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbed0471]sending state message TRANSACTION +peer0.org1.example.com | [192e 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]Received message TRANSACTION from shim +peer0.org1.example.com | [192f 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbed0471]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1930 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bbed0471]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1931 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [1932 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1933 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1934 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]Move state message COMPLETED +peer0.org1.example.com | [1935 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbed0471]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1936 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbed0471]send state message COMPLETED +peer0.org1.example.com | [1937 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbed0471]Received message COMPLETED from shim +peer0.org1.example.com | [1938 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbed0471]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1939 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [193a 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b, channelID:businesschannel +peer0.org1.example.com | [193b 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [193c 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [193d 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [193e 01-13 06:15:05.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 [bbed0471f4e57969fb9cff08af62cbf99798ba9fdf69f00e4f06b15e78df748b] +peer0.org1.example.com | [193f 01-13 06:15:05.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53860) +peer0.org1.example.com | [1940 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53862 +peer0.org1.example.com | [1941 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4227811d0 +peer0.org1.example.com | [1942 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1943 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1944 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +peer0.org1.example.com | [1945 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [1946 01-13 06:15:06.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1947 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202c9cc0, header 0xc422781650 +peer0.org1.example.com | [1948 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [1949 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa +peer0.org1.example.com | [194a 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa] +peer0.org1.example.com | [194b 01-13 06:15:06.22 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 | [194c 01-13 06:15:06.22 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 = [acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa] +peer0.org1.example.com | [194d 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa channel id: businesschannel +peer0.org1.example.com | [194e 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [194f 01-13 06:15:06.22 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.1.0,txid=acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa,syscc=true,proposal=0xc4202c9cc0,canname=qscc:1.1.0 +peer0.org1.example.com | [1950 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +peer0.org1.example.com | [1951 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1952 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +peer0.org1.example.com | [1953 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [acc154c3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1954 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1955 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1956 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [acc154c3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1957 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acc154c3]Move state message TRANSACTION +peer0.org1.example.com | [1958 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acc154c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1959 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [195a 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acc154c3]sending state message TRANSACTION +peer0.org1.example.com | [195b 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]Received message TRANSACTION from shim +peer0.org1.example.com | [195c 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [acc154c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [195d 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [acc154c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [195e 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [195f 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1960 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]Move state message COMPLETED +peer0.org1.example.com | [1961 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [acc154c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1962 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]send state message COMPLETED +peer0.org1.example.com | [1963 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acc154c3]Received message COMPLETED from shim +peer0.org1.example.com | [1964 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acc154c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1965 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1966 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa, channelID:businesschannel +peer0.org1.example.com | [1967 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1968 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [1969 01-13 06:15:06.22 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 | [196a 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa] +peer0.org1.example.com | [196b 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [196c 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [196d 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [196e 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa channel id: businesschannel version: 1.1.0 +peer0.org1.example.com | [196f 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa,syscc=true,proposal=0xc4202c9cc0,canname=escc:1.1.0 +peer0.org1.example.com | [1970 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +peer0.org1.example.com | [1971 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1972 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +peer0.org1.example.com | [1973 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [acc154c3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1974 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1975 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1976 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [acc154c3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1977 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acc154c3]Move state message TRANSACTION +peer0.org1.example.com | [1978 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acc154c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1979 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [197a 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acc154c3]sending state message TRANSACTION +peer0.org1.example.com | [197b 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]Received message TRANSACTION from shim +peer0.org1.example.com | [197c 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [acc154c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [197d 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [acc154c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [197e 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [197f 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [1980 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1981 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]Move state message COMPLETED +peer0.org1.example.com | [1982 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [acc154c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1983 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acc154c3]send state message COMPLETED +peer0.org1.example.com | [1984 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acc154c3]Received message COMPLETED from shim +peer0.org1.example.com | [1985 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acc154c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1986 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1987 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa, channelID:businesschannel +peer0.org1.example.com | [1988 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1989 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [198a 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [198b 01-13 06:15:06.22 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 [acc154c3eaf510c6f5f565e3fa48c8d360f514aa5bb0a2e890278e8ecec53faa] +peer0.org1.example.com | [198c 01-13 06:15:06.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53862) diff --git a/hyperledger_fabric/latest/solo/logs/dev_orderer.log b/hyperledger_fabric/latest/solo/logs/dev_orderer.log index ac4f1d11..5ce44eb3 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/latest/solo/logs/dev_orderer.log @@ -1,21 +1,25 @@ -[001 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[002 01-05 06:36:24.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -[003 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[004 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -[005 01-05 06:36:24.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[006 01-05 06:36:24.06 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -[007 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[008 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -[009 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00a 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -[00b 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[00c 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -[00d 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[00e 01-05 06:36:24.07 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -[00f 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -[010 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -[011 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[012 01-05 06:36:24.08 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----- +[001 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +[002 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] +[003 01-13 06:14:05.26 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +[004 01-13 06:14:05.27 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 +[005 01-13 06:14:05.28 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +[006 01-13 06:14:05.29 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 +[007 01-13 06:14:05.29 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +[008 01-13 06:14:05.30 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 +[009 01-13 06:14:05.30 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +[00a 01-13 06:14:05.31 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] +[00b 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +[00c 01-13 06:14:05.31 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 +[00d 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +[00e 01-13 06:14:05.31 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] +[00f 01-13 06:14:05.31 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +[010 01-13 06:14:05.32 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] +[011 01-13 06:14:05.32 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] +[012 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[013 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.New -> DEBU Creating Cache-MSP instance +[014 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP +[015 01-13 06:14:05.32 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[016 01-13 06:14:05.32 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -29,7 +33,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[013 01-05 06:36:24.08 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----- +[017 01-13 06:14:05.32 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -42,7 +46,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[014 01-05 06:36:24.08 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----- +[018 01-13 06:14:05.51 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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -55,8 +59,8 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[015 01-05 06:36:24.08 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 [75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743] at [/var/hyperledger/orderer/msp/keystore/75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743_sk]... -[016 01-05 06:36:24.08 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----- +[019 01-13 06:14:05.52 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 [75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743] at [/var/hyperledger/orderer/msp/keystore/75d958b1d7b40ea1c2ef94eb702b07836d55a0e23d0d722615af2286865e4743_sk]... +[01a 01-13 06:14:05.52 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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -69,59 +73,59 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[017 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2027-12-27 06:26:39 +0000 UTC -[018 01-05 06:36:24.08 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[019 01-05 06:36:24.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -[01a 01-05 06:36:24.10 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[01b 01-05 06:36:24.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -[01c 01-05 06:36:24.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -[01d 01-05 06:36:24.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists -[01e 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid -[01f 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -[020 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -[021 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -[022 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[023 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[024 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[025 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[026 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[027 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[028 01-05 06:36:24.12 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)(0xc420018a40)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[029 01-05 06:36:24.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[02a 01-05 06:36:24.13 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{0x92, 0xb0, 0xe5, 0xce, 0x4a, 0x40, 0x2e, 0xff, 0xf, 0x90, 0x96, 0x2e, 0xcd, 0x60, 0x60, 0x2e, 0x7, 0x15, 0x63, 0xcd, 0xda, 0x44, 0x28, 0x61, 0x42, 0x8d, 0x7c, 0xd4, 0x4, 0x88, 0xc3, 0x35} txOffsets= +[01b 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2027-12-27 06:26:39 +0000 UTC +[01c 01-13 06:14:05.53 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[01d 01-13 06:14:05.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled +[01e 01-13 06:14:05.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +[01f 01-13 06:14:05.62 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/] +[020 01-13 06:14:05.62 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 +[021 01-13 06:14:05.63 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 +[022 01-13 06:14:05.65 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 +[023 01-13 06:14:05.65 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/] +[024 01-13 06:14:05.65 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 +[025 01-13 06:14:05.65 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 +[026 01-13 06:14:05.65 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 +[027 01-13 06:14:05.65 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 +[028 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[029 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[02a 01-13 06:14:05.65 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 +[02b 01-13 06:14:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[02c 01-13 06:14:05.65 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)(0xc42015ebc0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[02d 01-13 06:14:05.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[02e 01-13 06:14:05.66 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{0x92, 0xb0, 0xe5, 0xce, 0x4a, 0x40, 0x2e, 0xff, 0xf, 0x90, 0x96, 0x2e, 0xcd, 0x60, 0x60, 0x2e, 0x7, 0x15, 0x63, 0xcd, 0xda, 0x44, 0x28, 0x61, 0x42, 0x8d, 0x7c, 0xd4, 0x4, 0x88, 0xc3, 0x35} txOffsets= txId=7fc55cfddbadf5a38b89898b4cbe3922b6ab3033c53ac93290759902e560b661 locPointer=offset=38, bytesLength=9111 ] -[02b 01-05 06:36:24.13 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] -[02c 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[02d 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[02e 01-05 06:36:24.13 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 -[02f 01-05 06:36:24.13 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]} -[030 01-05 06:36:24.13 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] -[031 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[032 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[033 01-05 06:36:24.13 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 -[034 01-05 06:36:24.13 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]} -[035 01-05 06:36:24.13 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] -[036 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[037 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[038 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[039 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[03a 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[03b 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[03c 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[03d 01-05 06:36:24.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[03e 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[03f 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[040 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[041 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[042 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[043 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[044 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[045 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[046 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[047 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[048 01-05 06:36:24.14 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[049 01-05 06:36:24.14 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----- +[02f 01-13 06:14:05.67 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] +[030 01-13 06:14:05.67 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 +[031 01-13 06:14:05.67 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] +[032 01-13 06:14:05.67 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 +[033 01-13 06:14:05.67 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]} +[034 01-13 06:14:05.67 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] +[035 01-13 06:14:05.67 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 +[036 01-13 06:14:05.67 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] +[037 01-13 06:14:05.67 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 +[038 01-13 06:14:05.67 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]} +[039 01-13 06:14:05.67 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] +[03a 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[03b 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[03c 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[03d 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[03e 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[03f 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[040 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[041 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[042 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[043 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[044 01-13 06:14:05.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[045 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[046 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[047 01-13 06:14:05.69 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 +[048 01-13 06:14:05.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[049 01-13 06:14:05.69 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 +[04a 01-13 06:14:05.69 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 +[04b 01-13 06:14:05.69 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 +[04c 01-13 06:14:05.69 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 +[04d 01-13 06:14:05.69 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -135,7 +139,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[04a 01-05 06:36:24.14 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----- +[04e 01-13 06:14:05.70 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -148,52 +152,16 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[04b 01-05 06:36:24.14 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 -[04c 01-05 06:36:24.15 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 -[04d 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[04e 01-05 06:36:24.15 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 -[04f 01-05 06:36:24.15 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 -[050 01-05 06:36:24.15 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 -[051 01-05 06:36:24.15 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 -[052 01-05 06:36:24.15 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 -[053 01-05 06:36:24.15 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 -[054 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -vA2BLfriqQ== ------END CERTIFICATE----- -[055 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -R0L5Jr8878bLU6IcEA== ------END CERTIFICATE----- -[056 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[057 01-05 06:36:24.15 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 -[058 01-05 06:36:24.15 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 -[059 01-05 06:36:24.15 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 -[05a 01-05 06:36:24.15 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 -[05b 01-05 06:36:24.15 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 -[05c 01-05 06:36:24.15 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 -[05d 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[04f 01-13 06:14:05.70 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 +[050 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos +[051 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +[052 01-13 06:14:05.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[053 01-13 06:14:05.71 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 +[054 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[055 01-13 06:14:05.72 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 +[056 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[057 01-13 06:14:05.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[058 01-13 06:14:05.73 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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -208,7 +176,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[05e 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[059 01-13 06:14:05.74 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -222,124 +190,160 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[05f 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[060 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[061 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[062 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[063 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[064 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[065 01-05 06:36:24.15 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[066 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[067 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[068 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[069 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -[06a 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP -[06b 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP -[06c 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP -[06d 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP -[06e 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP -[06f 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -[070 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers -[071 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[072 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[073 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -[074 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[075 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[076 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[077 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[078 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[079 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[07a 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[07b 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[07c 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[07d 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[07e 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[07f 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[080 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[081 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[082 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[083 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[084 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[085 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums -[086 01-05 06:36:24.16 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -[087 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP -[088 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[089 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[08a 01-05 06:36:24.18 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[08b 01-05 06:36:24.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[08c 01-05 06:36:24.19 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP -[08d 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[08e 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[08f 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[090 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[091 01-05 06:36:24.20 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[092 01-05 06:36:24.21 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 -[093 01-05 06:36:24.21 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 -[094 01-05 06:36:24.21 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 -[095 01-05 06:36:24.21 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 -[096 01-05 06:36:24.21 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 -[097 01-05 06:36:24.21 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 -[098 01-05 06:36:24.21 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 -[099 01-05 06:36:24.21 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 -[09a 01-05 06:36:24.21 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' -[09b 01-05 06:36:24.22 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' -[09c 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[09d 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[09e 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[09f 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[0a0 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0a1 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0a2 01-05 06:36:24.22 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 [] -[0a3 01-05 06:36:24.22 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 -[0a4 01-05 06:36:24.22 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' -[0a5 01-05 06:36:24.22 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 -[0a6 01-05 06:36:24.22 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] -[0a7 01-05 06:36:24.22 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 -[0a8 01-05 06:36:24.22 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]} -[0a9 01-05 06:36:24.22 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] -[0aa 01-05 06:36:24.22 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) -[0ab 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -[0ac 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -[0ad 01-05 06:36:24.22 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 -[0ae 01-05 06:36:24.22 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] -[0af 01-05 06:36:24.22 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 -[0b0 01-05 06:36:24.22 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]} -[0b1 01-05 06:36:24.22 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] -[0b2 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 92b0e5ce4a402eff0f90962ecd60602e071563cdda442861428d7cd40488c335 and orderer type solo -[0b3 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +[05a 01-13 06:14:05.76 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 +[05b 01-13 06:14:05.76 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 +[05c 01-13 06:14:05.76 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 +[05d 01-13 06:14:05.76 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 +[05e 01-13 06:14:05.76 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 +[05f 01-13 06:14:05.76 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 +[060 01-13 06:14:05.76 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 +[061 01-13 06:14:05.76 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----- +MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +vA2BLfriqQ== +-----END CERTIFICATE----- +[062 01-13 06:14:05.76 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +R0L5Jr8878bLU6IcEA== +-----END CERTIFICATE----- +[063 01-13 06:14:05.77 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 +[064 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[065 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[066 01-13 06:14:05.78 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 +[067 01-13 06:14:05.78 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 +[068 01-13 06:14:05.78 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 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[06a 01-13 06:14:05.78 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[06b 01-13 06:14:05.79 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 01-13 06:14:05.79 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 01-13 06:14:05.79 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 +[06e 01-13 06:14:05.79 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 +[06f 01-13 06:14:05.79 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 +[070 01-13 06:14:05.80 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 +[071 01-13 06:14:05.80 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 +[072 01-13 06:14:05.80 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 +[073 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +[074 01-13 06:14:05.80 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[075 01-13 06:14:05.80 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 +[076 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[077 01-13 06:14:05.81 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 +[078 01-13 06:14:05.81 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[079 01-13 06:14:05.81 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 +[07a 01-13 06:14:05.81 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 +[07b 01-13 06:14:05.81 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 +[07c 01-13 06:14:05.81 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 +[07d 01-13 06:14:05.81 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 +[07e 01-13 06:14:05.81 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 +[07f 01-13 06:14:05.81 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 +[080 01-13 06:14:05.81 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 +[081 01-13 06:14:05.81 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 +[082 01-13 06:14:05.81 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 +[083 01-13 06:14:05.81 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 +[084 01-13 06:14:05.81 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 +[085 01-13 06:14:05.81 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 +[086 01-13 06:14:05.81 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 +[087 01-13 06:14:05.82 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 01-13 06:14:05.82 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 01-13 06:14:05.82 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 +[08a 01-13 06:14:05.82 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 +[08b 01-13 06:14:05.82 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 +[08c 01-13 06:14:05.83 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 +[08d 01-13 06:14:05.83 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 +[08e 01-13 06:14:05.83 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 +[08f 01-13 06:14:05.83 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 +[090 01-13 06:14:05.83 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 +[091 01-13 06:14:05.83 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 +[092 01-13 06:14:05.83 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 +[093 01-13 06:14:05.83 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 +[094 01-13 06:14:05.83 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 +[095 01-13 06:14:05.83 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 +[096 01-13 06:14:05.83 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 +[097 01-13 06:14:05.83 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 +[098 01-13 06:14:05.83 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 +[099 01-13 06:14:05.83 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 01-13 06:14:05.83 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 01-13 06:14:05.83 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 +[09c 01-13 06:14:05.84 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 +[09d 01-13 06:14:05.84 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 +[09e 01-13 06:14:05.84 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' +[09f 01-13 06:14:05.84 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' +[0a0 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[0a1 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[0a2 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +[0a3 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[0a4 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[0a5 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +[0a6 01-13 06:14:05.84 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 [] +[0a7 01-13 06:14:05.84 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 +[0a8 01-13 06:14:05.84 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' +[0a9 01-13 06:14:05.84 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 +[0aa 01-13 06:14:05.84 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] +[0ab 01-13 06:14:05.84 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 +[0ac 01-13 06:14:05.84 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]} +[0ad 01-13 06:14:05.84 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] +[0ae 01-13 06:14:05.84 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) +[0af 01-13 06:14:05.84 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources +[0b0 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid +[0b1 01-13 06:14:05.85 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 +[0b2 01-13 06:14:05.85 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] +[0b3 01-13 06:14:05.85 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 +[0b4 01-13 06:14:05.85 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]} +[0b5 01-13 06:14:05.85 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] +[0b6 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 92b0e5ce4a402eff0f90962ecd60602e071563cdda442861428d7cd40488c335 and orderer type solo +[0b7 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: Version: 1.1.0 Go version: go1.9.2 OS/Arch: linux/amd64 Experimental features: false -[0b4 01-05 06:36:24.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -[0b5 01-05 06:36:26.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[0b6 01-05 06:36:26.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:44080 -[0b7 01-05 06:36:26.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:44080 -[0b8 01-05 06:36:26.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[0b9 01-05 06:36:26.50 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:44082 -[0ba 01-05 06:36:26.50 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:44082 -[0bb 01-05 06:36:26.50 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 -[0bc 01-05 06:36:26.50 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 -[0bd 01-05 06:36:26.50 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 -[0be 01-05 06:36:26.50 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 -[0bf 01-05 06:36:26.50 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 -[0c0 01-05 06:36:26.50 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 -[0c1 01-05 06:36:26.50 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 -[0c2 01-05 06:36:26.50 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 -[0c3 01-05 06:36:26.50 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 -[0c4 01-05 06:36:26.50 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 -[0c5 01-05 06:36:26.50 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 -[0c6 01-05 06:36:26.50 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 -[0c7 01-05 06:36:26.50 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 -[0c8 01-05 06:36:26.50 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 -[0c9 01-05 06:36:26.50 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 -[0ca 01-05 06:36:26.50 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 -[0cb 01-05 06:36:26.50 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 -[0cc 01-05 06:36:26.50 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 -[0cd 01-05 06:36:26.50 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 -[0ce 01-05 06:36:26.50 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 -[0cf 01-05 06:36:26.50 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 -[0d0 01-05 06:36:26.50 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----- +[0b8 01-13 06:14:05.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests +[0b9 01-13 06:14:10.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[0ba 01-13 06:14:10.11 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50070 +[0bb 01-13 06:14:10.11 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50070 +[0bc 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[0bd 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50072 +[0be 01-13 06:14:10.12 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.8:50072 +[0bf 01-13 06:14:10.12 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 +[0c0 01-13 06:14:10.12 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 +[0c1 01-13 06:14:10.12 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 +[0c2 01-13 06:14:10.12 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 +[0c3 01-13 06:14:10.12 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 +[0c4 01-13 06:14:10.12 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 +[0c5 01-13 06:14:10.12 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 +[0c6 01-13 06:14:10.12 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 +[0c7 01-13 06:14:10.12 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 +[0c8 01-13 06:14:10.12 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 +[0c9 01-13 06:14:10.12 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 +[0ca 01-13 06:14:10.12 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 +[0cb 01-13 06:14:10.12 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 +[0cc 01-13 06:14:10.12 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 +[0cd 01-13 06:14:10.12 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 +[0ce 01-13 06:14:10.12 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 +[0cf 01-13 06:14:10.12 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 +[0d0 01-13 06:14:10.12 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 +[0d1 01-13 06:14:10.12 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 +[0d2 01-13 06:14:10.12 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 +[0d3 01-13 06:14:10.12 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 +[0d4 01-13 06:14:10.12 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -353,7 +357,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[0d1 01-05 06:36:26.50 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----- +[0d5 01-13 06:14:10.12 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -366,19 +370,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[0d2 01-05 06:36:26.50 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 -[0d3 01-05 06:36:26.50 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 -[0d4 01-05 06:36:26.50 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 -[0d5 01-05 06:36:26.50 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 -[0d6 01-05 06:36:26.50 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 -[0d7 01-05 06:36:26.50 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 -[0d8 01-05 06:36:26.50 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 -[0d9 01-05 06:36:26.50 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 -[0da 01-05 06:36:26.50 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 -[0db 01-05 06:36:26.50 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 -[0dc 01-05 06:36:26.50 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 -[0dd 01-05 06:36:26.50 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 -[0de 01-05 06:36:26.50 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----- +[0d6 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[0d7 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[0d8 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0d9 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[0da 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[0db 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0dc 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0dd 01-13 06:14:10.12 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 +[0de 01-13 06:14:10.12 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 +[0df 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0e0 01-13 06:14:10.12 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0e1 01-13 06:14:10.12 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 +[0e2 01-13 06:14:10.12 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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -393,7 +397,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[0df 01-05 06:36:26.51 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----- +[0e3 01-13 06:14:10.13 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -407,17 +411,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[0e0 01-05 06:36:26.51 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 -[0e1 01-05 06:36:26.51 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 -[0e2 01-05 06:36:26.51 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 -[0e3 01-05 06:36:26.51 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 -[0e4 01-05 06:36:26.51 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 -[0e5 01-05 06:36:26.51 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 -[0e6 01-05 06:36:26.51 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 -[0e7 01-05 06:36:26.51 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 -[0e8 01-05 06:36:26.51 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 -[0e9 01-05 06:36:26.51 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 -[0ea 01-05 06:36:26.51 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----- +[0e4 01-13 06:14:10.13 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 +[0e5 01-13 06:14:10.13 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 +[0e6 01-13 06:14:10.13 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 +[0e7 01-13 06:14:10.13 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 +[0e8 01-13 06:14:10.13 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 +[0e9 01-13 06:14:10.13 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 +[0ea 01-13 06:14:10.13 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 +[0eb 01-13 06:14:10.13 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 +[0ec 01-13 06:14:10.13 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 +[0ed 01-13 06:14:10.13 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 +[0ee 01-13 06:14:10.13 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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -432,7 +436,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[0eb 01-05 06:36:26.51 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----- +[0ef 01-13 06:14:10.13 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -446,97 +450,96 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[0ec 01-05 06:36:26.51 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 -[0ed 01-05 06:36:26.51 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) -[0ee 01-05 06:36:26.51 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 -[0ef 01-05 06:36:26.51 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 -[0f0 01-05 06:36:26.51 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 -[0f1 01-05 06:36:26.51 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 -[0f2 01-05 06:36:26.51 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 -[0f3 01-05 06:36:26.51 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 -[0f4 01-05 06:36:26.51 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 -[0f5 01-05 06:36:26.51 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 -[0f6 01-05 06:36:26.51 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 -[0f7 01-05 06:36:26.51 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 -[0f8 01-05 06:36:26.51 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 -[0f9 01-05 06:36:26.51 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 01-05 06:36:26.51 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 01-05 06:36:26.51 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 -[0fc 01-05 06:36:26.51 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 -[0fd 01-05 06:36:26.51 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 -[0fe 01-05 06:36:26.51 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 -[0ff 01-05 06:36:26.51 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 -[100 01-05 06:36:26.51 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 -[101 01-05 06:36:26.51 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 -[102 01-05 06:36:26.51 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 -[103 01-05 06:36:26.51 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 -[104 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[105 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[106 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[107 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[108 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[109 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[10a 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[10b 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[10c 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[10d 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[10e 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[10f 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[110 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[111 01-05 06:36:26.51 UTC] [github.com/hyperledger/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 -[112 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[113 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[114 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[115 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[116 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[117 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[118 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[119 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[11a 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[11b 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[11c 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[11d 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[11e 01-05 06:36:26.52 UTC] [github.com/hyperledger/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 -[11f 01-05 06:36:26.52 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 -[120 01-05 06:36:26.52 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 -[121 01-05 06:36:26.52 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 -[122 01-05 06:36:26.52 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 -[123 01-05 06:36:26.52 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 -[124 01-05 06:36:26.52 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 -[125 01-05 06:36:26.52 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 -[126 01-05 06:36:26.52 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 -[127 01-05 06:36:26.52 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 -[128 01-05 06:36:26.52 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 -[129 01-05 06:36:26.52 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 -[12a 01-05 06:36:26.52 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 -[12b 01-05 06:36:26.52 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 -[12c 01-05 06:36:26.52 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 -[12d 01-05 06:36:26.52 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 -[12e 01-05 06:36:26.52 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 -[12f 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[130 01-05 06:36:26.52 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 -[131 01-05 06:36:26.52 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 -[132 01-05 06:36:26.52 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 -[133 01-05 06:36:26.52 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 -[134 01-05 06:36:26.52 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 01-05 06:36:26.52 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 -[136 01-05 06:36:26.52 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 -[137 01-05 06:36:26.52 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 -[138 01-05 06:36:26.52 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 -[139 01-05 06:36:26.52 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 [] -[13a 01-05 06:36:26.52 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 -[13b 01-05 06:36:26.52 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 -[13c 01-05 06:36:26.52 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] -[13d 01-05 06:36:26.52 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 -[13e 01-05 06:36:26.52 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 -[13f 01-05 06:36:26.52 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 [] -[140 01-05 06:36:26.52 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 -[141 01-05 06:36:26.52 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 -[142 01-05 06:36:26.52 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 == -[143 01-05 06:36:26.52 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 -[144 01-05 06:36:26.52 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 == -[145 01-05 06:36:26.52 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 -[146 01-05 06:36:26.52 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----- +[0f0 01-13 06:14:10.13 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 +[0f1 01-13 06:14:10.13 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) +[0f2 01-13 06:14:10.13 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 +[0f3 01-13 06:14:10.13 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 +[0f4 01-13 06:14:10.13 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 +[0f5 01-13 06:14:10.13 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 +[0f6 01-13 06:14:10.13 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 +[0f7 01-13 06:14:10.13 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 +[0f8 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[0f9 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[0fa 01-13 06:14:10.13 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 +[0fb 01-13 06:14:10.13 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 +[0fc 01-13 06:14:10.13 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 +[0fd 01-13 06:14:10.13 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 +[0fe 01-13 06:14:10.13 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 +[0ff 01-13 06:14:10.13 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 +[100 01-13 06:14:10.13 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 +[101 01-13 06:14:10.13 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 +[102 01-13 06:14:10.13 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 +[103 01-13 06:14:10.13 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 +[104 01-13 06:14:10.13 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 +[105 01-13 06:14:10.13 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 +[106 01-13 06:14:10.13 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 +[107 01-13 06:14:10.13 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 +[108 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[109 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[10a 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[10b 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[10c 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[10d 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[10e 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[10f 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[110 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[111 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[112 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[113 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[114 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[115 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[116 01-13 06:14:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[117 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[118 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[119 01-13 06:14:10.13 UTC] [github.com/hyperledger/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 +[11a 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +[11b 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +[11c 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +[11d 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 01-13 06:14:10.14 UTC] [github.com/hyperledger/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 +[123 01-13 06:14:10.14 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 +[124 01-13 06:14:10.14 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 +[125 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[126 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[127 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[128 01-13 06:14:10.14 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 +[129 01-13 06:14:10.14 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 +[12a 01-13 06:14:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[12b 01-13 06:14:10.14 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 +[12c 01-13 06:14:10.14 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 +[12d 01-13 06:14:10.14 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 +[12e 01-13 06:14:10.14 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 +[12f 01-13 06:14:10.14 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 +[130 01-13 06:14:10.14 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 01-13 06:14:10.14 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 01-13 06:14:10.14 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 01-13 06:14:10.14 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 01-13 06:14:10.14 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 +[135 01-13 06:14:10.14 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 +[136 01-13 06:14:10.14 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 +[137 01-13 06:14:10.15 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 +[138 01-13 06:14:10.15 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 +[139 01-13 06:14:10.15 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 +[13a 01-13 06:14:10.15 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 +[13b 01-13 06:14:10.15 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 +[13c 01-13 06:14:10.15 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 [] +[13d 01-13 06:14:10.15 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 +[13e 01-13 06:14:10.15 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 +[13f 01-13 06:14:10.15 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] +[140 01-13 06:14:10.15 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 +[141 01-13 06:14:10.15 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 01-13 06:14:10.15 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 [] +[143 01-13 06:14:10.15 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 +[144 01-13 06:14:10.15 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 +[145 01-13 06:14:10.15 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 == +[146 01-13 06:14:10.15 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 +[147 01-13 06:14:10.15 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 == +[148 01-13 06:14:10.15 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 +[149 01-13 06:14:10.15 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -550,73 +553,74 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[147 01-05 06:36:26.52 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 0xc42000e860 gate 1515134186525748400 evaluation starts -[148 01-05 06:36:26.52 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 0xc42000e860 signed by 0 principal evaluation starts (used [false]) -[149 01-05 06:36:26.52 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 0xc42000e860 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[14a 01-05 06:36:26.52 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 0xc42000e860 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[14b 01-05 06:36:26.52 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 0xc42000e860 principal evaluation fails -[14c 01-05 06:36:26.52 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 0xc42000e860 gate 1515134186525748400 evaluation fails -[14d 01-05 06:36:26.52 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 -[14e 01-05 06:36:26.52 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 -[14f 01-05 06:36:26.52 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 == -[150 01-05 06:36:26.52 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 0xc42000e870 gate 1515134186526791300 evaluation starts -[151 01-05 06:36:26.52 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 0xc42000e870 signed by 0 principal evaluation starts (used [false]) -[152 01-05 06:36:26.52 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 0xc42000e870 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[153 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[154 01-05 06:36:26.52 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 0xc42000e870 principal matched by identity 0 -[155 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 e5 7c 9a 34 06 03 f4 28 34 13 15 7c fe 8d a8 |v.|.4...(4..|...| -00000010 69 5f 1c eb 04 dd 2e f0 2a 17 3d af 17 df 03 cd |i_......*.=.....| -[156 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4f 0e ff 7c b0 78 bf 00 88 4a 54 2b |0D. O..|.x...JT+| -00000010 bd 60 0f dd e1 07 58 f1 dc ef b3 ab b0 6f 2d cc |.`....X......o-.| -00000020 72 04 41 00 02 20 39 9c 51 b3 da 52 15 23 5e 12 |r.A.. 9.Q..R.#^.| -00000030 46 fa 11 1f 58 04 6c 50 4b 21 b7 28 d6 fa 43 fe |F...X.lPK!.(..C.| -00000040 ed 67 f7 cd 3e 94 |.g..>.| -[157 01-05 06:36:26.52 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 0xc42000e870 principal evaluation succeeds for identity 0 -[158 01-05 06:36:26.52 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 0xc42000e870 gate 1515134186526791300 evaluation succeeds -[159 01-05 06:36:26.52 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 -[15a 01-05 06:36:26.52 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 -[15b 01-05 06:36:26.52 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 -[15c 01-05 06:36:26.52 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 -[15d 01-05 06:36:26.52 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 01-05 06:36:26.52 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 -[15f 01-05 06:36:26.52 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" -[160 01-05 06:36:26.52 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" -[161 01-05 06:36:26.52 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" -[162 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[163 01-05 06:36:26.52 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" -[164 01-05 06:36:26.52 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" -[165 01-05 06:36:26.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[166 01-05 06:36:26.52 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 01-05 06:36:26.52 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 01-05 06:36:26.52 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 01-05 06:36:26.53 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" -[16a 01-05 06:36:26.53 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" -[16b 01-05 06:36:26.53 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" -[16c 01-05 06:36:26.53 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 01-05 06:36:26.53 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 01-05 06:36:26.53 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 01-05 06:36:26.53 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" -[170 01-05 06:36:26.53 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" -[171 01-05 06:36:26.53 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" -[172 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[173 01-05 06:36:26.53 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 -[174 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[175 01-05 06:36:26.53 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 -[176 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608EAB9BCD20522...8CCB821B2F7E4433E29502816EC6D2DE -[177 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 185C4F3088F2A2DA9C6DF09CB69B276F4331E97D21380A2536F1EF9ED5145E67 -[178 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[179 01-05 06:36:26.53 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 -[17a 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[17b 01-05 06:36:26.53 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 -[17c 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608EAB9BCD20522...CA232970C2DD6A6349EF97BFEA82B6C7 -[17d 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 71D9EB4D73D3A418C346F68CCC27048289D30DB7C2FF0D81338685DC769B9B64 -[17e 01-05 06:36:26.53 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 == -[17f 01-05 06:36:26.53 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 -[180 01-05 06:36:26.53 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 == -[181 01-05 06:36:26.53 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 -[182 01-05 06:36:26.53 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 == -[183 01-05 06:36:26.53 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 -[184 01-05 06:36:26.53 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----- +[14a 01-13 06:14:10.15 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 0xc42011c9a8 gate 1515824050153604990 evaluation starts +[14b 01-13 06:14:10.15 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 0xc42011c9a8 signed by 0 principal evaluation starts (used [false]) +[14c 01-13 06:14:10.15 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 0xc42011c9a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[14d 01-13 06:14:10.15 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 0xc42011c9a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[14e 01-13 06:14:10.15 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 0xc42011c9a8 principal evaluation fails +[14f 01-13 06:14:10.15 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 0xc42011c9a8 gate 1515824050153604990 evaluation fails +[150 01-13 06:14:10.15 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 +[151 01-13 06:14:10.15 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 +[152 01-13 06:14:10.15 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 == +[153 01-13 06:14:10.15 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 0xc42011c9b8 gate 1515824050155057663 evaluation starts +[154 01-13 06:14:10.15 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 0xc42011c9b8 signed by 0 principal evaluation starts (used [false]) +[155 01-13 06:14:10.15 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 0xc42011c9b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[156 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[157 01-13 06:14:10.15 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 0xc42011c9b8 principal matched by identity 0 +[158 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 2d 96 0e 7b dc 0b 3b 5b b9 6d 48 de 3f d1 9e |.-..{..;[.mH.?..| +00000010 8f 0c c0 7d 36 ae 5d 62 3c 3a 55 83 70 c7 27 ea |...}6.]b<:U.p.'.| +[159 01-13 06:14:10.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 df 74 0c 9e ee 81 1d 37 76 7d a9 |0E.!..t.....7v}.| +00000010 a7 e1 d4 ad 01 97 bd 1b ad b9 c9 b5 eb 50 c3 6e |.............P.n| +00000020 f8 6e 73 7c f4 02 20 21 89 30 4c c0 57 4f 0c 1a |.ns|.. !.0L.WO..| +00000030 fe e1 f8 9a 89 36 f3 60 e3 3a ff f5 d6 ce 14 4c |.....6.`.:.....L| +00000040 3b 30 51 13 12 21 d7 |;0Q..!.| +[15a 01-13 06:14:10.15 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 0xc42011c9b8 principal evaluation succeeds for identity 0 +[15b 01-13 06:14:10.15 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 0xc42011c9b8 gate 1515824050155057663 evaluation succeeds +[15c 01-13 06:14:10.15 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 +[15d 01-13 06:14:10.15 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 +[15e 01-13 06:14:10.15 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 +[15f 01-13 06:14:10.15 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 +[160 01-13 06:14:10.15 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 +[161 01-13 06:14:10.15 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 +[162 01-13 06:14:10.15 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 +[163 01-13 06:14:10.15 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" +[164 01-13 06:14:10.15 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" +[165 01-13 06:14:10.15 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" +[166 01-13 06:14:10.15 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" +[167 01-13 06:14:10.15 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" +[168 01-13 06:14:10.15 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 01-13 06:14:10.15 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 01-13 06:14:10.15 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 01-13 06:14:10.15 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 01-13 06:14:10.15 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" +[16d 01-13 06:14:10.15 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" +[16e 01-13 06:14:10.16 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" +[16f 01-13 06:14:10.16 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 01-13 06:14:10.16 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" +[171 01-13 06:14:10.16 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" +[172 01-13 06:14:10.16 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" +[173 01-13 06:14:10.16 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" +[174 01-13 06:14:10.16 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" +[175 01-13 06:14:10.16 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" +[176 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[177 01-13 06:14:10.16 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 +[178 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[179 01-13 06:14:10.16 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 +[17a 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608B2C7E6D20522...043035C47C53709A9837451B10CEF5E6 +[17b 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: F77782EB48E46593DEBDE9C829F04B9C68AD465CBA9F44E64D2016FCF6B404BB +[17c 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[17d 01-13 06:14:10.16 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 +[17e 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[17f 01-13 06:14:10.16 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 +[180 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608B2C7E6D20522...A04BEB9C53E6D431A59F2E7096F2853C +[181 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 8B077C8FBAF07B8D125A0014320C29911E0CD405D123799DE76A8270D798386F +[182 01-13 06:14:10.16 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 == +[183 01-13 06:14:10.16 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 +[184 01-13 06:14:10.16 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 == +[185 01-13 06:14:10.16 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 +[186 01-13 06:14:10.16 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 == +[187 01-13 06:14:10.16 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 +[188 01-13 06:14:10.16 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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -629,47 +633,47 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[185 01-05 06:36:26.53 UTC] [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 0xc42000e990 gate 1515134186534899400 evaluation starts -[186 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 signed by 0 principal evaluation starts (used [false]) -[187 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[188 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[189 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[18a 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 principal matched by identity 0 -[18b 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 71 d9 eb 4d 73 d3 a4 18 c3 46 f6 8c cc 27 04 82 |q..Ms....F...'..| -00000010 89 d3 0d b7 c2 ff 0d 81 33 86 85 dc 76 9b 9b 64 |........3...v..d| -[18c 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ba 65 34 c4 f0 48 ce b5 ea 33 d3 |0E.!..e4..H...3.| -00000010 f5 36 5a 48 0d c2 94 cd 82 78 42 c3 97 e8 8d ed |.6ZH.....xB.....| -00000020 49 49 47 26 12 02 20 61 88 89 02 ee 4e b3 6b 8c |IIG&.. a....N.k.| -00000030 bf d4 e5 67 eb 82 8f 43 43 e8 fe f1 9a 3f 81 18 |...g...CC....?..| -00000040 ea 3e 7c 9c e8 8f 73 |.>|...s| -[18d 01-05 06:36:26.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e990 principal evaluation succeeds for identity 0 -[18e 01-05 06:36:26.53 UTC] [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 0xc42000e990 gate 1515134186534899400 evaluation succeeds -[18f 01-05 06:36:26.53 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 -[190 01-05 06:36:26.53 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 -[191 01-05 06:36:26.53 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 -[192 01-05 06:36:26.53 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 -[193 01-05 06:36:26.53 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 -[194 01-05 06:36:26.53 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 -[195 01-05 06:36:26.53 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 -[196 01-05 06:36:26.53 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 -[197 01-05 06:36:26.53 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 -[198 01-05 06:36:26.53 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 -[199 01-05 06:36:26.53 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 -[19a 01-05 06:36:26.53 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 -[19b 01-05 06:36:26.53 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 -[19c 01-05 06:36:26.53 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 -[19d 01-05 06:36:26.53 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 -[19e 01-05 06:36:26.53 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 -[19f 01-05 06:36:26.53 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 -[1a0 01-05 06:36:26.53 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 -[1a1 01-05 06:36:26.53 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 -[1a2 01-05 06:36:26.53 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 -[1a3 01-05 06:36:26.53 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 -[1a4 01-05 06:36:26.53 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 -[1a5 01-05 06:36:26.53 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 -[1a6 01-05 06:36:26.54 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 -[1a7 01-05 06:36:26.54 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 -[1a8 01-05 06:36:26.54 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----- +[189 01-13 06:14:10.16 UTC] [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 0xc42011cba0 gate 1515824050165128225 evaluation starts +[18a 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 signed by 0 principal evaluation starts (used [false]) +[18b 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[18c 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[18d 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[18e 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 principal matched by identity 0 +[18f 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8b 07 7c 8f ba f0 7b 8d 12 5a 00 14 32 0c 29 91 |..|...{..Z..2.).| +00000010 1e 0c d4 05 d1 23 79 9d e7 6a 82 70 d7 98 38 6f |.....#y..j.p..8o| +[190 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c0 9f 0b bd fd 90 a8 88 2f 6f 50 |0E.!........./oP| +00000010 cf 46 33 fd 56 7c b3 8d 3c 02 db ad 53 9a 8c 22 |.F3.V|..<...S.."| +00000020 82 6e 6d db 39 02 20 5d 94 86 f7 a2 73 21 a9 c8 |.nm.9. ]....s!..| +00000030 f3 2f 9b 77 26 da 1a 9d 82 64 fb d3 26 ef ca d3 |./.w&....d..&...| +00000040 16 45 74 4c 92 c1 75 |.EtL..u| +[191 01-13 06:14:10.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 principal evaluation succeeds for identity 0 +[192 01-13 06:14:10.16 UTC] [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 0xc42011cba0 gate 1515824050165128225 evaluation succeeds +[193 01-13 06:14:10.16 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 +[194 01-13 06:14:10.16 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 +[195 01-13 06:14:10.16 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 +[196 01-13 06:14:10.16 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 +[197 01-13 06:14:10.16 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 +[198 01-13 06:14:10.16 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 +[199 01-13 06:14:10.16 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 +[19a 01-13 06:14:10.16 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 +[19b 01-13 06:14:10.16 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 +[19c 01-13 06:14:10.16 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 +[19d 01-13 06:14:10.16 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 +[19e 01-13 06:14:10.16 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 +[19f 01-13 06:14:10.16 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 +[1a0 01-13 06:14:10.16 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 +[1a1 01-13 06:14:10.16 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 +[1a2 01-13 06:14:10.16 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 +[1a3 01-13 06:14:10.17 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 +[1a4 01-13 06:14:10.17 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 +[1a5 01-13 06:14:10.17 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 +[1a6 01-13 06:14:10.17 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 +[1a7 01-13 06:14:10.17 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 +[1a8 01-13 06:14:10.17 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 +[1a9 01-13 06:14:10.17 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 +[1aa 01-13 06:14:10.17 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 +[1ab 01-13 06:14:10.17 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 +[1ac 01-13 06:14:10.17 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -683,7 +687,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[1a9 01-05 06:36:26.54 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----- +[1ad 01-13 06:14:10.17 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -696,19 +700,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[1aa 01-05 06:36:26.54 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 -[1ab 01-05 06:36:26.55 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 -[1ac 01-05 06:36:26.55 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 -[1ad 01-05 06:36:26.55 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 -[1ae 01-05 06:36:26.55 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 -[1af 01-05 06:36:26.55 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 -[1b0 01-05 06:36:26.55 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 -[1b1 01-05 06:36:26.55 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 -[1b2 01-05 06:36:26.55 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 -[1b3 01-05 06:36:26.55 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 -[1b4 01-05 06:36:26.55 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 -[1b5 01-05 06:36:26.55 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 -[1b6 01-05 06:36:26.55 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----- +[1ae 01-13 06:14:10.17 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 +[1af 01-13 06:14:10.17 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 +[1b0 01-13 06:14:10.17 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 +[1b1 01-13 06:14:10.17 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 +[1b2 01-13 06:14:10.17 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 +[1b3 01-13 06:14:10.17 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 +[1b4 01-13 06:14:10.17 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 +[1b5 01-13 06:14:10.17 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 +[1b6 01-13 06:14:10.17 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 +[1b7 01-13 06:14:10.17 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 +[1b8 01-13 06:14:10.17 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 +[1b9 01-13 06:14:10.17 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 +[1ba 01-13 06:14:10.17 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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -723,7 +727,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[1b7 01-05 06:36:26.55 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----- +[1bb 01-13 06:14:10.17 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -737,17 +741,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[1b8 01-05 06:36:26.55 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 -[1b9 01-05 06:36:26.55 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 -[1ba 01-05 06:36:26.55 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 -[1bb 01-05 06:36:26.55 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 -[1bc 01-05 06:36:26.55 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 -[1bd 01-05 06:36:26.55 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 -[1be 01-05 06:36:26.55 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 -[1bf 01-05 06:36:26.55 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 -[1c0 01-05 06:36:26.55 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 -[1c1 01-05 06:36:26.55 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 -[1c2 01-05 06:36:26.55 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----- +[1bc 01-13 06:14:10.17 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 +[1bd 01-13 06:14:10.17 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 +[1be 01-13 06:14:10.17 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 +[1bf 01-13 06:14:10.17 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 +[1c0 01-13 06:14:10.17 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 +[1c1 01-13 06:14:10.17 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 +[1c2 01-13 06:14:10.17 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 +[1c3 01-13 06:14:10.17 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 +[1c4 01-13 06:14:10.17 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 +[1c5 01-13 06:14:10.17 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 +[1c6 01-13 06:14:10.17 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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -762,7 +766,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[1c3 01-05 06:36:26.55 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----- +[1c7 01-13 06:14:10.17 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -776,99 +780,96 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[1c4 01-05 06:36:26.55 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 -[1c5 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[1c6 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[1c7 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[1c8 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[1c9 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[1ca 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[1cb 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[1cc 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[1cd 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[1ce 01-05 06:36:26.55 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 -[1cf 01-05 06:36:26.55 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 -[1d0 01-05 06:36:26.55 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 -[1d1 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[1d2 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[1d3 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[1d4 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[1d5 01-05 06:36:26.55 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 -[1d6 01-05 06:36:26.55 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 -[1d7 01-05 06:36:26.55 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 -[1d8 01-05 06:36:26.55 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 -[1d9 01-05 06:36:26.55 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 -[1da 01-05 06:36:26.55 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 -[1db 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[1dc 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[1dd 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[1de 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[1df 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e0 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e1 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e2 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e3 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e4 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e5 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e6 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e7 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e9 01-05 06:36:26.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ea 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1eb 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[1ec 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ed 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ee 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ef 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1f0 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1f2 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1f3 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1f4 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[1f7 01-05 06:36:26.56 UTC] [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 -[1f8 01-05 06:36:26.56 UTC] [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 -[1f9 01-05 06:36:26.56 UTC] [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 -[1fa 01-05 06:36:26.56 UTC] [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 -[1fb 01-05 06:36:26.56 UTC] [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 -[1fc 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[1fd 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[1fe 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[1ff 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[200 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[201 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[202 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[203 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[204 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[205 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[206 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[207 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[208 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[209 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[20a 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[20b 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[20c 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[20d 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[20e 01-05 06:36:26.56 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 -[20f 01-05 06:36:26.56 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 -[210 01-05 06:36:26.56 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 -[211 01-05 06:36:26.56 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 -[212 01-05 06:36:26.56 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 -[213 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[214 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[215 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[216 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[217 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[218 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[219 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[21a 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[21b 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[21c 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[21d 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[21e 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[21f 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[220 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1c8 01-13 06:14:10.18 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 +[1c9 01-13 06:14:10.18 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) +[1ca 01-13 06:14:10.18 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 +[1cb 01-13 06:14:10.18 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 +[1cc 01-13 06:14:10.18 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 +[1cd 01-13 06:14:10.18 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 +[1ce 01-13 06:14:10.18 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 +[1cf 01-13 06:14:10.18 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 +[1d0 01-13 06:14:10.18 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 +[1d1 01-13 06:14:10.18 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 +[1d2 01-13 06:14:10.18 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 +[1d3 01-13 06:14:10.18 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 +[1d4 01-13 06:14:10.18 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 +[1d5 01-13 06:14:10.18 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 01-13 06:14:10.18 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 01-13 06:14:10.18 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 +[1d8 01-13 06:14:10.18 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 +[1d9 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +[1da 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[1db 01-13 06:14:10.18 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 +[1dc 01-13 06:14:10.18 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 +[1dd 01-13 06:14:10.18 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 +[1de 01-13 06:14:10.18 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 +[1df 01-13 06:14:10.18 UTC] [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 +[1e0 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e1 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e2 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e3 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e4 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e5 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e6 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e7 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e8 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1e9 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1ea 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1eb 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1ec 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1ed 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f0 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f1 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f2 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f4 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f5 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f6 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f7 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f8 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1f9 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1fa 01-13 06:14:10.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 +[1fb 01-13 06:14:10.18 UTC] [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 +[1fc 01-13 06:14:10.18 UTC] [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 +[1fd 01-13 06:14:10.19 UTC] [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 +[1fe 01-13 06:14:10.19 UTC] [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 +[1ff 01-13 06:14:10.19 UTC] [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 +[200 01-13 06:14:10.19 UTC] [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 +[201 01-13 06:14:10.19 UTC] [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 +[202 01-13 06:14:10.19 UTC] [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 +[203 01-13 06:14:10.19 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 +[204 01-13 06:14:10.19 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 +[205 01-13 06:14:10.19 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 +[206 01-13 06:14:10.19 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 +[207 01-13 06:14:10.19 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 +[208 01-13 06:14:10.19 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 +[209 01-13 06:14:10.19 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 +[20a 01-13 06:14:10.19 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 +[20b 01-13 06:14:10.19 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 +[20c 01-13 06:14:10.19 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 +[20d 01-13 06:14:10.19 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 +[20e 01-13 06:14:10.19 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 +[20f 01-13 06:14:10.19 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 +[210 01-13 06:14:10.19 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 +[211 01-13 06:14:10.19 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 +[212 01-13 06:14:10.19 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 +[213 01-13 06:14:10.19 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 +[214 01-13 06:14:10.19 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 [] +[215 01-13 06:14:10.19 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 +[216 01-13 06:14:10.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[217 01-13 06:14:10.19 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] +[218 01-13 06:14:10.19 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 +[219 01-13 06:14:10.19 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 +[21a 01-13 06:14:10.19 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 [] +[21b 01-13 06:14:10.19 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 +[21c 01-13 06:14:10.19 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 +[21d 01-13 06:14:10.19 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 == +[21e 01-13 06:14:10.19 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 +[21f 01-13 06:14:10.19 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 == +[220 01-13 06:14:10.19 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 +[221 01-13 06:14:10.19 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -882,70 +883,112 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[221 01-05 06:36:26.56 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 0xc42000e8c0 gate 1515134186567100600 evaluation starts -[222 01-05 06:36:26.56 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 0xc42000e8c0 signed by 0 principal evaluation starts (used [false]) -[223 01-05 06:36:26.56 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 0xc42000e8c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[224 01-05 06:36:26.56 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 0xc42000e8c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[225 01-05 06:36:26.56 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 0xc42000e8c0 principal evaluation fails -[226 01-05 06:36:26.56 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 0xc42000e8c0 gate 1515134186567100600 evaluation fails -[227 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -[228 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[229 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[22a 01-05 06:36:26.56 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 0xc42000e8d0 gate 1515134186568033500 evaluation starts -[22b 01-05 06:36:26.56 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 0xc42000e8d0 signed by 0 principal evaluation starts (used [false]) -[22c 01-05 06:36:26.56 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 0xc42000e8d0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[22d 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[22e 01-05 06:36:26.56 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 0xc42000e8d0 principal matched by identity 0 -[22f 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 e5 7c 9a 34 06 03 f4 28 34 13 15 7c fe 8d a8 |v.|.4...(4..|...| -00000010 69 5f 1c eb 04 dd 2e f0 2a 17 3d af 17 df 03 cd |i_......*.=.....| -[230 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4f 0e ff 7c b0 78 bf 00 88 4a 54 2b |0D. O..|.x...JT+| -00000010 bd 60 0f dd e1 07 58 f1 dc ef b3 ab b0 6f 2d cc |.`....X......o-.| -00000020 72 04 41 00 02 20 39 9c 51 b3 da 52 15 23 5e 12 |r.A.. 9.Q..R.#^.| -00000030 46 fa 11 1f 58 04 6c 50 4b 21 b7 28 d6 fa 43 fe |F...X.lPK!.(..C.| -00000040 ed 67 f7 cd 3e 94 |.g..>.| -[231 01-05 06:36:26.56 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 0xc42000e8d0 principal evaluation succeeds for identity 0 -[232 01-05 06:36:26.56 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 0xc42000e8d0 gate 1515134186568033500 evaluation succeeds -[233 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[234 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[235 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[236 01-05 06:36:26.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[237 01-05 06:36:26.56 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" -[238 01-05 06:36:26.56 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" -[239 01-05 06:36:26.56 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" -[23a 01-05 06:36:26.56 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 01-05 06:36:26.57 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" -[23c 01-05 06:36:26.57 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" -[23d 01-05 06:36:26.57 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" -[23e 01-05 06:36:26.57 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 01-05 06:36:26.57 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 01-05 06:36:26.57 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 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[242 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[243 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[244 01-05 06:36:26.57 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" -[245 01-05 06:36:26.57 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" -[246 01-05 06:36:26.57 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" -[247 01-05 06:36:26.57 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" -[248 01-05 06:36:26.57 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" -[249 01-05 06:36:26.57 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" -[24a 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[24b 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[24c 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[24d 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[24e 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[24f 01-05 06:36:26.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[250 01-05 06:36:26.57 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 -[251 01-05 06:36:26.57 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 -[252 01-05 06:36:26.57 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 -[253 01-05 06:36:26.57 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 -[254 01-05 06:36:26.57 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 -[255 01-05 06:36:26.57 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 -[256 01-05 06:36:26.57 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 -[257 01-05 06:36:26.57 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 -[258 01-05 06:36:26.57 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 -[259 01-05 06:36:26.57 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 -[25a 01-05 06:36:26.57 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 -[25b 01-05 06:36:26.57 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----- +[222 01-13 06:14:10.19 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 0xc42011c6c8 gate 1515824050199157902 evaluation starts +[223 01-13 06:14:10.19 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 0xc42011c6c8 signed by 0 principal evaluation starts (used [false]) +[224 01-13 06:14:10.19 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 0xc42011c6c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[225 01-13 06:14:10.19 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 0xc42011c6c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[226 01-13 06:14:10.19 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 0xc42011c6c8 principal evaluation fails +[227 01-13 06:14:10.19 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 0xc42011c6c8 gate 1515824050199157902 evaluation fails +[228 01-13 06:14:10.20 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 +[229 01-13 06:14:10.20 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 +[22a 01-13 06:14:10.20 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 == +[22b 01-13 06:14:10.20 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 0xc42011c6d8 gate 1515824050200322719 evaluation starts +[22c 01-13 06:14:10.20 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 0xc42011c6d8 signed by 0 principal evaluation starts (used [false]) +[22d 01-13 06:14:10.20 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 0xc42011c6d8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[22e 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[22f 01-13 06:14:10.20 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 0xc42011c6d8 principal matched by identity 0 +[230 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1e 2d 96 0e 7b dc 0b 3b 5b b9 6d 48 de 3f d1 9e |.-..{..;[.mH.?..| +00000010 8f 0c c0 7d 36 ae 5d 62 3c 3a 55 83 70 c7 27 ea |...}6.]b<:U.p.'.| +[231 01-13 06:14:10.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 df 74 0c 9e ee 81 1d 37 76 7d a9 |0E.!..t.....7v}.| +00000010 a7 e1 d4 ad 01 97 bd 1b ad b9 c9 b5 eb 50 c3 6e |.............P.n| +00000020 f8 6e 73 7c f4 02 20 21 89 30 4c c0 57 4f 0c 1a |.ns|.. !.0L.WO..| +00000030 fe e1 f8 9a 89 36 f3 60 e3 3a ff f5 d6 ce 14 4c |.....6.`.:.....L| +00000040 3b 30 51 13 12 21 d7 |;0Q..!.| +[232 01-13 06:14:10.20 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 0xc42011c6d8 principal evaluation succeeds for identity 0 +[233 01-13 06:14:10.20 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 0xc42011c6d8 gate 1515824050200322719 evaluation succeeds +[234 01-13 06:14:10.20 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 +[235 01-13 06:14:10.20 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 +[236 01-13 06:14:10.20 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 +[237 01-13 06:14:10.20 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 +[238 01-13 06:14:10.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 +[239 01-13 06:14:10.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 +[23a 01-13 06:14:10.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 +[23b 01-13 06:14:10.20 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" +[23c 01-13 06:14:10.20 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" +[23d 01-13 06:14:10.20 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 01-13 06:14:10.20 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" +[23f 01-13 06:14:10.20 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" +[240 01-13 06:14:10.20 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" +[241 01-13 06:14:10.20 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" +[242 01-13 06:14:10.20 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 01-13 06:14:10.20 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 01-13 06:14:10.20 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 01-13 06:14:10.20 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 01-13 06:14:10.20 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 01-13 06:14:10.20 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" +[248 01-13 06:14:10.20 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" +[249 01-13 06:14:10.20 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" +[24a 01-13 06:14:10.20 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" +[24b 01-13 06:14:10.20 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" +[24c 01-13 06:14:10.20 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" +[24d 01-13 06:14:10.20 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" +[24e 01-13 06:14:10.20 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 +[24f 01-13 06:14:10.20 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 +[250 01-13 06:14:10.20 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 +[251 01-13 06:14:10.20 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 +[252 01-13 06:14:10.20 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 +[253 01-13 06:14:10.20 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 +[254 01-13 06:14:10.20 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 +[255 01-13 06:14:10.20 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 +[256 01-13 06:14:10.20 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 +[257 01-13 06:14:10.20 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 +[258 01-13 06:14:10.20 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 +[259 01-13 06:14:10.20 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 +[25a 01-13 06:14:10.20 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 +[25b 01-13 06:14:10.20 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 +[25c 01-13 06:14:10.20 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 +[25d 01-13 06:14:10.20 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 +[25e 01-13 06:14:10.20 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 +[25f 01-13 06:14:10.20 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----- +MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +oQmWQsjpiQ== +-----END CERTIFICATE----- +[260 01-13 06:14:10.20 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----- +MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +jTZ94VyvHhJOn4fshoU= +-----END CERTIFICATE----- +[261 01-13 06:14:10.21 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 +[262 01-13 06:14:10.21 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 +[263 01-13 06:14:10.21 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 +[264 01-13 06:14:10.21 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 +[265 01-13 06:14:10.21 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 +[266 01-13 06:14:10.21 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 +[267 01-13 06:14:10.21 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 +[268 01-13 06:14:10.21 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 +[269 01-13 06:14:10.21 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 +[26a 01-13 06:14:10.21 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 +[26b 01-13 06:14:10.21 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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -960,7 +1003,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[25c 01-05 06:36:26.57 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----- +[26c 01-13 06:14:10.21 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -974,60 +1017,21 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[25d 01-05 06:36:26.57 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 -[25e 01-05 06:36:26.57 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 -[25f 01-05 06:36:26.57 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 -[260 01-05 06:36:26.57 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 -[261 01-05 06:36:26.57 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 -[262 01-05 06:36:26.57 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 -[263 01-05 06:36:26.57 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 -[264 01-05 06:36:26.57 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 -[265 01-05 06:36:26.57 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 -[266 01-05 06:36:26.57 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 -[267 01-05 06:36:26.57 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----- -MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -oQmWQsjpiQ== ------END CERTIFICATE----- -[268 01-05 06:36:26.57 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----- -MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[269 01-05 06:36:26.57 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 -[26a 01-05 06:36:26.57 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 -[26b 01-05 06:36:26.57 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 -[26c 01-05 06:36:26.57 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 -[26d 01-05 06:36:26.57 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 -[26e 01-05 06:36:26.57 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 -[26f 01-05 06:36:26.57 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 -[270 01-05 06:36:26.57 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 -[271 01-05 06:36:26.57 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 -[272 01-05 06:36:26.57 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 -[273 01-05 06:36:26.57 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 -[274 01-05 06:36:26.57 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 -[275 01-05 06:36:26.57 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 -[276 01-05 06:36:26.57 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 -[277 01-05 06:36:26.57 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----- +[26d 01-13 06:14:10.21 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 +[26e 01-13 06:14:10.21 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 +[26f 01-13 06:14:10.21 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 +[270 01-13 06:14:10.21 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 +[271 01-13 06:14:10.21 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 +[272 01-13 06:14:10.21 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 +[273 01-13 06:14:10.21 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 +[274 01-13 06:14:10.21 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 +[275 01-13 06:14:10.21 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 +[276 01-13 06:14:10.21 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 +[277 01-13 06:14:10.21 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 +[278 01-13 06:14:10.21 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 +[279 01-13 06:14:10.21 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 +[27a 01-13 06:14:10.21 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 +[27b 01-13 06:14:10.21 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1041,7 +1045,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[278 01-05 06:36:26.57 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----- +[27c 01-13 06:14:10.21 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1054,88 +1058,88 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[279 01-05 06:36:26.58 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 -[27a 01-05 06:36:26.58 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) -[27b 01-05 06:36:26.58 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 -[27c 01-05 06:36:26.58 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 -[27d 01-05 06:36:26.58 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 -[27e 01-05 06:36:26.58 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 -[27f 01-05 06:36:26.58 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 -[280 01-05 06:36:26.58 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 -[281 01-05 06:36:26.58 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 -[282 01-05 06:36:26.58 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 -[283 01-05 06:36:26.58 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 -[284 01-05 06:36:26.58 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 -[285 01-05 06:36:26.58 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 -[286 01-05 06:36:26.58 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 -[287 01-05 06:36:26.58 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 -[288 01-05 06:36:26.58 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 -[289 01-05 06:36:26.58 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 -[28a 01-05 06:36:26.58 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 -[28b 01-05 06:36:26.58 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 -[28c 01-05 06:36:26.58 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 -[28d 01-05 06:36:26.58 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 -[28e 01-05 06:36:26.58 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 -[28f 01-05 06:36:26.58 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 -[290 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[291 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[292 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[293 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[294 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[295 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[296 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[297 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[298 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[299 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29a 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29b 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29c 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29d 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29e 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29f 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a0 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a1 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a2 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a3 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a4 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a5 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a6 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a7 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a8 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a9 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2aa 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2ab 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2ac 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2ad 01-05 06:36:26.58 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2ae 01-05 06:36:26.58 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 -[2af 01-05 06:36:26.58 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 -[2b0 01-05 06:36:26.58 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 -[2b1 01-05 06:36:26.58 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 -[2b2 01-05 06:36:26.58 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 -[2b3 01-05 06:36:26.58 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 -[2b4 01-05 06:36:26.58 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 -[2b5 01-05 06:36:26.58 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 -[2b6 01-05 06:36:26.58 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:44082 -[2b7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[2b8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[2b9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[2ba 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[2bb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[2bc 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2bd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[2be 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[2bf 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[2c0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[2c1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[2c2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[2c3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2c4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2c5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2c6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[2c7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2c8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2c9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[2ca 01-05 06:36:26.59 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----- +[27d 01-13 06:14:10.21 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 +[27e 01-13 06:14:10.21 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) +[27f 01-13 06:14:10.21 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 +[280 01-13 06:14:10.21 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 +[281 01-13 06:14:10.21 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 +[282 01-13 06:14:10.21 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 +[283 01-13 06:14:10.21 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 +[284 01-13 06:14:10.21 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 +[285 01-13 06:14:10.21 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 +[286 01-13 06:14:10.21 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 +[287 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[288 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[289 01-13 06:14:10.21 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 +[28a 01-13 06:14:10.21 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 +[28b 01-13 06:14:10.21 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 +[28c 01-13 06:14:10.21 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 +[28d 01-13 06:14:10.21 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 +[28e 01-13 06:14:10.21 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 +[28f 01-13 06:14:10.21 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 +[290 01-13 06:14:10.21 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 +[291 01-13 06:14:10.21 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 +[292 01-13 06:14:10.21 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 +[293 01-13 06:14:10.21 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 +[294 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] 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 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] 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 01-13 06:14:10.21 UTC] [github.com/hyperledger/fabric/common/configtx] 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 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[29b 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[29c 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[29d 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[29e 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[29f 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a0 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a1 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a2 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a3 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a4 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a5 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a6 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a7 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a8 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2a9 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2aa 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2ab 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2ac 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2ad 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2ae 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2af 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2b0 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2b1 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[2b2 01-13 06:14:10.22 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 +[2b3 01-13 06:14:10.22 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 +[2b4 01-13 06:14:10.22 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 +[2b5 01-13 06:14:10.22 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 +[2b6 01-13 06:14:10.22 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 +[2b7 01-13 06:14:10.22 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 +[2b8 01-13 06:14:10.22 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 +[2b9 01-13 06:14:10.22 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 +[2ba 01-13 06:14:10.22 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.8:50072 +[2bb 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[2bc 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[2bd 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[2be 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[2bf 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[2c0 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2c1 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[2c2 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[2c3 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[2c4 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[2c5 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[2c6 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[2c7 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2c8 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2c9 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2ca 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[2cb 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2cc 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2cd 01-13 06:14:10.22 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[2ce 01-13 06:14:10.23 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1149,7 +1153,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[2cb 01-05 06:36:26.59 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----- +[2cf 01-13 06:14:10.23 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1162,58 +1166,26 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[2cc 01-05 06:36:26.59 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 -[2cd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[2ce 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2cf 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2d0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2d1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2d2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2d3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[2d4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[2d5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2d6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2d7 01-05 06:36:26.59 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 -[2d8 01-05 06:36:26.59 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----- -MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -oQmWQsjpiQ== ------END CERTIFICATE----- -[2d9 01-05 06:36:26.59 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----- -MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[2da 01-05 06:36:26.59 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 -[2db 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2dc 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2dd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2de 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2df 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[2e0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[2e1 01-05 06:36:26.59 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 -[2e2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2e3 01-05 06:36:26.59 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 -[2e4 01-05 06:36:26.59 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----- +[2d0 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50072, hangup +[2d2 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[2d1 01-13 06:14:10.23 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 +[2d3 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[2d5 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.8:50070 because channel businesschannel not found +[2d4 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2d6 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2d7 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2d8 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2da 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2db 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[2dc 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[2dd 01-13 06:14:10.23 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 +[2de 01-13 06:14:10.23 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 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50070 +[2df 01-13 06:14:10.23 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 +[2e0 01-13 06:14:10.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.8:50070 +[2e1 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.8:50070, hangup +[2e2 01-13 06:14:10.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[2e3 01-13 06:14:10.23 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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1228,7 +1200,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[2e5 01-05 06:36:26.59 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----- +[2e4 01-13 06:14:10.23 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1242,143 +1214,175 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[2e6 01-05 06:36:26.59 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 -[2e7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[2e8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[2e9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[2ea 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[2eb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[2ec 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[2ed 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[2ee 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[2ef 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[2f0 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[2f1 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[2f2 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[2f3 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[2f4 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[2f5 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[2f6 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[2f7 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[2f8 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[2f9 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[2fa 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[2fb 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[2fc 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2fd 01-05 06:36:26.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[2fe 01-05 06:36:26.59 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 -[2ff 01-05 06:36:26.59 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 -[300 01-05 06:36:26.59 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 -[301 01-05 06:36:26.59 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 -[302 01-05 06:36:26.59 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 01-05 06:36:26.59 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 -[304 01-05 06:36:26.59 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 -[305 01-05 06:36:26.59 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 -[306 01-05 06:36:26.59 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 -[307 01-05 06:36:26.59 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 -[308 01-05 06:36:26.59 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 -[309 01-05 06:36:26.59 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 -[30a 01-05 06:36:26.59 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 -[30b 01-05 06:36:26.59 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 -[30c 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[30d 01-05 06:36:26.60 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 -[30e 01-05 06:36:26.60 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 -[30f 01-05 06:36:26.60 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 -[310 01-05 06:36:26.60 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 -[311 01-05 06:36:26.60 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 -[312 01-05 06:36:26.60 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 -[313 01-05 06:36:26.60 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 -[314 01-05 06:36:26.60 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 -[315 01-05 06:36:26.60 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 -[316 01-05 06:36:26.60 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 -[317 01-05 06:36:26.60 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 -[318 01-05 06:36:26.60 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 -[319 01-05 06:36:26.60 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 -[31a 01-05 06:36:26.60 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 -[31b 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[31c 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[31d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[31e 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[31f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[320 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[321 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[322 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[323 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[324 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[325 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[326 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[327 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[328 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[329 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[32a 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[32b 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[32c 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[32d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[32e 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[32f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[330 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[331 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[332 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[333 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[334 01-05 06:36:26.60 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 -[335 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -[336 01-05 06:36:26.60 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 -[337 01-05 06:36:26.60 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 -[338 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[339 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[33a 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[33b 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[33c 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[33d 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[33e 01-05 06:36:26.60 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)(0xc420b0d920)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[33f 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44082: rpc error: code = Canceled desc = context canceled -[340 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[342 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:44080 because channel businesschannel not found -[341 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[343 01-05 06:36:26.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:44080 -[344 01-05 06:36:26.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:44080 -[345 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -txId= locPointer=offset=38, bytesLength=12077 +[2e5 01-13 06:14:10.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 Org2MSP validating identity +[2e6 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2e7 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2e8 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2e9 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2ea 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[2eb 01-13 06:14:10.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 +[2ec 01-13 06:14:10.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 +[2ed 01-13 06:14:10.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 +[2ee 01-13 06:14:10.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 +[2ef 01-13 06:14:10.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----- +MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +oQmWQsjpiQ== +-----END CERTIFICATE----- +[2f0 01-13 06:14:10.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----- +MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +jTZ94VyvHhJOn4fshoU= +-----END CERTIFICATE----- +[2f1 01-13 06:14:10.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 +[2f2 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[2f3 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[2f4 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[2f5 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[2f6 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[2f7 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[2f8 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[2f9 01-13 06:14:10.24 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[2fb 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[2fc 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50074 +[2fd 01-13 06:14:10.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.8:50074 +[2fa 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[2fe 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[2ff 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[300 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[301 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[302 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[303 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[304 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[305 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[306 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[307 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[308 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[309 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[30a 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[30b 01-13 06:14:10.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 +[30c 01-13 06:14:10.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 +[30d 01-13 06:14:10.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 +[30e 01-13 06:14:10.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 +[30f 01-13 06:14:10.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 +[310 01-13 06:14:10.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 +[311 01-13 06:14:10.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 +[312 01-13 06:14:10.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 +[313 01-13 06:14:10.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 +[314 01-13 06:14:10.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 +[315 01-13 06:14:10.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 +[316 01-13 06:14:10.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 +[317 01-13 06:14:10.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 +[318 01-13 06:14:10.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 +[319 01-13 06:14:10.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 01-13 06:14:10.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 +[31b 01-13 06:14:10.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/Org2MSP +[31c 01-13 06:14:10.25 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 +[31d 01-13 06:14:10.25 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 +[31e 01-13 06:14:10.25 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 +[31f 01-13 06:14:10.25 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 +[320 01-13 06:14:10.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 +[321 01-13 06:14:10.25 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 +[322 01-13 06:14:10.25 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 +[323 01-13 06:14:10.25 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 +[324 01-13 06:14:10.25 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 +[325 01-13 06:14:10.25 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 +[326 01-13 06:14:10.25 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 +[327 01-13 06:14:10.25 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 +[328 01-13 06:14:10.25 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 +[329 01-13 06:14:10.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[32a 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[32b 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[32c 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[32d 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[32e 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[32f 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[330 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[331 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[332 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[333 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[334 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[335 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[336 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[337 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[338 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[339 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[33a 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[33b 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[33c 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[33d 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[33e 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[33f 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[340 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[341 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[342 01-13 06:14:10.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 +[343 01-13 06:14:10.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/] +[344 01-13 06:14:10.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 +[345 01-13 06:14:10.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 +[346 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[347 01-13 06:14:10.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 +[348 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[349 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[34a 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[34b 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[34c 01-13 06:14:10.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)(0xc42027e140)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[34d 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[34e 01-13 06:14:10.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +txId= locPointer=offset=38, bytesLength=12078 ] -[346 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44080: rpc error: code = Canceled desc = context canceled -[347 01-05 06:36:26.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[348 01-05 06:36:26.61 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] -[349 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[34a 01-05 06:36:26.61 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] -[34b 01-05 06:36:26.61 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 -[34c 01-05 06:36:26.61 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]} -[34d 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[34e 01-05 06:36:26.61 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) -[34f 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -[350 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -[351 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[352 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[353 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[354 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[355 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B09A5605C1DAD9EAEE5B0E5D22FED1CA -[356 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DC58DC3B8C63C5FF63070D3154E65DF45CDE30EA6610912303EABFBDA445EA12 -[357 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[358 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[359 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[35a 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[35b 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[35c 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B09A5605C1DAD9EAEE5B0E5D22FED1CA -[35d 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 228E22717D4482096B34BA6BD720977AEF611B93EB87D899EC1252E541EC7257 -[35e 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[35f 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44084 -[360 01-05 06:36:26.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:44084 -[361 01-05 06:36:26.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x25, 0x47, 0xd5, 0xea, 0xa3, 0x4f, 0x4b, 0x39, 0xb0, 0x3d, 0x24, 0xcc, 0xae, 0x94, 0xbd, 0x27, 0x8e, 0x55, 0x69, 0x2a, 0xf3, 0xf, 0x1d, 0x1f, 0x3c, 0xf9, 0x64, 0xde, 0xa0, 0x22, 0x21, 0xc1} txOffsets= -txId= locPointer=offset=70, bytesLength=13000 +[34f 01-13 06:14:10.27 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] +[350 01-13 06:14:10.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 +[351 01-13 06:14:10.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] +[352 01-13 06:14:10.27 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 +[353 01-13 06:14:10.27 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]} +[354 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[355 01-13 06:14:10.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) +[356 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources +[357 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel +[358 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[359 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[35a 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[35b 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[35c 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9181A6C6911B49E372FD06CDEDC6004E +[35d 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C7584D9F5C910254C0E507B54C0C077B0F5949366477FCBBE9E79100F42A67E6 +[35e 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[35f 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[360 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +[361 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[362 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[363 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9181A6C6911B49E372FD06CDEDC6004E +[364 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 78A6982FF623198D906ED27BD541CB5BBD789750B7F42B02F08259AE9B659D8B +[365 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xed, 0xa, 0xd, 0x70, 0xa7, 0xd7, 0x8e, 0xfb, 0x28, 0x9b, 0xde, 0x48, 0xda, 0x96, 0x5, 0x97, 0xbe, 0x42, 0xdb, 0x4c, 0xa, 0xe, 0xd8, 0xf8, 0x2, 0x37, 0x7c, 0xf3, 0x82, 0x2c, 0x7e, 0x90} txOffsets= +txId= locPointer=offset=70, bytesLength=13001 ] -[362 01-05 06:36:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24014], isChainEmpty=[false], lastBlockNumber=[1] -[363 01-05 06:36:26.62 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -[364 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[365 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[366 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[367 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[368 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[369 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[36a 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[366 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24014], isChainEmpty=[false], lastBlockNumber=[1] +[367 01-13 06:14:10.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 +[368 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[369 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[36a 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[36b 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[36c 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[36d 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[36e 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1392,170 +1396,175 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[36b 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5d0 gate 1515134186828935700 evaluation starts -[36c 01-05 06:36:26.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 signed by 0 principal evaluation starts (used [false]) -[36d 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[36e 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[36f 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[370 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 principal matched by identity 0 -[371 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 91 d7 9a 11 29 9a e1 98 65 4c 3b e6 c1 8c d7 8f |....)...eL;.....| -00000010 36 11 06 c7 80 84 f2 87 4d be ac d3 30 92 04 ab |6.......M...0...| -[372 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 ae 2a c9 06 b4 7b c1 55 ee b4 3b |0D. h.*...{.U..;| -00000010 99 0d 73 82 9f 4b 0a 17 1c 34 52 47 4c ad 81 9d |..s..K...4RGL...| -00000020 03 20 80 2a 02 20 24 dd b7 a2 29 38 76 bc e5 f9 |. .*. $...)8v...| -00000030 50 c9 c0 01 6e 27 eb 74 fa 62 2b e1 63 52 4e e7 |P...n'.t.b+.cRN.| -00000040 0e 56 69 ca 83 fc |.Vi...| -[373 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5d0 principal evaluation succeeds for identity 0 -[374 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5d0 gate 1515134186828935700 evaluation succeeds -[375 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[376 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[377 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[378 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[379 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[37a 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[37b 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a44160) start: > stop: > from 172.18.0.7:44084 -[37c 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[37d 01-05 06:36:26.83 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] -[37e 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12120], Going to peek [8] bytes -[37f 01-05 06:36:26.83 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]} -[380 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[381 01-05 06:36:26.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a44160) for 172.18.0.7:44084 -[382 01-05 06:36:26.83 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:44084 for (0xc420a44160) -[383 01-05 06:36:26.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:44084 -[384 01-05 06:36:26.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:44084 -[385 01-05 06:36:26.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44084: rpc error: code = Canceled desc = context canceled -[386 01-05 06:36:26.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[387 01-05 06:36:28.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[388 01-05 06:36:28.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:44094 -[389 01-05 06:36:28.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:44094 -[38a 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[38b 01-05 06:36:28.21 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:44096 -[38c 01-05 06:36:28.21 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:44096 -[38d 01-05 06:36:28.21 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 -[38e 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[38f 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[390 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[391 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[392 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[393 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134188215312100 evaluation starts -[394 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) -[395 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[396 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[397 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation fails -[398 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134188215312100 evaluation fails -[399 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[39a 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[39b 01-05 06:36:28.21 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 ] -[39c 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[39d 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[39e 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[39f 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[3a0 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[3a1 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1515134188217494300 evaluation starts -[3a2 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 signed by 0 principal evaluation starts (used [false]) -[3a3 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3a4 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[3a5 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[3a6 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal matched by identity 0 -[3a7 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a0 52 22 62 8c a8 1f 00 87 75 43 f8 55 2a 19 17 |.R"b.....uC.U*..| -00000010 62 61 61 8a 28 bf aa 05 fc b5 2d f4 f6 c7 25 3a |baa.(.....-...%:| -[3a8 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 10 b9 25 61 62 07 ac 7e c2 5b ff 11 |0D. ..%ab..~.[..| -00000010 b1 17 15 6f c5 49 8a 6e 9f 5d e3 da 83 7a fa 13 |...o.I.n.]...z..| -00000020 2d d2 5e 14 02 20 6c 68 0b af be 2e fc a2 66 66 |-.^.. lh......ff| -00000030 59 cd 0b ce 0e 4a 85 91 d5 0e 43 75 c0 52 2d 0c |Y....J....Cu.R-.| -00000040 71 78 60 07 d4 d2 |qx`...| -[3a9 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal evaluation succeeds for identity 0 -[3aa 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1515134188217494300 evaluation succeeds -[3ab 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[3ac 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[3ad 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[3ae 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[3af 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[3b0 01-05 06:36:28.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[3b1 01-05 06:36:28.22 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 -[3b2 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3b3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3b4 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3b5 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3b6 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3b7 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3b8 01-05 06:36:28.22 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 -[3b9 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3ba 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3bb 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3bc 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3bd 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3be 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3bf 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/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 -[3c0 01-05 06:36:28.22 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 -[3c1 01-05 06:36:28.22 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 -[3c2 01-05 06:36:28.22 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] -[3c3 01-05 06:36:28.22 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 -[3c4 01-05 06:36:28.22 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 -[3c5 01-05 06:36:28.22 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 [] -[3c6 01-05 06:36:28.22 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 -[3c7 01-05 06:36:28.22 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 -[3c8 01-05 06:36:28.22 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] -[3c9 01-05 06:36:28.22 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 -[3ca 01-05 06:36:28.22 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 -[3cb 01-05 06:36:28.22 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 [] -[3cc 01-05 06:36:28.22 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 == -[3cd 01-05 06:36:28.22 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 0xc42000e450 gate 1515134188222915200 evaluation starts -[3ce 01-05 06:36:28.22 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 0xc42000e450 signed by 0 principal evaluation starts (used [false]) -[3cf 01-05 06:36:28.22 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 0xc42000e450 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3d0 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[3d1 01-05 06:36:28.22 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 0xc42000e450 principal matched by identity 0 -[3d2 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 7f e0 1d 3b 22 f8 53 8e c4 4a 6a fb 05 7e 64 |L...;".S..Jj..~d| -00000010 19 b7 21 46 84 4b 1c 17 af f0 cd 19 20 d7 5a b9 |..!F.K...... .Z.| -[3d3 01-05 06:36:28.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f c4 b0 28 8f 25 b2 d3 15 a3 1f 62 |0D. o..(.%.....b| -00000010 94 9b 58 48 34 0a 17 87 d1 b3 9a 1e 91 ba d7 c7 |..XH4...........| -00000020 ab c1 81 e0 02 20 26 eb 67 9d 32 09 6e 81 3a 9e |..... &.g.2.n.:.| -00000030 df 21 9d 9d 1d d3 55 23 7b 6c 1b 9a 2e 0e a7 11 |.!....U#{l......| -00000040 44 b8 50 7c 43 2f |D.P|C/| -[3d4 01-05 06:36:28.22 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 0xc42000e450 principal evaluation succeeds for identity 0 -[3d5 01-05 06:36:28.22 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 0xc42000e450 gate 1515134188222915200 evaluation succeeds -[3d6 01-05 06:36:28.22 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 -[3d7 01-05 06:36:28.22 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 -[3d8 01-05 06:36:28.22 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 -[3d9 01-05 06:36:28.22 UTC] [github.com/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" -[3da 01-05 06:36:28.22 UTC] [github.com/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" -[3db 01-05 06:36:28.22 UTC] [github.com/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" -[3dc 01-05 06:36:28.22 UTC] [github.com/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" -[3dd 01-05 06:36:28.22 UTC] [github.com/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" -[3de 01-05 06:36:28.22 UTC] [github.com/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" -[3df 01-05 06:36:28.22 UTC] [github.com/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" -[3e0 01-05 06:36:28.22 UTC] [github.com/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 -[3e1 01-05 06:36:28.22 UTC] [github.com/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 -[3e2 01-05 06:36:28.22 UTC] [github.com/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 -[3e3 01-05 06:36:28.22 UTC] [github.com/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" -[3e4 01-05 06:36:28.22 UTC] [github.com/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" -[3e5 01-05 06:36:28.22 UTC] [github.com/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" -[3e6 01-05 06:36:28.22 UTC] [github.com/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" -[3e7 01-05 06:36:28.22 UTC] [github.com/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" -[3e8 01-05 06:36:28.22 UTC] [github.com/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" -[3e9 01-05 06:36:28.22 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" -[3ea 01-05 06:36:28.22 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" -[3eb 01-05 06:36:28.22 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" -[3ec 01-05 06:36:28.22 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 -[3ed 01-05 06:36:28.22 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 -[3ee 01-05 06:36:28.22 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 -[3ef 01-05 06:36:28.22 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 -[3f0 01-05 06:36:28.22 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 -[3f1 01-05 06:36:28.22 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 -[3f2 01-05 06:36:28.22 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 -[3f3 01-05 06:36:28.22 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 -[3f4 01-05 06:36:28.22 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 -[3f5 01-05 06:36:28.22 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 -[3f6 01-05 06:36:28.22 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 -[3f7 01-05 06:36:28.22 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 -[3f8 01-05 06:36:28.23 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 -[3f9 01-05 06:36:28.23 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 -[3fa 01-05 06:36:28.23 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 -[3fb 01-05 06:36:28.23 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 -[3fc 01-05 06:36:28.23 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 -[3fd 01-05 06:36:28.23 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 -[3fe 01-05 06:36:28.23 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 -[3ff 01-05 06:36:28.23 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----- +[36f 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cba0 gate 1515824050456576228 evaluation starts +[370 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 signed by 0 principal evaluation starts (used [false]) +[371 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[372 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[373 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cba0 principal evaluation fails +[374 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cba0 gate 1515824050456576228 evaluation fails +[375 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[376 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[377 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[378 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cbb8 gate 1515824050457181626 evaluation starts +[379 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 signed by 0 principal evaluation starts (used [false]) +[37a 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[37b 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[37c 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[37d 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 principal matched by identity 0 +[37e 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 58 d9 3a 40 2c 79 1e b5 d6 0c 36 d4 47 50 76 ab |X.:@,y....6.GPv.| +00000010 73 28 78 64 ca 10 e8 6c 49 84 4a 27 e7 1c 99 30 |s(xd...lI.J'...0| +[37f 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b8 10 b0 41 8c 07 78 69 b0 d1 07 |0E.!....A..xi...| +00000010 fc 36 75 37 90 7a e8 2f 0f 15 24 41 ed a8 fa 1a |.6u7.z./..$A....| +00000020 bb ac 9f f7 5c 02 20 54 58 ab ff 72 c0 8e 48 fc |....\. TX..r..H.| +00000030 1e ba aa c4 d8 88 a9 5b 4c 30 ac c6 ce a5 a1 b2 |.......[L0......| +00000040 25 b7 d3 16 be 6d 3a |%....m:| +[380 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cbb8 principal evaluation succeeds for identity 0 +[381 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011cbb8 gate 1515824050457181626 evaluation succeeds +[382 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[383 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[384 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[385 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[386 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[387 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[388 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42032b660) start: > stop: > from 172.18.0.8:50074 +[389 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[38a 01-13 06:14:10.45 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] +[38b 01-13 06:14:10.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes +[38c 01-13 06:14:10.45 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]} +[38d 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[38e 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42032b660) for 172.18.0.8:50074 +[38f 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50074 for (0xc42032b660) +[390 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50074 +[391 01-13 06:14:10.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.8:50074 +[392 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.8:50074, hangup +[393 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[394 01-13 06:14:10.46 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50074: read: connection reset by peer +[395 01-13 06:14:13.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[396 01-13 06:14:13.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50084 +[397 01-13 06:14:13.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.8:50084 +[398 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[399 01-13 06:14:13.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.8:50086 +[39a 01-13 06:14:13.09 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.8:50086 +[39b 01-13 06:14:13.09 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 +[39c 01-13 06:14:13.09 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 == +[39d 01-13 06:14:13.09 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 +[39e 01-13 06:14:13.09 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 == +[39f 01-13 06:14:13.09 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 +[3a0 01-13 06:14:13.09 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 == +[3a1 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1515824053094826644 evaluation starts +[3a2 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 signed by 0 principal evaluation starts (used [false]) +[3a3 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3a4 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[3a5 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e030 principal evaluation fails +[3a6 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e030 gate 1515824053094826644 evaluation fails +[3a7 01-13 06:14:13.09 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 +[3a8 01-13 06:14:13.09 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 +[3a9 01-13 06:14:13.09 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 == +[3aa 01-13 06:14:13.09 UTC] [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 1515824053095655929 evaluation starts +[3ab 01-13 06:14:13.09 UTC] [github.com/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]) +[3ac 01-13 06:14:13.09 UTC] [github.com/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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3ad 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[3ae 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[3af 01-13 06:14:13.09 UTC] [github.com/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 +[3b0 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3b 11 ce 2d a8 b7 10 d1 10 8c e1 e4 81 54 74 79 |;..-.........Tty| +00000010 0a e5 c0 30 41 c7 50 0f 37 e7 a2 db 51 e0 c1 95 |...0A.P.7...Q...| +[3b1 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a0 b2 3e 69 36 3b 27 7d 07 57 0c |0E.!...>i6;'}.W.| +00000010 9f 23 1f 46 de 1d 77 fa 5e 86 6f a7 28 3f 23 b7 |.#.F..w.^.o.(?#.| +00000020 26 2e c9 ff 24 02 20 6b 3c 9d 5d ae 40 25 7a ff |&...$. k<.].@%z.| +00000030 96 d9 c1 a5 df e3 6a 45 b3 f0 b0 87 ba a1 ad e6 |......jE........| +00000040 82 67 16 27 a5 c1 60 |.g.'..`| +[3b2 01-13 06:14:13.09 UTC] [github.com/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 +[3b3 01-13 06:14:13.09 UTC] [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 1515824053095655929 evaluation succeeds +[3b4 01-13 06:14:13.09 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 +[3b5 01-13 06:14:13.09 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 +[3b6 01-13 06:14:13.09 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 +[3b7 01-13 06:14:13.09 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 +[3b8 01-13 06:14:13.09 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 +[3b9 01-13 06:14:13.09 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 +[3ba 01-13 06:14:13.09 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 +[3bb 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3bc 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3bd 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3be 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3bf 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c0 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c1 01-13 06:14:13.09 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 +[3c2 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c3 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c4 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c5 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c6 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c7 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c8 01-13 06:14:13.09 UTC] [github.com/hyperledger/fabric/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 +[3c9 01-13 06:14:13.09 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 +[3ca 01-13 06:14:13.09 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 +[3cb 01-13 06:14:13.10 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] +[3cc 01-13 06:14:13.10 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 +[3cd 01-13 06:14:13.10 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 +[3ce 01-13 06:14:13.10 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 [] +[3cf 01-13 06:14:13.10 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 +[3d0 01-13 06:14:13.10 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 +[3d1 01-13 06:14:13.10 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] +[3d2 01-13 06:14:13.10 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 +[3d3 01-13 06:14:13.10 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 +[3d4 01-13 06:14:13.10 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 [] +[3d5 01-13 06:14:13.10 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 == +[3d6 01-13 06:14:13.10 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 0xc42000e378 gate 1515824053101140585 evaluation starts +[3d7 01-13 06:14:13.10 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 0xc42000e378 signed by 0 principal evaluation starts (used [false]) +[3d8 01-13 06:14:13.10 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 0xc42000e378 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3d9 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[3da 01-13 06:14:13.10 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 0xc42000e378 principal matched by identity 0 +[3db 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c c3 f4 b0 ae e6 51 cb f5 24 c3 f9 ab 62 1e 16 |L.....Q..$...b..| +00000010 98 1e a5 14 77 93 b9 55 8a f8 5a 95 41 bc e3 d4 |....w..U..Z.A...| +[3dc 01-13 06:14:13.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5e c4 6b 25 d4 74 88 f0 30 0a 19 |0D. K^.k%.t..0..| +00000010 7e 8b 7a 04 7c e4 6f e9 4d bb 5e ba e3 57 de b9 |~.z.|.o.M.^..W..| +00000020 49 4e a9 09 02 20 69 3a 03 c5 e6 05 46 07 6a af |IN... i:....F.j.| +00000030 00 87 17 09 de b2 ed 84 68 80 e3 46 52 54 31 b5 |........h..FRT1.| +00000040 34 cc 08 ec 28 53 |4...(S| +[3dd 01-13 06:14:13.10 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 0xc42000e378 principal evaluation succeeds for identity 0 +[3de 01-13 06:14:13.10 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 0xc42000e378 gate 1515824053101140585 evaluation succeeds +[3df 01-13 06:14:13.10 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 +[3e0 01-13 06:14:13.10 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 +[3e1 01-13 06:14:13.10 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 +[3e2 01-13 06:14:13.10 UTC] [github.com/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 01-13 06:14:13.10 UTC] [github.com/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" +[3e4 01-13 06:14:13.10 UTC] [github.com/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" +[3e5 01-13 06:14:13.10 UTC] [github.com/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" +[3e6 01-13 06:14:13.10 UTC] [github.com/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 01-13 06:14:13.10 UTC] [github.com/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" +[3e8 01-13 06:14:13.10 UTC] [github.com/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" +[3e9 01-13 06:14:13.10 UTC] [github.com/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 +[3ea 01-13 06:14:13.10 UTC] [github.com/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 +[3eb 01-13 06:14:13.10 UTC] [github.com/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 +[3ec 01-13 06:14:13.10 UTC] [github.com/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" +[3ed 01-13 06:14:13.10 UTC] [github.com/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 01-13 06:14:13.10 UTC] [github.com/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 01-13 06:14:13.10 UTC] [github.com/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 01-13 06:14:13.10 UTC] [github.com/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" +[3f1 01-13 06:14:13.10 UTC] [github.com/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" +[3f2 01-13 06:14:13.10 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" +[3f3 01-13 06:14:13.10 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" +[3f4 01-13 06:14:13.10 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" +[3f5 01-13 06:14:13.10 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 +[3f6 01-13 06:14:13.10 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 +[3f7 01-13 06:14:13.10 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 +[3f8 01-13 06:14:13.10 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 +[3f9 01-13 06:14:13.10 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 +[3fa 01-13 06:14:13.10 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 +[3fb 01-13 06:14:13.10 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 +[3fc 01-13 06:14:13.10 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 +[3fd 01-13 06:14:13.10 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 +[3fe 01-13 06:14:13.10 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 +[3ff 01-13 06:14:13.10 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 +[400 01-13 06:14:13.10 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 +[401 01-13 06:14:13.10 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 +[402 01-13 06:14:13.10 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 +[403 01-13 06:14:13.10 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 +[404 01-13 06:14:13.10 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 +[405 01-13 06:14:13.10 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 +[406 01-13 06:14:13.10 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 +[407 01-13 06:14:13.10 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 +[408 01-13 06:14:13.10 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1569,7 +1578,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[400 01-05 06:36:28.23 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----- +[409 01-13 06:14:13.10 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1582,19 +1591,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[401 01-05 06:36:28.23 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 -[402 01-05 06:36:28.23 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 -[403 01-05 06:36:28.23 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 -[404 01-05 06:36:28.23 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 -[405 01-05 06:36:28.23 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 -[406 01-05 06:36:28.23 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 -[407 01-05 06:36:28.23 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 -[408 01-05 06:36:28.23 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 -[409 01-05 06:36:28.23 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 -[40a 01-05 06:36:28.23 UTC] [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 -[40b 01-05 06:36:28.23 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 -[40c 01-05 06:36:28.23 UTC] [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 -[40d 01-05 06:36:28.23 UTC] [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----- +[40a 01-13 06:14:13.11 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 +[40b 01-13 06:14:13.11 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 +[40c 01-13 06:14:13.11 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 +[40d 01-13 06:14:13.11 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 +[40e 01-13 06:14:13.11 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 +[40f 01-13 06:14:13.11 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 +[410 01-13 06:14:13.11 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 +[411 01-13 06:14:13.11 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 +[412 01-13 06:14:13.11 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 +[413 01-13 06:14:13.11 UTC] [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 +[414 01-13 06:14:13.11 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 +[415 01-13 06:14:13.11 UTC] [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 +[416 01-13 06:14:13.11 UTC] [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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1609,7 +1618,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[40e 01-05 06:36:28.23 UTC] [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----- +[417 01-13 06:14:13.11 UTC] [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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1623,17 +1632,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[40f 01-05 06:36:28.23 UTC] [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 -[410 01-05 06:36:28.23 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 -[411 01-05 06:36:28.23 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 -[412 01-05 06:36:28.23 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 -[413 01-05 06:36:28.23 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 -[414 01-05 06:36:28.23 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: -[415 01-05 06:36:28.23 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 -[416 01-05 06:36:28.23 UTC] [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 -[417 01-05 06:36:28.23 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 -[418 01-05 06:36:28.23 UTC] [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 -[419 01-05 06:36:28.23 UTC] [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----- +[418 01-13 06:14:13.11 UTC] [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 +[419 01-13 06:14:13.11 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 +[41a 01-13 06:14:13.11 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 +[41b 01-13 06:14:13.11 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 +[41c 01-13 06:14:13.11 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 +[41d 01-13 06:14:13.11 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: +[41e 01-13 06:14:13.11 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 +[41f 01-13 06:14:13.11 UTC] [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 +[420 01-13 06:14:13.11 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 +[421 01-13 06:14:13.11 UTC] [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 +[422 01-13 06:14:13.11 UTC] [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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1648,7 +1657,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[41a 01-05 06:36:28.23 UTC] [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----- +[423 01-13 06:14:13.11 UTC] [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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1662,98 +1671,98 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[41b 01-05 06:36:28.23 UTC] [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 -[41c 01-05 06:36:28.23 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) -[41d 01-05 06:36:28.23 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 -[41e 01-05 06:36:28.23 UTC] [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 -[41f 01-05 06:36:28.23 UTC] [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 -[420 01-05 06:36:28.23 UTC] [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 -[421 01-05 06:36:28.23 UTC] [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 -[422 01-05 06:36:28.23 UTC] [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 -[423 01-05 06:36:28.23 UTC] [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 -[424 01-05 06:36:28.23 UTC] [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 -[425 01-05 06:36:28.23 UTC] [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 -[426 01-05 06:36:28.23 UTC] [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 -[427 01-05 06:36:28.23 UTC] [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 -[428 01-05 06:36:28.23 UTC] [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 -[429 01-05 06:36:28.23 UTC] [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 -[42a 01-05 06:36:28.23 UTC] [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 -[42b 01-05 06:36:28.24 UTC] [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 -[42c 01-05 06:36:28.24 UTC] [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 -[42d 01-05 06:36:28.24 UTC] [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 -[42e 01-05 06:36:28.24 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 -[42f 01-05 06:36:28.24 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 -[430 01-05 06:36:28.24 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 -[431 01-05 06:36:28.24 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 -[432 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[433 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[434 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[435 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[436 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[437 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[438 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[439 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[43a 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[43b 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43c 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43d 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43e 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[43f 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[440 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[441 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[442 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[443 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[444 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[445 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[446 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[447 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[448 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[449 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[44a 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[44b 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[44c 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/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 -[44d 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[44e 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[44f 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[450 01-05 06:36:28.24 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[451 01-05 06:36:28.24 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 -[452 01-05 06:36:28.24 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 -[453 01-05 06:36:28.24 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 -[454 01-05 06:36:28.24 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 -[455 01-05 06:36:28.24 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 -[456 01-05 06:36:28.24 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 -[457 01-05 06:36:28.24 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 -[458 01-05 06:36:28.24 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 -[459 01-05 06:36:28.24 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' -[45a 01-05 06:36:28.24 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' -[45b 01-05 06:36:28.24 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] -[45c 01-05 06:36:28.24 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 -[45d 01-05 06:36:28.24 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 -[45e 01-05 06:36:28.24 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 [] -[45f 01-05 06:36:28.24 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 -[460 01-05 06:36:28.24 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 -[461 01-05 06:36:28.24 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' -[462 01-05 06:36:28.24 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' -[463 01-05 06:36:28.24 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' -[464 01-05 06:36:28.25 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] -[465 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[466 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[467 01-05 06:36:28.25 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 [] -[468 01-05 06:36:28.25 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 -[469 01-05 06:36:28.25 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' -[46a 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[46b 01-05 06:36:28.25 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 -[46c 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[46d 01-05 06:36:28.25 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 -[46e 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608ECB9BCD20522...8591D50E4375C0522D0C71786007D4D2 -[46f 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 6AF815CC4A8801DF14DDD6889D39B5F0DFCD76B1823310A0C845F5E4E9391032 -[470 01-05 06:36:28.25 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 == -[471 01-05 06:36:28.25 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 -[472 01-05 06:36:28.25 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 == -[473 01-05 06:36:28.25 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 -[474 01-05 06:36:28.25 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 == -[475 01-05 06:36:28.25 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 -[476 01-05 06:36:28.25 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----- +[424 01-13 06:14:13.11 UTC] [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 +[425 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[426 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[427 01-13 06:14:13.11 UTC] [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 +[428 01-13 06:14:13.11 UTC] [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 +[429 01-13 06:14:13.11 UTC] [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 +[42a 01-13 06:14:13.11 UTC] [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 +[42b 01-13 06:14:13.11 UTC] [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 +[42c 01-13 06:14:13.11 UTC] [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 +[42d 01-13 06:14:13.11 UTC] [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 +[42e 01-13 06:14:13.11 UTC] [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 +[42f 01-13 06:14:13.11 UTC] [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 +[430 01-13 06:14:13.11 UTC] [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 +[431 01-13 06:14:13.11 UTC] [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 +[432 01-13 06:14:13.11 UTC] [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 +[433 01-13 06:14:13.11 UTC] [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 +[434 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[435 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[436 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[437 01-13 06:14:13.11 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 +[438 01-13 06:14:13.11 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 +[439 01-13 06:14:13.11 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 +[43a 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[43b 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[43c 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[43d 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[43e 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[43f 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[440 01-13 06:14:13.11 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[441 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[442 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[443 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[444 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[445 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[446 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[447 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[448 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[449 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[44a 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[44b 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[44c 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[44d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[44e 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[44f 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[450 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[451 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[452 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/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 +[453 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[454 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[455 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[456 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[457 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[458 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[459 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[45a 01-13 06:14:13.12 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 +[45b 01-13 06:14:13.12 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 +[45c 01-13 06:14:13.12 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 +[45d 01-13 06:14:13.12 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 +[45e 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[45f 01-13 06:14:13.12 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 +[460 01-13 06:14:13.12 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 +[461 01-13 06:14:13.12 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 +[462 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[463 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[464 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[465 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[466 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[467 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[468 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[469 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[46a 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[46b 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[46c 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[46d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[46e 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[46f 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[470 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[471 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[472 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[473 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[474 01-13 06:14:13.12 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 +[475 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[476 01-13 06:14:13.12 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 +[477 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608B5C7E6D20522...45B3F0B087BAA1ADE682671627A5C160 +[478 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 8EDE745573BD5D18153BBFFA44D84BC12F26100DB4E5D9D6464224B1F98739C7 +[479 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[47a 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[47b 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[47c 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[47d 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[47e 01-13 06:14:13.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[47f 01-13 06:14:13.12 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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1766,114 +1775,137 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[477 01-05 06:36:28.25 UTC] [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 1515134188253276100 evaluation starts -[478 01-05 06:36:28.25 UTC] [github.com/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]) -[479 01-05 06:36:28.25 UTC] [github.com/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 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[47a 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[47b 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[47c 01-05 06:36:28.25 UTC] [github.com/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 -[47d 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6a f8 15 cc 4a 88 01 df 14 dd d6 88 9d 39 b5 f0 |j...J........9..| -00000010 df cd 76 b1 82 33 10 a0 c8 45 f5 e4 e9 39 10 32 |..v..3...E...9.2| -[47e 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ac 09 9f 3f 17 a8 8e ca b9 d5 57 |0E.!....?......W| -00000010 f2 07 02 4a 4e 1a 6e 61 b9 d1 39 11 8e 76 9e b5 |...JN.na..9..v..| -00000020 c1 0a db ed d1 02 20 6f 26 a5 1c 10 06 b3 cf 89 |...... o&.......| -00000030 2f 97 9e 5d 8f 3e 27 09 a7 d2 6b 77 1a 63 ba 36 |/..].>'...kw.c.6| -00000040 0b b4 fe a8 91 13 a4 |.......| -[47f 01-05 06:36:28.25 UTC] [github.com/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 -[480 01-05 06:36:28.25 UTC] [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 1515134188253276100 evaluation succeeds -[481 01-05 06:36:28.25 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 -[482 01-05 06:36:28.25 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 -[483 01-05 06:36:28.25 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 -[484 01-05 06:36:28.25 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 -[485 01-05 06:36:28.25 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 -[486 01-05 06:36:28.25 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 -[487 01-05 06:36:28.25 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:44096 -[488 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44096: rpc error: code = Canceled desc = context canceled -[489 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[48a 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[48b 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[48c 01-05 06:36:28.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[48d 01-05 06:36:28.25 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 -[48e 01-05 06:36:28.25 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 -[48f 01-05 06:36:28.26 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 -[490 01-05 06:36:28.26 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 -[491 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[492 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[493 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[494 01-05 06:36:28.26 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 -[495 01-05 06:36:28.26 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 -[496 01-05 06:36:28.26 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 -[497 01-05 06:36:28.26 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 -[498 01-05 06:36:28.26 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 -[499 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[49a 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[49b 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[49c 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[49d 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[49e 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[49f 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4a0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4a1 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[4a2 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4a3 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4a4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[4a5 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[4a6 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515134188261203600 evaluation starts -[4a7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 signed by 0 principal evaluation starts (used [false]) -[4a8 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[4a9 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[4aa 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal matched by identity 0 -[4ab 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 7f e0 1d 3b 22 f8 53 8e c4 4a 6a fb 05 7e 64 |L...;".S..Jj..~d| -00000010 19 b7 21 46 84 4b 1c 17 af f0 cd 19 20 d7 5a b9 |..!F.K...... .Z.| -[4ac 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f c4 b0 28 8f 25 b2 d3 15 a3 1f 62 |0D. o..(.%.....b| -00000010 94 9b 58 48 34 0a 17 87 d1 b3 9a 1e 91 ba d7 c7 |..XH4...........| -00000020 ab c1 81 e0 02 20 26 eb 67 9d 32 09 6e 81 3a 9e |..... &.g.2.n.:.| -00000030 df 21 9d 9d 1d d3 55 23 7b 6c 1b 9a 2e 0e a7 11 |.!....U#{l......| -00000040 44 b8 50 7c 43 2f |D.P|C/| -[4ad 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal evaluation succeeds for identity 0 -[4ae 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515134188261203600 evaluation succeeds -[4af 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[4b0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[4b1 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[4b2 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4b3 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4b5 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4b6 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4b7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[4b8 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4b9 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4b4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44094: rpc error: code = Canceled desc = context canceled -[4ba 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[4bb 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4bc 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4bd 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4be 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[4bf 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[4c0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[4c1 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4c2 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4c3 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4c4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4c5 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4c6 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4c7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[4c8 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4c9 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4ca 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4cb 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4cc 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4cd 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[4ce 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4cf 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4d0 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4d1 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4d2 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4d3 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[4d4 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[4d5 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4d6 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4d7 01-05 06:36:28.26 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[4d8 01-05 06:36:28.26 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----- +[480 01-13 06:14:13.13 UTC] [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 0xc42011ce10 gate 1515824053130235231 evaluation starts +[481 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 signed by 0 principal evaluation starts (used [false]) +[482 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[483 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[484 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce10 principal evaluation fails +[485 01-13 06:14:13.13 UTC] [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 0xc42011ce10 gate 1515824053130235231 evaluation fails +[486 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +[487 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[488 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[489 01-13 06:14:13.13 UTC] [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 0xc42011ce20 gate 1515824053131304696 evaluation starts +[48a 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 signed by 0 principal evaluation starts (used [false]) +[48b 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[48c 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[48d 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce20 principal evaluation fails +[48e 01-13 06:14:13.13 UTC] [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 0xc42011ce20 gate 1515824053131304696 evaluation fails +[48f 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[490 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[491 01-13 06:14:13.13 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 ] +[492 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers +[493 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[494 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[495 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[496 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[497 01-13 06:14:13.13 UTC] [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 0xc42011ce28 gate 1515824053132897299 evaluation starts +[498 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 signed by 0 principal evaluation starts (used [false]) +[499 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[49a 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[49b 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[49c 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 principal matched by identity 0 +[49d 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8e de 74 55 73 bd 5d 18 15 3b bf fa 44 d8 4b c1 |..tUs.]..;..D.K.| +00000010 2f 26 10 0d b4 e5 d9 d6 46 42 24 b1 f9 87 39 c7 |/&......FB$...9.| +[49e 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f 26 32 b7 81 0b b2 ed e7 bf a1 e2 |0D. _&2.........| +00000010 ef 65 26 f4 70 d1 c6 90 be de da 60 d2 f4 48 27 |.e&.p......`..H'| +00000020 14 e8 5d 38 02 20 7d 67 48 bf 4a 8b 45 e6 ef a9 |..]8. }gH.J.E...| +00000030 1a 45 67 4f 92 6d 07 d3 a5 16 1d d1 ff 66 3a 58 |.EgO.m.......f:X| +00000040 fe ff 44 ff 1e b8 |..D...| +[49f 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011ce28 principal evaluation succeeds for identity 0 +[4a0 01-13 06:14:13.13 UTC] [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 0xc42011ce28 gate 1515824053132897299 evaluation succeeds +[4a1 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[4a2 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[4a3 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[4a4 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[4a5 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[4a6 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[4a7 01-13 06:14:13.13 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.8:50086 +[4a8 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[4a9 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[4aa 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[4ab 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[4ac 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[4ad 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[4ae 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[4af 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[4b0 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[4b1 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[4b2 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[4b3 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[4b4 01-13 06:14:13.13 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 +[4b5 01-13 06:14:13.13 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 +[4b6 01-13 06:14:13.13 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 +[4b7 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[4b8 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[4b9 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[4ba 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[4bb 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[4bc 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[4bd 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[4be 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[4bf 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +[4c0 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[4c1 01-13 06:14:13.13 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[4c2 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +[4c3 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[4c4 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011d428 gate 1515824053140898396 evaluation starts +[4c5 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 signed by 0 principal evaluation starts (used [false]) +[4c6 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[4c7 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[4c8 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 principal matched by identity 0 +[4c9 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c c3 f4 b0 ae e6 51 cb f5 24 c3 f9 ab 62 1e 16 |L.....Q..$...b..| +00000010 98 1e a5 14 77 93 b9 55 8a f8 5a 95 41 bc e3 d4 |....w..U..Z.A...| +[4ca 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5e c4 6b 25 d4 74 88 f0 30 0a 19 |0D. K^.k%.t..0..| +00000010 7e 8b 7a 04 7c e4 6f e9 4d bb 5e ba e3 57 de b9 |~.z.|.o.M.^..W..| +00000020 49 4e a9 09 02 20 69 3a 03 c5 e6 05 46 07 6a af |IN... i:....F.j.| +00000030 00 87 17 09 de b2 ed 84 68 80 e3 46 52 54 31 b5 |........h..FRT1.| +00000040 34 cc 08 ec 28 53 |4...(S| +[4cb 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d428 principal evaluation succeeds for identity 0 +[4cc 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011d428 gate 1515824053140898396 evaluation succeeds +[4cd 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[4ce 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[4cf 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[4d0 01-13 06:14:13.14 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 01-13 06:14:13.14 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 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4d4 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4d5 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[4d6 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4d7 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4d8 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4da 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4db 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4d3 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50086, hangup +[4dc 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[4de 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[4df 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[4e0 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4dd 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[4e1 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4e2 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4d9 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50084: rpc error: code = Canceled desc = context canceled +[4e3 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4e4 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[4e5 01-13 06:14:13.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4e6 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4e7 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[4e8 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[4e9 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[4ea 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[4eb 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[4ec 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4ed 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[4ee 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4ef 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4f0 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4f1 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4f2 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4f3 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[4f4 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[4f5 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[4f6 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[4f7 01-13 06:14:13.15 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[4f8 01-13 06:14:13.15 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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1888,7 +1920,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[4d9 01-05 06:36:28.26 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----- +[4f9 01-13 06:14:13.15 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1902,17 +1934,17 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[4da 01-05 06:36:28.27 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 -[4db 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4dc 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4dd 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4de 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4df 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[4e0 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[4e1 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4e2 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4e3 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[4e4 01-05 06:36:28.27 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----- +[4fa 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[4fb 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4fc 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4fd 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4fe 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4ff 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[500 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[501 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[502 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[503 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[504 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1927,7 +1959,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[4e5 01-05 06:36:28.27 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----- +[505 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1941,21 +1973,21 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[4e6 01-05 06:36:28.27 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 -[4e7 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[4e8 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[4e9 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[4ea 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[4eb 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[4ec 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[4ed 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4ee 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4ef 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4f0 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[4f1 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4f2 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4f3 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[4f4 01-05 06:36:28.27 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----- +[506 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[507 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[508 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[509 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[50a 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[50b 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[50c 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[50d 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[50e 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[50f 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[510 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[511 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[512 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[513 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[514 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1969,7 +2001,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[4f5 01-05 06:36:28.27 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----- +[515 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1982,118 +2014,118 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[4f6 01-05 06:36:28.27 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 -[4f7 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[4f8 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[4f9 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[4fa 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[4fb 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[4fc 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[4fd 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[4fe 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[4ff 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[500 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[501 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[502 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[503 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[504 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[505 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[506 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[507 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[508 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[509 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[50a 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[50b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[50c 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[50d 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[50e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[50f 01-05 06:36:28.27 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 -[510 01-05 06:36:28.27 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 -[511 01-05 06:36:28.27 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 -[512 01-05 06:36:28.27 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 -[513 01-05 06:36:28.27 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 -[514 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[515 01-05 06:36:28.27 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 -[516 01-05 06:36:28.27 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 -[517 01-05 06:36:28.27 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 -[518 01-05 06:36:28.27 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 -[519 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[51a 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[51b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[51c 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[51d 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[51e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[51f 01-05 06:36:28.27 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 -[520 01-05 06:36:28.27 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 -[521 01-05 06:36:28.27 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 -[522 01-05 06:36:28.27 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 -[523 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[524 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[525 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[526 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[527 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[528 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[529 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[52a 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[52b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[52c 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[52d 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[52e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[52f 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[530 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[531 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[532 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[533 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[534 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[535 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[536 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[537 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[538 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[539 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[53a 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[53b 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[53c 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[53d 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[53e 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[53f 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[540 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[541 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[542 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[543 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[544 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[545 01-05 06:36:28.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[546 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[547 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[548 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[549 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...312925776656E13DE17855CDB72B1A97 -[54a 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 4588F36052957A7130D6180848ED110DFE0A900E74A5A2744C98568D746F2B44 -[54b 01-05 06:36:28.28 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 -[54c 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[54d 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[54e 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[54f 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[550 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[551 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...312925776656E13DE17855CDB72B1A97 -[552 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 55CC5E8F461922F91CB0A4591E665D2A94673832D2615B97F3E7182BC7B162A4 -[553 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= +[516 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[517 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[518 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[519 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[51a 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[51b 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[51c 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[51d 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[51e 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[51f 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[520 01-13 06:14:13.16 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[521 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[522 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[523 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[524 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[525 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[526 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[527 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[528 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[529 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[52a 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[52b 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[52c 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[52d 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[52e 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[52f 01-13 06:14:13.17 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 +[530 01-13 06:14:13.17 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 +[531 01-13 06:14:13.17 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 +[532 01-13 06:14:13.17 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 +[533 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[534 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[535 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[536 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[537 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[538 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[539 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[53a 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[53b 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[53c 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[53d 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[53e 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[53f 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[540 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[541 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[542 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[543 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[544 01-13 06:14:13.17 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[545 01-13 06:14:13.18 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 +[546 01-13 06:14:13.18 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 +[547 01-13 06:14:13.18 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 +[548 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[549 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[54a 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[54b 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[54c 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[54d 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[54e 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[54f 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[550 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[551 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[552 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[553 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[554 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[555 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[556 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[557 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[558 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[559 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[55a 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[55b 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[55c 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[55d 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[55e 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[55f 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[560 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[561 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[562 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[563 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[564 01-13 06:14:13.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[565 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[566 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[567 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[568 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[569 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...AB9CC570A28A0EE5098783BD7DAC5ACD +[56a 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 94EF53F06FB8F1629610F01BE45A788C8F5DF84CD9EC91E217630363089B01CB +[56b 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 +[56c 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[56d 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[56e 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +[56f 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[570 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[571 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...AB9CC570A28A0EE5098783BD7DAC5ACD +[572 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C7522C1B21D5E71D276B097EC604659779179CBF81B499C122EE10FD94488CE5 +[573 01-13 06:14:13.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= txId= locPointer=offset=70, bytesLength=12093 ] -[554 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26077], isChainEmpty=[false], lastBlockNumber=[1] -[555 01-05 06:36:28.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -[556 01-05 06:36:30.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[557 01-05 06:36:30.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:44098 -[558 01-05 06:36:30.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:44098 -[559 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[55a 01-05 06:36:30.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:44100 -[55b 01-05 06:36:30.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:44100 -[55c 01-05 06:36:30.40 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 -[55d 01-05 06:36:30.40 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 == -[55e 01-05 06:36:30.40 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 -[55f 01-05 06:36:30.40 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 == -[560 01-05 06:36:30.40 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 -[561 01-05 06:36:30.40 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 == -[562 01-05 06:36:30.40 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 -[563 01-05 06:36:30.40 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----- +[574 01-13 06:14:13.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26078], isChainEmpty=[false], lastBlockNumber=[1] +[575 01-13 06:14:13.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 +[576 01-13 06:14:15.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[577 01-13 06:14:15.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50088 +[578 01-13 06:14:15.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.8:50088 +[579 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[57a 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50090 +[57b 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.8:50090 +[57c 01-13 06:14:15.29 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 +[57d 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[57e 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[57f 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[580 01-13 06:14:15.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[581 01-13 06:14:15.29 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 == +[582 01-13 06:14:15.29 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 +[583 01-13 06:14:15.29 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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2107,120 +2139,125 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[564 01-05 06:36:30.40 UTC] [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 0xc42000e750 gate 1515134190406874900 evaluation starts -[565 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 signed by 0 principal evaluation starts (used [false]) -[566 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[567 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[568 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e750 principal evaluation fails -[569 01-05 06:36:30.40 UTC] [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 0xc42000e750 gate 1515134190406874900 evaluation fails -[56a 01-05 06:36:30.40 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 -[56b 01-05 06:36:30.40 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 -[56c 01-05 06:36:30.40 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 == -[56d 01-05 06:36:30.40 UTC] [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 0xc42000e760 gate 1515134190407673500 evaluation starts -[56e 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 signed by 0 principal evaluation starts (used [false]) -[56f 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[570 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[571 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[572 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 principal matched by identity 0 -[573 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 09 00 94 f3 14 48 12 21 bc 3f 25 08 77 49 13 1e |.....H.!.?%.wI..| -00000010 5d f6 f7 22 20 ff 98 35 b1 f1 ef e1 8d 5d 2d fa |].." ..5.....]-.| -[574 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7d 18 bf 24 e8 f8 2a 91 81 c8 8c 53 |0D. }..$..*....S| -00000010 a4 a2 21 c4 f2 c3 82 37 a6 c9 cb ad 63 19 56 c2 |..!....7....c.V.| -00000020 8f 3c 5b fb 02 20 1c dd 9a 32 2f 8f 8a 43 91 63 |.<[.. ...2/..C.c| -00000030 2a be 6f b1 1f a5 e9 2c 66 a5 0e 6a bc 22 aa 08 |*.o....,f..j."..| -00000040 9e cc 0d 41 d2 b4 |...A..| -[575 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e760 principal evaluation succeeds for identity 0 -[576 01-05 06:36:30.40 UTC] [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 0xc42000e760 gate 1515134190407673500 evaluation succeeds -[577 01-05 06:36:30.40 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 -[578 01-05 06:36:30.40 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 -[579 01-05 06:36:30.40 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 -[57a 01-05 06:36:30.40 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 -[57b 01-05 06:36:30.40 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 -[57c 01-05 06:36:30.40 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 -[57d 01-05 06:36:30.40 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 -[57e 01-05 06:36:30.40 UTC] [github.com/hyperledger/fabric/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 -[57f 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[580 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[581 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[582 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[583 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[584 01-05 06:36:30.41 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 -[585 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[586 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[587 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[588 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[589 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[58a 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[58b 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/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 -[58c 01-05 06:36:30.41 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 -[58d 01-05 06:36:30.41 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 -[58e 01-05 06:36:30.41 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] -[58f 01-05 06:36:30.41 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 -[590 01-05 06:36:30.41 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 -[591 01-05 06:36:30.41 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 [] -[592 01-05 06:36:30.41 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 -[593 01-05 06:36:30.41 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 -[594 01-05 06:36:30.41 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] -[595 01-05 06:36:30.41 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 -[596 01-05 06:36:30.41 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 -[597 01-05 06:36:30.41 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 [] -[598 01-05 06:36:30.41 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 == -[599 01-05 06:36:30.41 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 0xc42000e9b8 gate 1515134190413670500 evaluation starts -[59a 01-05 06:36:30.41 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 0xc42000e9b8 signed by 0 principal evaluation starts (used [false]) -[59b 01-05 06:36:30.41 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 0xc42000e9b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[59c 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[59d 01-05 06:36:30.41 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 0xc42000e9b8 principal matched by identity 0 -[59e 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7d 1e dc cf 17 d5 a8 4e 1b e1 62 18 e4 33 dd 59 |}......N..b..3.Y| -00000010 41 f8 0c 43 8b d7 cc a4 01 f5 4b c5 89 6b 2a 28 |A..C......K..k*(| -[59f 01-05 06:36:30.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c9 fc f2 46 e5 ca 22 7c ad 0c c9 |0E.!....F.."|...| -00000010 9a 26 c6 f7 59 38 f7 3e 52 80 cb f8 3a ce 2c 64 |.&..Y8.>R...:.,d| -00000020 7a 4a 18 06 76 02 20 32 9f e9 de c5 d7 20 3c 18 |zJ..v. 2..... <.| -00000030 f5 d9 ef 9f ae 9f 2f 51 62 c6 72 62 e5 86 55 72 |....../Qb.rb..Ur| -00000040 63 46 38 65 91 c7 60 |cF8e..`| -[5a0 01-05 06:36:30.41 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 0xc42000e9b8 principal evaluation succeeds for identity 0 -[5a1 01-05 06:36:30.41 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 0xc42000e9b8 gate 1515134190413670500 evaluation succeeds -[5a2 01-05 06:36:30.41 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 -[5a3 01-05 06:36:30.41 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 -[5a4 01-05 06:36:30.41 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 -[5a5 01-05 06:36:30.41 UTC] [github.com/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 -[5a6 01-05 06:36:30.41 UTC] [github.com/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 -[5a7 01-05 06:36:30.41 UTC] [github.com/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 -[5a8 01-05 06:36:30.41 UTC] [github.com/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" -[5a9 01-05 06:36:30.41 UTC] [github.com/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" -[5aa 01-05 06:36:30.41 UTC] [github.com/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" -[5ab 01-05 06:36:30.41 UTC] [github.com/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" -[5ac 01-05 06:36:30.41 UTC] [github.com/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" -[5ad 01-05 06:36:30.41 UTC] [github.com/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" -[5ae 01-05 06:36:30.41 UTC] [github.com/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" -[5af 01-05 06:36:30.41 UTC] [github.com/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" -[5b0 01-05 06:36:30.41 UTC] [github.com/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" -[5b1 01-05 06:36:30.41 UTC] [github.com/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" -[5b2 01-05 06:36:30.41 UTC] [github.com/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" -[5b3 01-05 06:36:30.41 UTC] [github.com/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" -[5b4 01-05 06:36:30.41 UTC] [github.com/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" -[5b5 01-05 06:36:30.41 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" -[5b6 01-05 06:36:30.41 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" -[5b7 01-05 06:36:30.41 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" -[5b8 01-05 06:36:30.41 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 -[5b9 01-05 06:36:30.41 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 -[5ba 01-05 06:36:30.41 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 -[5bb 01-05 06:36:30.42 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 -[5bc 01-05 06:36:30.42 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 -[5bd 01-05 06:36:30.42 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 -[5be 01-05 06:36:30.42 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 -[5bf 01-05 06:36:30.42 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 -[5c0 01-05 06:36:30.42 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 -[5c1 01-05 06:36:30.42 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 -[5c2 01-05 06:36:30.42 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 -[5c3 01-05 06:36:30.42 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 -[5c4 01-05 06:36:30.42 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 -[5c5 01-05 06:36:30.42 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 -[5c6 01-05 06:36:30.42 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 -[5c7 01-05 06:36:30.42 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 -[5c8 01-05 06:36:30.42 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 -[5c9 01-05 06:36:30.42 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 -[5ca 01-05 06:36:30.42 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 -[5cb 01-05 06:36:30.42 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----- +[584 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c890 gate 1515824055300147432 evaluation starts +[585 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 signed by 0 principal evaluation starts (used [false]) +[586 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[587 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[588 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c890 principal evaluation fails +[589 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c890 gate 1515824055300147432 evaluation fails +[58a 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[58b 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[58c 01-13 06:14:15.30 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 ] +[58d 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[58e 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[58f 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[590 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[591 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[592 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c8a8 gate 1515824055303480465 evaluation starts +[593 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 signed by 0 principal evaluation starts (used [false]) +[594 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[595 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[596 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[597 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 principal matched by identity 0 +[598 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 34 41 16 ad 3d 61 af af 8b 39 aa 83 f9 91 b9 |I4A..=a...9.....| +00000010 a2 b3 48 1f 2c da 32 67 38 3a ae 3e 57 71 7f ee |..H.,.2g8:.>Wq..| +[599 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f ae ef c3 d2 a1 3f cb 29 2e 08 be |0D. ......?.)...| +00000010 3e 1c bb c1 5d a5 e1 b1 e5 39 49 35 9b 40 dd 1a |>...]....9I5.@..| +00000020 30 c0 99 99 02 20 62 65 47 1b 84 62 05 c2 5a 52 |0.... beG..b..ZR| +00000030 24 2f 22 59 7b 64 99 ce c8 99 b5 40 a3 87 bd 8d |$/"Y{d.....@....| +00000040 cd eb 78 43 15 db |..xC..| +[59a 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c8a8 principal evaluation succeeds for identity 0 +[59b 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c8a8 gate 1515824055303480465 evaluation succeeds +[59c 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[59d 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[59e 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[59f 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[5a0 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[5a1 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[5a2 01-13 06:14:15.30 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 +[5a3 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +[5a4 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +[5a5 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +[5a6 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +[5a7 01-13 06:14:15.30 UTC] [github.com/hyperledger/fabric/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 +[5a8 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5a9 01-13 06:14:15.31 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 +[5aa 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5ab 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5ac 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5ad 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5ae 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5af 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5b0 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/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 +[5b1 01-13 06:14:15.31 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 +[5b2 01-13 06:14:15.31 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 +[5b3 01-13 06:14:15.31 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 +[5b4 01-13 06:14:15.31 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] +[5b5 01-13 06:14:15.31 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 +[5b6 01-13 06:14:15.31 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 +[5b7 01-13 06:14:15.31 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 [] +[5b8 01-13 06:14:15.31 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 +[5b9 01-13 06:14:15.31 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 +[5ba 01-13 06:14:15.31 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] +[5bb 01-13 06:14:15.31 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 +[5bc 01-13 06:14:15.31 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 +[5bd 01-13 06:14:15.31 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 [] +[5be 01-13 06:14:15.31 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 == +[5bf 01-13 06:14:15.31 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 0xc42011cc40 gate 1515824055314129438 evaluation starts +[5c0 01-13 06:14:15.31 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 0xc42011cc40 signed by 0 principal evaluation starts (used [false]) +[5c1 01-13 06:14:15.31 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 0xc42011cc40 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[5c2 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[5c3 01-13 06:14:15.31 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 0xc42011cc40 principal matched by identity 0 +[5c4 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e5 7b 2f 8b 7e 3e 73 76 bf ba 28 ee ae 4d ae f5 |.{/.~>sv..(..M..| +00000010 de 7a 8d 26 cd 82 48 cc 62 0c 52 56 d0 d1 9f 36 |.z.&..H.b.RV...6| +[5c5 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f 8a a6 39 ab 13 67 10 18 5e f2 30 |0D. ...9..g..^.0| +00000010 de db b5 c2 60 7b 1d 2f b5 bc 6c aa cc 9c 69 1d |....`{./..l...i.| +00000020 38 30 c9 a4 02 20 04 c1 b5 8b 6f c7 d1 f6 c3 42 |80... ....o....B| +00000030 88 aa 66 9c c6 ca f4 5b cf 83 b1 72 12 9f fd 16 |..f....[...r....| +00000040 d4 03 01 7c b2 55 |...|.U| +[5c6 01-13 06:14:15.31 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 0xc42011cc40 principal evaluation succeeds for identity 0 +[5c7 01-13 06:14:15.31 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 0xc42011cc40 gate 1515824055314129438 evaluation succeeds +[5c8 01-13 06:14:15.31 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 +[5c9 01-13 06:14:15.31 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 +[5ca 01-13 06:14:15.31 UTC] [github.com/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" +[5cb 01-13 06:14:15.31 UTC] [github.com/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" +[5cc 01-13 06:14:15.31 UTC] [github.com/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" +[5cd 01-13 06:14:15.31 UTC] [github.com/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" +[5ce 01-13 06:14:15.31 UTC] [github.com/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" +[5cf 01-13 06:14:15.31 UTC] [github.com/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" +[5d0 01-13 06:14:15.31 UTC] [github.com/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" +[5d1 01-13 06:14:15.31 UTC] [github.com/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" +[5d2 01-13 06:14:15.31 UTC] [github.com/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" +[5d3 01-13 06:14:15.31 UTC] [github.com/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" +[5d4 01-13 06:14:15.31 UTC] [github.com/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 +[5d5 01-13 06:14:15.31 UTC] [github.com/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 +[5d6 01-13 06:14:15.31 UTC] [github.com/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 +[5d7 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d8 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d9 01-13 06:14:15.31 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5da 01-13 06:14:15.31 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" +[5db 01-13 06:14:15.31 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" +[5dc 01-13 06:14:15.32 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" +[5dd 01-13 06:14:15.32 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 +[5de 01-13 06:14:15.32 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 +[5df 01-13 06:14:15.32 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 +[5e0 01-13 06:14:15.32 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 +[5e1 01-13 06:14:15.32 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 +[5e2 01-13 06:14:15.32 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 +[5e3 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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 01-13 06:14:15.32 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2234,7 +2271,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[5cc 01-05 06:36:30.42 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----- +[5f1 01-13 06:14:15.32 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2247,58 +2284,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[5cd 01-05 06:36:30.43 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 -[5ce 01-05 06:36:30.43 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 -[5cf 01-05 06:36:30.43 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 -[5d0 01-05 06:36:30.43 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 -[5d1 01-05 06:36:30.43 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 -[5d2 01-05 06:36:30.43 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 -[5d3 01-05 06:36:30.43 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 -[5d4 01-05 06:36:30.43 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: -[5d5 01-05 06:36:30.43 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 -[5d6 01-05 06:36:30.43 UTC] [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 -[5d7 01-05 06:36:30.43 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 -[5d8 01-05 06:36:30.43 UTC] [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 -[5d9 01-05 06:36:30.43 UTC] [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----- -MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -oQmWQsjpiQ== ------END CERTIFICATE----- -[5da 01-05 06:36:30.43 UTC] [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----- -MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[5db 01-05 06:36:30.43 UTC] [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 -[5dc 01-05 06:36:30.43 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 -[5dd 01-05 06:36:30.43 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 -[5de 01-05 06:36:30.43 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 -[5df 01-05 06:36:30.43 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 -[5e0 01-05 06:36:30.43 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: -[5e1 01-05 06:36:30.43 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 -[5e2 01-05 06:36:30.43 UTC] [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 -[5e3 01-05 06:36:30.43 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 -[5e4 01-05 06:36:30.43 UTC] [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 -[5e5 01-05 06:36:30.43 UTC] [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----- +[5f2 01-13 06:14:15.32 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 01-13 06:14:15.32 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 +[5f4 01-13 06:14:15.32 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 +[5f5 01-13 06:14:15.32 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 +[5f6 01-13 06:14:15.32 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 +[5f7 01-13 06:14:15.32 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 +[5f8 01-13 06:14:15.32 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 +[5f9 01-13 06:14:15.32 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: +[5fa 01-13 06:14:15.32 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 +[5fb 01-13 06:14:15.32 UTC] [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 +[5fc 01-13 06:14:15.32 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 +[5fd 01-13 06:14:15.32 UTC] [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 +[5fe 01-13 06:14:15.33 UTC] [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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2313,7 +2311,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[5e6 01-05 06:36:30.43 UTC] [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----- +[5ff 01-13 06:14:15.33 UTC] [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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2327,99 +2325,138 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[5e7 01-05 06:36:30.43 UTC] [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 -[5e8 01-05 06:36:30.43 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) -[5e9 01-05 06:36:30.43 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 -[5ea 01-05 06:36:30.43 UTC] [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 -[5eb 01-05 06:36:30.43 UTC] [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 -[5ec 01-05 06:36:30.43 UTC] [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 -[5ed 01-05 06:36:30.43 UTC] [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 -[5ee 01-05 06:36:30.43 UTC] [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 -[5ef 01-05 06:36:30.43 UTC] [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 -[5f0 01-05 06:36:30.43 UTC] [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 -[5f1 01-05 06:36:30.43 UTC] [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 -[5f2 01-05 06:36:30.43 UTC] [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 -[5f3 01-05 06:36:30.43 UTC] [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 -[5f4 01-05 06:36:30.43 UTC] [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 -[5f5 01-05 06:36:30.43 UTC] [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 -[5f6 01-05 06:36:30.43 UTC] [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 -[5f7 01-05 06:36:30.43 UTC] [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 -[5f8 01-05 06:36:30.43 UTC] [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 -[5f9 01-05 06:36:30.43 UTC] [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 -[5fa 01-05 06:36:30.43 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 -[5fb 01-05 06:36:30.43 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 -[5fc 01-05 06:36:30.43 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 -[5fd 01-05 06:36:30.43 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 -[5fe 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[5ff 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[600 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[601 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[602 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[603 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[604 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[605 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[606 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[607 01-05 06:36:30.43 UTC] [github.com/hyperledger/fabric/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 -[608 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[609 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[60a 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[60b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[60c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[60d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[60e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[60f 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[610 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[611 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[612 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[613 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[614 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[615 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[616 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[617 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[618 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[619 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61a 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/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 -[61b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61e 01-05 06:36:30.44 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 -[61f 01-05 06:36:30.44 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 -[620 01-05 06:36:30.44 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 -[621 01-05 06:36:30.44 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 -[622 01-05 06:36:30.44 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 -[623 01-05 06:36:30.44 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 -[624 01-05 06:36:30.44 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 -[625 01-05 06:36:30.44 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 -[626 01-05 06:36:30.44 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' -[627 01-05 06:36:30.44 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' -[628 01-05 06:36:30.44 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] -[629 01-05 06:36:30.44 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 -[62a 01-05 06:36:30.44 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 -[62b 01-05 06:36:30.44 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 [] -[62c 01-05 06:36:30.44 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 -[62d 01-05 06:36:30.44 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 -[62e 01-05 06:36:30.44 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' -[62f 01-05 06:36:30.44 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' -[630 01-05 06:36:30.44 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' -[631 01-05 06:36:30.44 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] -[632 01-05 06:36:30.44 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 -[633 01-05 06:36:30.44 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 -[634 01-05 06:36:30.44 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 [] -[635 01-05 06:36:30.44 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 -[636 01-05 06:36:30.44 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' -[637 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[638 01-05 06:36:30.44 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 -[639 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[63a 01-05 06:36:30.44 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 -[63b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608EEB9BCD20522...E92C66A50E6ABC22AA089ECC0D41D2B4 -[63c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 4998F1183D2AE74421D96437EFCB1F0FC2342B98725B69A948744FB7CCD59926 -[63d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[63e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[63f 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[640 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[641 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[642 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[643 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[600 01-13 06:14:15.33 UTC] [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 +[601 01-13 06:14:15.33 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 +[602 01-13 06:14:15.33 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 +[603 01-13 06:14:15.33 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 +[604 01-13 06:14:15.33 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 +[605 01-13 06:14:15.33 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: +[606 01-13 06:14:15.33 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 +[607 01-13 06:14:15.33 UTC] [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 +[608 01-13 06:14:15.33 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 +[609 01-13 06:14:15.33 UTC] [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 +[60a 01-13 06:14:15.33 UTC] [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----- +MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +oQmWQsjpiQ== +-----END CERTIFICATE----- +[60b 01-13 06:14:15.33 UTC] [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----- +MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +jTZ94VyvHhJOn4fshoU= +-----END CERTIFICATE----- +[60c 01-13 06:14:15.33 UTC] [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 +[60d 01-13 06:14:15.33 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) +[60e 01-13 06:14:15.33 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 +[60f 01-13 06:14:15.33 UTC] [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 +[610 01-13 06:14:15.33 UTC] [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 +[611 01-13 06:14:15.33 UTC] [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 +[612 01-13 06:14:15.33 UTC] [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 +[613 01-13 06:14:15.33 UTC] [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 +[614 01-13 06:14:15.33 UTC] [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 +[615 01-13 06:14:15.33 UTC] [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 +[616 01-13 06:14:15.33 UTC] [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 +[617 01-13 06:14:15.33 UTC] [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 +[618 01-13 06:14:15.33 UTC] [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 +[619 01-13 06:14:15.33 UTC] [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 +[61a 01-13 06:14:15.33 UTC] [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 +[61b 01-13 06:14:15.33 UTC] [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 +[61c 01-13 06:14:15.33 UTC] [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 +[61d 01-13 06:14:15.33 UTC] [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 +[61e 01-13 06:14:15.33 UTC] [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 +[61f 01-13 06:14:15.33 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 +[620 01-13 06:14:15.33 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 +[621 01-13 06:14:15.33 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 +[622 01-13 06:14:15.33 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 +[623 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/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 +[624 01-13 06:14:15.33 UTC] [github.com/hyperledger/fabric/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 +[625 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[626 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[627 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[628 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[629 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[62a 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[62b 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[62c 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[62d 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[62e 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[62f 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[630 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[631 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[632 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[633 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[634 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[635 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[636 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[637 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[638 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[639 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[63a 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[63b 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[63c 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[63d 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[63e 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[63f 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/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 +[640 01-13 06:14:15.34 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[641 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[642 01-13 06:14:15.35 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[643 01-13 06:14:15.35 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 +[644 01-13 06:14:15.35 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 +[645 01-13 06:14:15.35 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 +[646 01-13 06:14:15.35 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 +[647 01-13 06:14:15.35 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 +[648 01-13 06:14:15.35 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 +[649 01-13 06:14:15.35 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 +[64a 01-13 06:14:15.35 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 +[64b 01-13 06:14:15.35 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' +[64c 01-13 06:14:15.35 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' +[64d 01-13 06:14:15.35 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] +[64e 01-13 06:14:15.35 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 +[64f 01-13 06:14:15.35 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 +[650 01-13 06:14:15.35 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 [] +[651 01-13 06:14:15.35 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 +[652 01-13 06:14:15.36 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 +[653 01-13 06:14:15.36 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' +[654 01-13 06:14:15.36 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' +[655 01-13 06:14:15.36 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' +[656 01-13 06:14:15.36 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] +[657 01-13 06:14:15.36 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 +[658 01-13 06:14:15.36 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 +[659 01-13 06:14:15.36 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 [] +[65a 01-13 06:14:15.36 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 +[65b 01-13 06:14:15.36 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' +[65c 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[65d 01-13 06:14:15.36 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 +[65e 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[65f 01-13 06:14:15.36 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 +[660 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608B7C7E6D20522...99CEC899B540A387BD8DCDEB784315DB +[661 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: B799F8B60BF5067E6B528E034307C8C7A08EE508319546F141D30CC1D0F6E6A5 +[662 01-13 06:14:15.36 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 == +[663 01-13 06:14:15.36 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 +[664 01-13 06:14:15.36 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 == +[665 01-13 06:14:15.36 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 +[666 01-13 06:14:15.36 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 == +[667 01-13 06:14:15.36 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 +[668 01-13 06:14:15.36 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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2432,134 +2469,116 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[644 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d28 gate 1515134190447623300 evaluation starts -[645 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 signed by 0 principal evaluation starts (used [false]) -[646 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[647 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[648 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d28 principal evaluation fails -[649 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d28 gate 1515134190447623300 evaluation fails -[64a 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -[64b 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[64c 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[64d 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d38 gate 1515134190448787100 evaluation starts -[64e 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 signed by 0 principal evaluation starts (used [false]) -[64f 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[650 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[651 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d38 principal evaluation fails -[652 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138d38 gate 1515134190448787100 evaluation fails -[653 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[654 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[655 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Writers Org2MSP.Writers ] -[656 01-05 06:36:30.44 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 -[657 01-05 06:36:30.44 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 -[658 01-05 06:36:30.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[659 01-05 06:36:30.45 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 -[65a 01-05 06:36:30.45 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 == -[65b 01-05 06:36:30.45 UTC] [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 0xc420138d40 gate 1515134190450206400 evaluation starts -[65c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 signed by 0 principal evaluation starts (used [false]) -[65d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[65e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[65f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[660 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 principal matched by identity 0 -[661 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 98 f1 18 3d 2a e7 44 21 d9 64 37 ef cb 1f 0f |I...=*.D!.d7....| -00000010 c2 34 2b 98 72 5b 69 a9 48 74 4f b7 cc d5 99 26 |.4+.r[i.HtO....&| -[662 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 80 7f fb 03 2b 80 77 ba 9b 9e 73 |0D. #....+.w...s| -00000010 99 f2 d2 48 4a 51 a1 00 6f 13 52 ff 89 7a bd b3 |...HJQ..o.R..z..| -00000020 5d d2 3c b7 02 20 42 64 8f 0a 13 af 9c 73 70 7e |].<.. Bd.....sp~| -00000030 26 0c 74 09 c3 46 18 b9 f0 d9 5e af f8 01 22 a2 |&.t..F....^...".| -00000040 99 74 cb f3 4d 54 |.t..MT| -[663 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138d40 principal evaluation succeeds for identity 0 -[664 01-05 06:36:30.45 UTC] [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 0xc420138d40 gate 1515134190450206400 evaluation succeeds -[665 01-05 06:36:30.45 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 -[666 01-05 06:36:30.45 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 -[667 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[668 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[669 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[66a 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[66c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[66d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[66e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[66f 01-05 06:36:30.45 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 -[670 01-05 06:36:30.45 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 -[671 01-05 06:36:30.45 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 -[672 01-05 06:36:30.45 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 -[673 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[674 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[675 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[676 01-05 06:36:30.45 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 -[677 01-05 06:36:30.45 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 -[678 01-05 06:36:30.45 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 -[679 01-05 06:36:30.45 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 -[67a 01-05 06:36:30.45 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 -[67b 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[67c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[67d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[67e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[67f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[680 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[681 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[682 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[683 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -[684 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[685 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[686 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -[687 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[688 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e960 gate 1515134190455448400 evaluation starts -[689 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 signed by 0 principal evaluation starts (used [false]) -[68a 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[68b 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[68c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 principal matched by identity 0 -[68d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7d 1e dc cf 17 d5 a8 4e 1b e1 62 18 e4 33 dd 59 |}......N..b..3.Y| -00000010 41 f8 0c 43 8b d7 cc a4 01 f5 4b c5 89 6b 2a 28 |A..C......K..k*(| -[68e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c9 fc f2 46 e5 ca 22 7c ad 0c c9 |0E.!....F.."|...| -00000010 9a 26 c6 f7 59 38 f7 3e 52 80 cb f8 3a ce 2c 64 |.&..Y8.>R...:.,d| -00000020 7a 4a 18 06 76 02 20 32 9f e9 de c5 d7 20 3c 18 |zJ..v. 2..... <.| -00000030 f5 d9 ef 9f ae 9f 2f 51 62 c6 72 62 e5 86 55 72 |....../Qb.rb..Ur| -00000040 63 46 38 65 91 c7 60 |cF8e..`| -[68f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e960 principal evaluation succeeds for identity 0 -[690 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e960 gate 1515134190455448400 evaluation succeeds -[691 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[692 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[693 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[694 01-05 06:36:30.45 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 01-05 06:36:30.45 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 01-05 06:36:30.45 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 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[698 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[699 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[69a 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[69b 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[69c 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[69d 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[69e 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[69f 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a0 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a1 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[6a2 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a3 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a4 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a5 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a6 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a7 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[6a8 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[6a9 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[6aa 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[6ab 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[6ac 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6ad 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[6ae 01-05 06:36:30.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[6af 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[6b0 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[6b1 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[6b2 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[6b3 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6b4 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6b5 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6b6 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[6b7 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6b8 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6b9 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[6ba 01-05 06:36:30.46 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----- +[669 01-13 06:14:15.36 UTC] [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 0xc42011d2c8 gate 1515824055366351114 evaluation starts +[66a 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 signed by 0 principal evaluation starts (used [false]) +[66b 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[66c 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[66d 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[66e 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 principal matched by identity 0 +[66f 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b7 99 f8 b6 0b f5 06 7e 6b 52 8e 03 43 07 c8 c7 |.......~kR..C...| +00000010 a0 8e e5 08 31 95 46 f1 41 d3 0c c1 d0 f6 e6 a5 |....1.F.A.......| +[670 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be d8 71 22 41 16 61 93 fd 07 96 |0E.!...q"A.a....| +00000010 a5 29 82 1e 42 9a 96 ba c4 27 7e eb 48 32 4a 86 |.)..B....'~.H2J.| +00000020 f3 4b 17 7b 80 02 20 71 67 b4 05 13 48 df a9 44 |.K.{.. qg...H..D| +00000030 8e f4 ff d4 d7 39 40 70 ed 27 f1 e7 ca 02 4c ba |.....9@p.'....L.| +00000040 12 1e d9 a5 4e e9 c3 |....N..| +[671 01-13 06:14:15.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d2c8 principal evaluation succeeds for identity 0 +[672 01-13 06:14:15.36 UTC] [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 0xc42011d2c8 gate 1515824055366351114 evaluation succeeds +[673 01-13 06:14:15.36 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 +[674 01-13 06:14:15.36 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 +[675 01-13 06:14:15.36 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 +[676 01-13 06:14:15.36 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 +[677 01-13 06:14:15.36 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 +[678 01-13 06:14:15.37 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 +[67a 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[67b 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[67c 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[67d 01-13 06:14:15.37 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 +[67e 01-13 06:14:15.37 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 +[67f 01-13 06:14:15.37 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 +[680 01-13 06:14:15.37 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 +[681 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[682 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[683 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[684 01-13 06:14:15.37 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 +[685 01-13 06:14:15.37 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 +[686 01-13 06:14:15.37 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 +[687 01-13 06:14:15.37 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 +[688 01-13 06:14:15.37 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 +[689 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[68a 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[68b 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[68c 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[68d 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[68e 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[68f 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[690 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[691 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +[692 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[693 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[694 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +[695 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[696 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011cf20 gate 1515824055376435069 evaluation starts +[697 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 signed by 0 principal evaluation starts (used [false]) +[698 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[699 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[69a 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 principal matched by identity 0 +[69b 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e5 7b 2f 8b 7e 3e 73 76 bf ba 28 ee ae 4d ae f5 |.{/.~>sv..(..M..| +00000010 de 7a 8d 26 cd 82 48 cc 62 0c 52 56 d0 d1 9f 36 |.z.&..H.b.RV...6| +[69c 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f 8a a6 39 ab 13 67 10 18 5e f2 30 |0D. ...9..g..^.0| +00000010 de db b5 c2 60 7b 1d 2f b5 bc 6c aa cc 9c 69 1d |....`{./..l...i.| +00000020 38 30 c9 a4 02 20 04 c1 b5 8b 6f c7 d1 f6 c3 42 |80... ....o....B| +00000030 88 aa 66 9c c6 ca f4 5b cf 83 b1 72 12 9f fd 16 |..f....[...r....| +00000040 d4 03 01 7c b2 55 |...|.U| +[69d 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011cf20 principal evaluation succeeds for identity 0 +[69e 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42011cf20 gate 1515824055376435069 evaluation succeeds +[69f 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[6a0 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[6a1 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[6a2 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6a3 01-13 06:14:15.37 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6a4 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6a5 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6a6 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6a7 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6a8 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[6a9 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6aa 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6ab 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6ac 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[6ad 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[6ae 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[6af 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6b0 01-13 06:14:15.38 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 01-13 06:14:15.38 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 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[6b3 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[6b4 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6b5 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[6b6 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[6b7 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[679 01-13 06:14:15.37 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.8:50090 +[6b8 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[6b9 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[6ba 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6bb 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[6bc 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[6be 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50090, hangup +[6bf 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[6bd 01-13 06:14:15.38 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[6c1 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[6c2 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[6c0 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50088: rpc error: code = Canceled desc = context canceled +[6c4 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[6c3 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[6c5 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6c6 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6c7 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6c8 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[6c9 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6ca 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6cb 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[6cc 01-13 06:14:15.39 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2573,8 +2592,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[66b 01-05 06:36:30.45 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:44100 -[6bb 01-05 06:36:30.46 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----- +[6cd 01-13 06:14:15.39 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2587,63 +2605,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[6bc 01-05 06:36:30.46 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 -[6bd 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[6be 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6bf 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6c0 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6c1 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6c2 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6c3 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[6c4 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[6c5 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6c6 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6c7 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[6c8 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.5:7050->172.18.0.7:44100: read: connection reset by peer -[6c9 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44100: rpc error: code = Canceled desc = context canceled -[6ca 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[6cb 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44098: rpc error: code = Canceled desc = context canceled -[6cc 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[6cd 01-05 06:36:30.46 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----- -MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -vA2BLfriqQ== ------END CERTIFICATE----- -[6ce 01-05 06:36:30.46 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -R0L5Jr8878bLU6IcEA== ------END CERTIFICATE----- -[6cf 01-05 06:36:30.46 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 -[6d0 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6d1 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6d2 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6d3 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6d4 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[6d5 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[6d6 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6d7 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6d8 01-05 06:36:30.46 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[6d9 01-05 06:36:30.46 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----- +[6ce 01-13 06:14:15.39 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 +[6cf 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[6d0 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6d1 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[6d2 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[6d3 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6d4 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6d5 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[6d6 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[6d7 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6d8 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6d9 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[6da 01-13 06:14:15.39 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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2658,7 +2632,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[6da 01-05 06:36:30.46 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----- +[6db 01-13 06:14:15.39 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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2672,115 +2646,154 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[6db 01-05 06:36:30.47 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 -[6dc 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[6dd 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[6de 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[6df 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[6e0 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[6e1 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[6e2 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[6e3 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[6e4 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[6e5 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[6e6 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[6e7 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[6e8 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[6e9 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[6ea 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[6eb 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[6ec 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[6ed 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[6ee 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[6ef 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[6f0 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[6f1 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[6f2 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[6f3 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[6f4 01-05 06:36:30.47 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 -[6f5 01-05 06:36:30.47 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 -[6f6 01-05 06:36:30.47 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 -[6f7 01-05 06:36:30.47 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 -[6f8 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[6f9 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[6fa 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[6fb 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[6fc 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[6fd 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[6fe 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[6ff 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[700 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[701 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[702 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[703 01-05 06:36:30.47 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 -[704 01-05 06:36:30.47 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 -[705 01-05 06:36:30.47 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 -[706 01-05 06:36:30.47 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 -[707 01-05 06:36:30.47 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 -[708 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[709 01-05 06:36:30.47 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 -[70a 01-05 06:36:30.47 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 -[70b 01-05 06:36:30.47 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 -[70c 01-05 06:36:30.47 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 -[70d 01-05 06:36:30.47 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 -[70e 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[70f 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[710 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[711 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[712 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[713 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[714 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[715 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[716 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[717 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[718 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[719 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[71a 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[71b 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[71c 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[71d 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[71e 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[71f 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[720 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[721 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[722 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[723 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[724 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[725 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[726 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[727 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[728 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[729 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[72a 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[72b 01-05 06:36:30.47 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[72c 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[72d 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[72e 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[72f 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...96E4B9E007E7FABF3D5B9C9FC89473A0 -[730 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: AD447623D1C65B3BC4349B25E855349D1576586E0492D5ECAD219CA3EFE71633 -[731 01-05 06:36:30.48 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 -[732 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[733 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[734 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[735 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[736 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[737 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...96E4B9E007E7FABF3D5B9C9FC89473A0 -[738 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 7445A4861CC2767571622BD537281D03FD05281F858B1872C6E0C589D4B7F321 -[739 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= +[6dc 01-13 06:14:15.39 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 +[6dd 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[6de 01-13 06:14:15.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[6df 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6e0 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6e1 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[6e2 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[6e3 01-13 06:14:15.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 +[6e4 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6e5 01-13 06:14:15.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 +[6e6 01-13 06:14:15.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----- +MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly +HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P +vA2BLfriqQ== +-----END CERTIFICATE----- +[6e7 01-13 06:14:15.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----- +MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF +mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O +AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL +R0L5Jr8878bLU6IcEA== +-----END CERTIFICATE----- +[6e8 01-13 06:14:15.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 +[6e9 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[6ea 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[6eb 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[6ec 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[6ed 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[6ee 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[6ef 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[6f0 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[6f1 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[6f2 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[6f3 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[6f4 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[6f5 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[6f6 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[6f7 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[6f8 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[6f9 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[6fa 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[6fb 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[6fc 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[6fd 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[6fe 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[6ff 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[700 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[701 01-13 06:14:15.40 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 +[702 01-13 06:14:15.40 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 +[703 01-13 06:14:15.40 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 +[704 01-13 06:14:15.40 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 +[705 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[706 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[707 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[708 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[709 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[70a 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[70b 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[70c 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[70d 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[70e 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[70f 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[710 01-13 06:14:15.40 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 +[711 01-13 06:14:15.40 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 +[712 01-13 06:14:15.40 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 +[713 01-13 06:14:15.40 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 +[714 01-13 06:14:15.40 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 +[715 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[716 01-13 06:14:15.40 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 +[717 01-13 06:14:15.40 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 +[718 01-13 06:14:15.40 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 +[719 01-13 06:14:15.40 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 +[71a 01-13 06:14:15.40 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 +[71b 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[71c 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[71d 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[71e 01-13 06:14:15.40 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[71f 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[720 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[721 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[722 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[723 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[724 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[725 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[726 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[727 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[728 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[729 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[72a 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[72b 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[72c 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[72d 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[72e 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[72f 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[730 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[731 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[732 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[733 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[734 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[735 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[736 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[737 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[738 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[739 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[73a 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[73b 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[73c 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...32AE51C2BFCBEBA40C115E09E3BEA066 +[73d 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 1A177EAD76794C745AB46E2AF7D126F5F7E67285E60A328BB0D555594839A19E +[73e 01-13 06:14:15.41 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 +[73f 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[740 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[741 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[742 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[743 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[744 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...32AE51C2BFCBEBA40C115E09E3BEA066 +[745 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 93FEB5B8B29127B39290E4BEA31CE7F5FCE35D5E81AF9C130094C20DE0EAE0BF +[746 01-13 06:14:15.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= txId= locPointer=offset=70, bytesLength=12151 ] -[73a 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40092], isChainEmpty=[false], lastBlockNumber=[2] -[73b 01-05 06:36:30.48 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -[73c 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[73d 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.3:40420 -[73e 01-05 06:36:33.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.3:40420 -[73f 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[740 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[741 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[742 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[743 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[744 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[745 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[747 01-13 06:14:15.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40093], isChainEmpty=[false], lastBlockNumber=[2] +[748 01-13 06:14:15.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 +[749 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[74a 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.3:51084 +[74b 01-13 06:14:16.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.3:51084 +[74c 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[74d 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[74e 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[74f 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[750 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[751 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[752 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2794,58 +2807,63 @@ RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk oOWGb8BDg2Tnm3LS -----END CERTIFICATE----- -[746 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134193223488700 evaluation starts -[747 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -[748 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[749 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[74a 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -[74b 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134193223488700 evaluation fails -[74c 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[74d 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[74e 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[74f 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134193225070800 evaluation starts -[750 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) -[751 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[752 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[753 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[754 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal matched by identity 0 -[755 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 25 97 8d e1 ec f1 fe 3d 55 d2 3e 34 d0 9c b9 19 |%......=U.>4....| -00000010 23 5d 41 55 29 6e 92 64 2a 32 dd 80 d5 5d f6 b6 |#]AU)n.d*2...]..| -[756 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 2b 20 7e 5d cf 07 9d ca 69 7b 7e |0D. ,+ ~]....i{~| -00000010 5e 69 fc 7e c9 33 12 88 7f 0e 5c 1d 27 a4 3c fe |^i.~.3....\.'.<.| -00000020 7f 1f 12 5e 02 20 76 5e 13 59 d4 cd 3b 83 42 e8 |...^. v^.Y..;.B.| -00000030 40 ee 47 fc 75 cf 04 26 99 8d c1 66 d1 0d 4c 41 |@.G.u..&...f..LA| -00000040 a2 96 e7 c6 1d 05 |......| -[757 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation succeeds for identity 0 -[758 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134193225070800 evaluation succeeds -[759 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[75a 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[75b 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[75c 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[75d 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[75e 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[75f 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a72560) start: > stop: > from 172.18.0.3:40420 -[760 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[761 01-05 06:36:33.23 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] -[762 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -[763 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[764 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[765 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[766 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[767 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -[768 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[769 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[76a 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[76b 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[76c 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.2:50070 -[76d 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.2:50070 -[76e 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[76f 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[770 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[771 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[772 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[773 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[774 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[753 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d680 gate 1515824056907526241 evaluation starts +[754 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 signed by 0 principal evaluation starts (used [false]) +[755 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[756 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[757 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d680 principal evaluation fails +[758 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d680 gate 1515824056907526241 evaluation fails +[759 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[75a 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[75b 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[75c 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[75d 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[75e 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[75f 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[760 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[761 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d690 gate 1515824056909788109 evaluation starts +[762 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 signed by 0 principal evaluation starts (used [false]) +[763 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[764 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[765 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[766 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 principal matched by identity 0 +[767 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 12 9a be bd 3d 0d a9 f6 bf f3 e1 0f 5f ff 04 3c |....=......._..<| +00000010 0d 62 04 6e 15 09 9f 48 7e 88 9c f7 b2 61 6d 40 |.b.n...H~....am@| +[768 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 ec 20 2c 7f 3d 8f de f3 25 98 |0E.!... ,.=...%.| +00000010 7c 3d df f9 99 57 85 ef 74 47 cf 43 a9 5a 97 ba ||=...W..tG.C.Z..| +00000020 0d 64 e1 e4 1b 02 20 4d e4 7f 28 18 be 55 54 f9 |.d.... M..(..UT.| +00000030 00 22 e1 87 dd 87 09 8b 56 02 10 1a a4 e8 0f 91 |."......V.......| +00000040 60 04 03 f4 c6 8a 13 |`......| +[769 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d690 principal evaluation succeeds for identity 0 +[76a 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d690 gate 1515824056909788109 evaluation succeeds +[76b 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[76c 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[76d 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[76e 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[76f 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[770 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[771 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209667c0) start: > stop: > from 172.18.0.3:51084 +[772 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[773 01-13 06:14:16.91 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] +[774 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes +[775 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[776 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +[777 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[778 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes +[779 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +[77a 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +[77b 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[77c 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[77d 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[77e 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:44740 +[77f 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:44740 +[780 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[781 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[782 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[783 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[784 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[785 01-13 06:14:17.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[786 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAPlZcLcMzfzgE68ZzSaaSeYwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2859,49 +2877,72 @@ RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Mu6 IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 dblSJ0Unez2++mFCUWE= -----END CERTIFICATE----- -[775 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138660 gate 1515134193655920800 evaluation starts -[776 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 signed by 0 principal evaluation starts (used [false]) -[777 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[778 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[779 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[77a 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 principal matched by identity 0 -[77b 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6f 1e 98 cd d3 ea 1d af d7 3f 6b 1d 49 20 d6 d7 |o........?k.I ..| -00000010 b5 eb 4e d5 4e 1c 39 9c 1e ab 96 79 ae 07 e2 c4 |..N.N.9....y....| -[77c 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 29 15 e1 05 c5 a5 65 5c 25 00 ab 45 |0D. ).....e\%..E| -00000010 92 68 64 5c bc 5f e4 0e e5 a0 0a d7 8f 1a a4 fd |.hd\._..........| -00000020 b4 1c 3a 08 02 20 36 a7 bf c3 e5 b5 2d ea f2 f9 |..:.. 6.....-...| -00000030 61 17 6f 55 94 dc e7 1b 09 69 3f 3b a4 3e 2b 2c |a.oU.....i?;.>+,| -00000040 f3 84 a0 31 35 9f |...15.| -[77d 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138660 principal evaluation succeeds for identity 0 -[77e 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138660 gate 1515134193655920800 evaluation succeeds -[77f 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[780 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[781 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[782 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[783 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[784 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[785 01-05 06:36:33.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a458c0) start: > stop: > from 172.18.0.2:50070 -[786 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[787 01-05 06:36:33.68 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] -[788 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -[789 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[78a 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[78b 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a458c0) for 172.18.0.2:50070 -[78c 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[78d 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -[78e 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[78f 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a458c0) for 172.18.0.2:50070 -[790 01-05 06:36:33.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[791 01-05 06:36:33.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[792 01-05 06:36:33.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:47452 -[793 01-05 06:36:33.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.4:47452 -[794 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[795 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[796 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[797 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[798 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[799 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[79a 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[787 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d6f8 gate 1515824057360761376 evaluation starts +[788 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 signed by 0 principal evaluation starts (used [false]) +[789 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[78a 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[78b 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d6f8 principal evaluation fails +[78c 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d6f8 gate 1515824057360761376 evaluation fails +[78d 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[78e 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[78f 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[790 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[791 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[792 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[793 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[794 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[795 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d708 gate 1515824057366003676 evaluation starts +[796 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 signed by 0 principal evaluation starts (used [false]) +[797 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[798 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[799 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d708 principal evaluation fails +[79a 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d708 gate 1515824057366003676 evaluation fails +[79b 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[79c 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[79d 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[79e 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d710 gate 1515824057367260276 evaluation starts +[79f 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 signed by 0 principal evaluation starts (used [false]) +[7a0 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7a1 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[7a2 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[7a3 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 principal matched by identity 0 +[7a4 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0f 6b b9 80 34 c4 79 dc e8 b4 67 76 db 6e 66 49 |.k..4.y...gv.nfI| +00000010 67 be c3 ac 88 c6 35 80 f1 33 94 06 03 4b fb b9 |g.....5..3...K..| +[7a5 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 35 90 7d 62 25 ef 14 68 08 5b 25 c9 |0D. 5.}b%..h.[%.| +00000010 c8 1d 29 0c 4d 81 00 75 0a 92 7f 09 b8 7f 00 60 |..).M..u.......`| +00000020 bb ff 35 c6 02 20 62 55 0f 86 2d 21 8a 91 ce 1c |..5.. bU..-!....| +00000030 0e 92 a1 c0 91 1f 58 d5 95 ef bb 55 94 c6 37 1b |......X....U..7.| +00000040 f7 dd 3c 0b c3 d4 |..<...| +[7a6 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d710 principal evaluation succeeds for identity 0 +[7a7 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d710 gate 1515824057367260276 evaluation succeeds +[7a8 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[7a9 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[7aa 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[7ab 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[7ac 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[7ad 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[7ae 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420976f60) start: > stop: > from 172.18.0.5:44740 +[7af 01-13 06:14:17.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[7b0 01-13 06:14:17.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=[12121] +[7b1 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes +[7b2 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[7b3 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +[7b4 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420976f60) for 172.18.0.5:44740 +[7b5 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes +[7b6 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +[7b7 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +[7b8 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420976f60) for 172.18.0.5:44740 +[7b9 01-13 06:14:17.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[7ba 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[7bb 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.6:47998 +[7bc 01-13 06:14:18.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.6:47998 +[7bd 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[7be 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7bf 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[7c0 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7c1 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[7c2 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[7c3 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2915,49 +2956,72 @@ RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB IMM+3uC8p/M1qCSaOiQ= -----END CERTIFICATE----- -[79b 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386d8 gate 1515134193855148900 evaluation starts -[79c 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 signed by 0 principal evaluation starts (used [false]) -[79d 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[79e 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[79f 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[7a0 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 principal matched by identity 0 -[7a1 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 79 d1 5d b1 3f 52 2d 32 82 54 e0 af e2 de 98 1c |y.].?R-2.T......| -00000010 eb 5b 21 04 d1 58 18 0f 4d a2 ee 7f ea de ac d7 |.[!..X..M.......| -[7a2 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 24 d6 1a fc 1c 66 ec ec 80 4d 34 f0 |0D. $....f...M4.| -00000010 41 77 9b 17 96 68 20 eb 0a 9f 97 31 6a 0c fb 79 |Aw...h ....1j..y| -00000020 a4 f1 cf dc 02 20 5a 2d 47 f7 c1 3b 55 2c 5b 85 |..... Z-G..;U,[.| -00000030 c7 8f 0b 90 01 a7 ff f8 32 db 15 9a 1f 40 23 e9 |........2....@#.| -00000040 ff 92 43 68 35 2c |..Ch5,| -[7a3 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386d8 principal evaluation succeeds for identity 0 -[7a4 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386d8 gate 1515134193855148900 evaluation succeeds -[7a5 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[7a6 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[7a7 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[7a8 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[7a9 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[7aa 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[7ab 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200d3a20) start: > stop: > from 172.18.0.4:47452 -[7ac 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[7ad 01-05 06:36:33.85 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] -[7ae 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -[7af 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[7b0 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[7b1 01-05 06:36:33.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[7b2 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[7b3 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -[7b4 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[7b5 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[7b6 01-05 06:36:33.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[7b7 01-05 06:36:36.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[7b8 01-05 06:36:36.58 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:44152 -[7b9 01-05 06:36:44.27 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:44152 with txid 'b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2' of type ENDORSER_TRANSACTION -[7ba 01-05 06:36:44.27 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 == -[7bb 01-05 06:36:44.27 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 -[7bc 01-05 06:36:44.27 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 == -[7bd 01-05 06:36:44.27 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 -[7be 01-05 06:36:44.27 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 == -[7bf 01-05 06:36:44.27 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 -[7c0 01-05 06:36:44.28 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----- +[7c4 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d778 gate 1515824058777351977 evaluation starts +[7c5 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 signed by 0 principal evaluation starts (used [false]) +[7c6 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7c7 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[7c8 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d778 principal evaluation fails +[7c9 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d778 gate 1515824058777351977 evaluation fails +[7ca 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[7cb 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[7cc 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[7cd 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[7ce 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[7cf 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[7d0 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7d1 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[7d2 01-13 06:14:18.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d788 gate 1515824058779848077 evaluation starts +[7d3 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 signed by 0 principal evaluation starts (used [false]) +[7d4 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7d5 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[7d6 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d788 principal evaluation fails +[7d7 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011d788 gate 1515824058779848077 evaluation fails +[7d8 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[7d9 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[7da 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[7db 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1515824058788271177 evaluation starts +[7dc 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) +[7dd 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7de 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[7df 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[7e0 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal matched by identity 0 +[7e1 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fb 3e 27 9e c5 ac 31 e3 cc 45 1c 7e af 64 93 6f |.>'...1..E.~.d.o| +00000010 85 4b 15 5f 7e ef 49 b4 a4 ef a5 a4 a2 30 61 94 |.K._~.I......0a.| +[7e2 01-13 06:14:18.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5c 5c ff cc 10 cc 63 88 40 93 46 |0D. K\\....c.@.F| +00000010 33 d5 8e 39 bf 1c 85 96 bf a6 70 07 73 de 71 71 |3..9......p.s.qq| +00000020 56 12 c9 fd 02 20 13 6c 74 ea a8 f1 3c 57 b2 9b |V.... .lt... DEBU 0xc42000e008 principal evaluation succeeds for identity 0 +[7e4 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1515824058788271177 evaluation succeeds +[7e5 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[7e6 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[7e7 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[7e8 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[7e9 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[7ea 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[7eb 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420956600) start: > stop: > from 172.18.0.6:47998 +[7ec 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[7ed 01-13 06:14:18.79 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] +[7ee 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes +[7ef 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[7f0 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +[7f1 01-13 06:14:18.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[7f2 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes +[7f3 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +[7f4 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +[7f5 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[7f6 01-13 06:14:18.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[7f7 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[7f8 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50150 +[7f9 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.8:50150 with txid 'cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95' of type ENDORSER_TRANSACTION +[7fa 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[7fb 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7fc 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[7fd 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7fe 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[7ff 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[800 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2971,90 +3035,96 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[7c1 01-05 06:36:44.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 0xc42000e2a8 gate 1515134204281179100 evaluation starts -[7c2 01-05 06:36:44.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 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) -[7c3 01-05 06:36:44.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 0xc42000e2a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7c4 01-05 06:36:44.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 0xc42000e2a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[7c5 01-05 06:36:44.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 0xc42000e2a8 principal evaluation fails -[7c6 01-05 06:36:44.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 0xc42000e2a8 gate 1515134204281179100 evaluation fails -[7c7 01-05 06:36:44.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/Application/Org2MSP/Writers -[7c8 01-05 06:36:44.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 -[7c9 01-05 06:36:44.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/Org1MSP/Writers == -[7ca 01-05 06:36:44.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 0xc42000e2b8 gate 1515134204283860700 evaluation starts -[7cb 01-05 06:36:44.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 0xc42000e2b8 signed by 0 principal evaluation starts (used [false]) -[7cc 01-05 06:36:44.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 0xc42000e2b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7cd 01-05 06:36:44.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.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[7ce 01-05 06:36:44.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.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[7cf 01-05 06:36:44.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 0xc42000e2b8 principal matched by identity 0 -[7d0 01-05 06:36:44.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 -> DEBU Verify: digest = 00000000 6a 8d 97 9c 1b d3 67 69 ed 49 74 0f 2a de 9e 12 |j.....gi.It.*...| -00000010 af ce 8e 65 c7 3c c8 87 b9 15 97 0f 55 b3 c1 26 |...e.<......U..&| -[7d1 01-05 06:36:44.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 -> DEBU Verify: sig = 00000000 30 44 02 20 2d f5 fa cf af b5 64 21 e6 0a 7e 54 |0D. -.....d!..~T| -00000010 06 00 13 4d 60 de de 0a 4e fd 5b 57 54 50 f9 4a |...M`...N.[WTP.J| -00000020 80 81 97 e7 02 20 0b 9a 88 18 f5 3e b4 55 88 1f |..... .....>.U..| -00000030 a7 72 f9 f2 a1 37 f5 8b 91 13 4c cd 9b 32 c8 1b |.r...7....L..2..| -00000040 c8 59 92 c3 50 b2 |.Y..P.| -[7d2 01-05 06:36:44.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 0xc42000e2b8 principal evaluation succeeds for identity 0 -[7d3 01-05 06:36:44.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 0xc42000e2b8 gate 1515134204283860700 evaluation succeeds -[7d4 01-05 06:36:44.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/Org1MSP/Writers -[7d5 01-05 06:36:44.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/Org1MSP/Writers -[7d6 01-05 06:36:44.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 -[7d7 01-05 06:36:44.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 -[7d8 01-05 06:36:44.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 -[7d9 01-05 06:36:44.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 -[7da 01-05 06:36:44.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:44152 -[7db 01-05 06:36:44.28 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[7dc 01-05 06:36:44.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44152: rpc error: code = Canceled desc = context canceled -[7dd 01-05 06:36:44.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[7de 01-05 06:36:44.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[7df 01-05 06:36:44.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:44160 -[7e0 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[7e1 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[7e2 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[7e3 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[7e4 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[7e5 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...003C1225B68CA27A658F0EE82B45D719 -[7e6 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76CCF8186AF886EB99F3F0104003995F7962DC7DC2479E6D6CE5C16519D3556F -[7e7 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[7e8 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[7e9 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[7ea 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[7eb 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[7ec 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...003C1225B68CA27A658F0EE82B45D719 -[7ed 01-05 06:36:46.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 0D40FEFDFC05121E811A51FD16DAC729BAE6670E85DD31246F3615F4DBBEB5F1 -[7ee 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 +[801 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e190 gate 1515824069766173480 evaluation starts +[802 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 signed by 0 principal evaluation starts (used [false]) +[803 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[804 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[805 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e190 principal evaluation fails +[806 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e190 gate 1515824069766173480 evaluation fails +[807 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[808 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[809 01-13 06:14:29.76 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 ] +[80a 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[80b 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[80c 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[80d 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[80e 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[80f 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a0 gate 1515824069767916180 evaluation starts +[810 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 signed by 0 principal evaluation starts (used [false]) +[811 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[812 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[813 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[814 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 principal matched by identity 0 +[815 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 27 8c f1 b9 e7 f8 ad 23 1a f8 58 9c 9f 2b 0b 02 |'......#..X..+..| +00000010 be c4 3e a2 42 32 4f 93 53 4b 18 93 a5 de 71 03 |..>.B2O.SK....q.| +[816 01-13 06:14:29.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0c be ed e1 57 ce f3 29 99 e4 c3 31 |0D. ....W..)...1| +00000010 2c d3 ee 8e c1 4a cd 4c f7 4a 54 17 39 31 eb e1 |,....J.L.JT.91..| +00000020 0a 0a 83 c2 02 20 2c 0b f3 28 57 74 f5 49 15 da |..... ,..(Wt.I..| +00000030 d7 a3 0e c9 d1 01 61 aa b4 8b a1 9c b5 c4 7b 2b |......a.......{+| +00000040 8f 0f 6c d3 ce 7f |..l...| +[817 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a0 principal evaluation succeeds for identity 0 +[818 01-13 06:14:29.77 UTC] [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 0xc42000e1a0 gate 1515824069767916180 evaluation succeeds +[819 01-13 06:14:29.77 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 +[81a 01-13 06:14:29.77 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 +[81b 01-13 06:14:29.77 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 +[81c 01-13 06:14:29.77 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 +[81d 01-13 06:14:29.77 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 +[81e 01-13 06:14:29.77 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 +[81f 01-13 06:14:29.77 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.8:50150 +[820 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[821 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50150, hangup +[822 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[823 01-13 06:14:29.77 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50150: read: connection reset by peer +[824 01-13 06:14:29.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[825 01-13 06:14:29.93 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50172 +[826 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[827 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[828 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[829 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[82a 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[82b 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...4B5017774DF6CFE9190F4633006D77BE +[82c 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 16463AAA81E49B95A521021D4D71BAD2C3881B1C28D1451EC48E954BC5F8E677 +[82d 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[82e 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[82f 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[830 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[831 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[832 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...4B5017774DF6CFE9190F4633006D77BE +[833 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 2BBC028E89150AD65FA3559ADCECA629BEDB35F926922FE8CA3F5AE43757334C +[834 01-13 06:14:31.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 ] -[7ef 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45412], isChainEmpty=[false], lastBlockNumber=[3] -[7f0 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -[7f1 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[7f2 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5320], Going to peek [8] bytes -[7f3 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -[7f4 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -[7f5 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[7f6 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[7f8 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[7f9 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[7fa 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5320], Going to peek [8] bytes -[7fb 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -[7fc 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -[7fd 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a458c0) for 172.18.0.2:50070 -[7fe 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.2:50070: rpc error: code = Unavailable desc = transport is closing -[7ff 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[800 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[801 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[7f7 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5320], Going to peek [8] bytes -[802 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -[803 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -[804 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[805 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[806 01-05 06:36:54.03 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:44160 with txid 'e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356' of type ENDORSER_TRANSACTION -[807 01-05 06:36:54.03 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 == -[808 01-05 06:36:54.03 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 -[809 01-05 06:36:54.03 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 01-05 06:36:54.03 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 01-05 06:36:54.03 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 01-05 06:36:54.03 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 -[80d 01-05 06:36:54.03 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----- +[835 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45412], isChainEmpty=[false], lastBlockNumber=[3] +[836 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 +[837 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[838 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +[839 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +[83a 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[83b 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[83c 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[83d 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[83e 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +[83f 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +[840 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[841 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[842 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[843 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes +[844 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +[845 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[846 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420976f60) for 172.18.0.5:44740 +[847 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.5:44740: rpc error: code = Canceled desc = context canceled +[848 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[849 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[84a 01-13 06:14:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[84b 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[84c 01-13 06:14:36.90 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.8:50172 with txid '67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053' of type ENDORSER_TRANSACTION +[84d 01-13 06:14:36.90 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 == +[84e 01-13 06:14:36.90 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 +[84f 01-13 06:14:36.90 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 == +[850 01-13 06:14:36.90 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 +[851 01-13 06:14:36.90 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 == +[852 01-13 06:14:36.90 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 +[853 01-13 06:14:36.90 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3068,210 +3138,260 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[80e 01-05 06:36:54.03 UTC] [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 0xc420138770 gate 1515134214035690000 evaluation starts -[80f 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 signed by 0 principal evaluation starts (used [false]) -[810 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[811 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[812 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[813 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 principal matched by identity 0 -[814 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d3 f3 8f da f1 a7 dd 6c 32 a1 18 37 a4 e1 41 d8 |.......l2..7..A.| -00000010 5e 73 1d aa c1 85 dc 6d 66 18 85 34 48 1e 5f 62 |^s.....mf..4H._b| -[815 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 a6 3e e7 f8 45 9b 7b 91 6f 36 79 |0D. ".>..E.{.o6y| -00000010 68 02 1a ae ca 93 08 74 db 6a 3b af da 7f c4 be |h......t.j;.....| -00000020 b6 ad 4c be 02 20 55 dc c1 27 f4 e5 bb 09 e1 da |..L.. U..'......| -00000030 dc e2 05 af 72 57 e2 ba d7 9b 65 0f 24 d0 62 7d |....rW....e.$.b}| -00000040 89 9f a7 67 11 3f |...g.?| -[816 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138770 principal evaluation succeeds for identity 0 -[817 01-05 06:36:54.03 UTC] [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 0xc420138770 gate 1515134214035690000 evaluation succeeds -[818 01-05 06:36:54.03 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 -[819 01-05 06:36:54.03 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 -[81a 01-05 06:36:54.03 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 -[81b 01-05 06:36:54.03 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 -[81c 01-05 06:36:54.03 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 -[81d 01-05 06:36:54.03 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 -[81e 01-05 06:36:54.03 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:44160 -[81f 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[820 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.5:7050->172.18.0.7:44160: read: connection reset by peer -[821 01-05 06:36:54.03 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44160: rpc error: code = Canceled desc = context canceled -[822 01-05 06:36:54.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[823 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[824 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[825 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[826 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[827 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[828 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...1A35923E2348E2BB150A34B9A331D42C -[829 01-05 06:36:56.03 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 43E04F8EB93785AF1145193790DCA0AB9308248F3BC9BF9D7118817A4D28B787 -[82a 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[82b 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[82c 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[82d 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[82e 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[82f 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...1A35923E2348E2BB150A34B9A331D42C -[830 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 8E07BD83945693A9DC0B1A69E545CD0687B157F1E2A766465B2C64C13E63DAE4 -[831 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 +[854 01-13 06:14:36.90 UTC] [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 0xc42011c440 gate 1515824076904741382 evaluation starts +[855 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 signed by 0 principal evaluation starts (used [false]) +[856 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[857 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[858 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 principal evaluation fails +[859 01-13 06:14:36.90 UTC] [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 0xc42011c440 gate 1515824076904741382 evaluation fails +[85a 01-13 06:14:36.90 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 +[85b 01-13 06:14:36.90 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 +[85c 01-13 06:14:36.90 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 ] +[85d 01-13 06:14:36.90 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 +[85e 01-13 06:14:36.90 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 +[85f 01-13 06:14:36.90 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 == +[860 01-13 06:14:36.90 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 +[861 01-13 06:14:36.90 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 == +[862 01-13 06:14:36.90 UTC] [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 0xc42011c468 gate 1515824076906607582 evaluation starts +[863 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 signed by 0 principal evaluation starts (used [false]) +[864 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[865 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[866 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c468 principal evaluation fails +[867 01-13 06:14:36.90 UTC] [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 0xc42011c468 gate 1515824076906607582 evaluation fails +[868 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[869 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[86a 01-13 06:14:36.90 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 == +[86b 01-13 06:14:36.90 UTC] [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 0xc42011c488 gate 1515824076909094882 evaluation starts +[86c 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 signed by 0 principal evaluation starts (used [false]) +[86d 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[86e 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[86f 01-13 06:14:36.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[870 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 principal matched by identity 0 +[871 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d5 8b 17 b0 df ab 1e be a0 6e 50 b6 5b da f7 f2 |.........nP.[...| +00000010 c2 cc 3f fe a4 7c 42 e2 30 25 58 d2 a6 0d 63 ae |..?..|B.0%X...c.| +[872 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 0b 1b d0 c5 a0 3b 14 3b d6 fe |0E.!.......;.;..| +00000010 27 1d e8 e0 07 99 d3 5d 65 b0 0a e3 7c 16 16 2f |'......]e...|../| +00000020 05 7a 15 5d d8 02 20 6c ff 5c 56 8a c0 65 3a d3 |.z.].. l.\V..e:.| +00000030 95 21 24 6b e1 cf 6d 16 df 29 47 b1 06 fd b9 05 |.!$k..m..)G.....| +00000040 f8 0b 3d b2 36 12 aa |..=.6..| +[873 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c488 principal evaluation succeeds for identity 0 +[874 01-13 06:14:36.91 UTC] [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 0xc42011c488 gate 1515824076909094882 evaluation succeeds +[875 01-13 06:14:36.91 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 +[876 01-13 06:14:36.91 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 +[877 01-13 06:14:36.91 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 +[878 01-13 06:14:36.91 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 +[879 01-13 06:14:36.91 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 +[87a 01-13 06:14:36.91 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 +[87b 01-13 06:14:36.91 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.8:50172 +[87c 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[87d 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50172, hangup +[87e 01-13 06:14:36.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[87f 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[880 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[881 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[882 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[883 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[884 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A884D4B72D3DB4F22EFDADFFD55BE534 +[885 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 13694B20D55BB7FE72B6486302B22FEF65DBFABAEEF8557594B4C84EC3AD2152 +[886 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[887 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[888 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[889 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[88a 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[88b 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A884D4B72D3DB4F22EFDADFFD55BE534 +[88c 01-13 06:14:38.91 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9E004B16E8B69EA376003D34FB667AC8A543ACDE410377AC7947936E243A77B4 +[88d 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 ] -[832 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50736], isChainEmpty=[false], lastBlockNumber=[4] -[833 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -[834 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -[835 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes -[836 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} -[837 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] -[839 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -[83a 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes -[83b 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} -[83c 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] -[83d 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[83e 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -[838 01-05 06:36:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[83f 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -[840 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[841 01-05 06:37:04.85 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:44170 -[842 01-05 06:37:04.91 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:44170 with txid 'b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9' of type ENDORSER_TRANSACTION -[843 01-05 06:37:04.91 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 == -[844 01-05 06:37:04.91 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 -[845 01-05 06:37:04.91 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 == -[846 01-05 06:37:04.91 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 -[847 01-05 06:37:04.91 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 == -[848 01-05 06:37:04.91 UTC] [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 0xc42000e358 gate 1515134224914274400 evaluation starts -[849 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 signed by 0 principal evaluation starts (used [false]) -[84a 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[84b 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[84c 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e358 principal evaluation fails -[84d 01-05 06:37:04.91 UTC] [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 0xc42000e358 gate 1515134224914274400 evaluation fails -[84e 01-05 06:37:04.91 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 -[84f 01-05 06:37:04.91 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 -[850 01-05 06:37:04.91 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 == -[851 01-05 06:37:04.91 UTC] [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 1515134224915115400 evaluation starts -[852 01-05 06:37:04.91 UTC] [github.com/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]) -[853 01-05 06:37:04.91 UTC] [github.com/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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[854 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[855 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[856 01-05 06:37:04.91 UTC] [github.com/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 matched by identity 0 -[857 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b5 72 16 a6 8c c5 46 de 67 d6 e0 7c 06 ef bb 0a |.r....F.g..|....| -00000010 c5 26 82 1e ac cc 53 ea 1c c0 bd 31 1a 27 f3 62 |.&....S....1.'.b| -[858 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 48 f4 9a 06 1d 0c 3c 59 5d 9f 19 4d |0D. H..... DEBU 0xc42000e370 principal evaluation succeeds for identity 0 -[85a 01-05 06:37:04.91 UTC] [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 1515134224915115400 evaluation succeeds -[85b 01-05 06:37:04.91 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 -[85c 01-05 06:37:04.91 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 -[85d 01-05 06:37:04.91 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 -[85e 01-05 06:37:04.91 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 -[85f 01-05 06:37:04.91 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 -[860 01-05 06:37:04.91 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 -[861 01-05 06:37:04.91 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:44170 -[862 01-05 06:37:04.91 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[863 01-05 06:37:04.92 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44170: rpc error: code = Canceled desc = context canceled -[864 01-05 06:37:04.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[865 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[866 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[867 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[868 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[869 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[86a 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...184637678E501C2306383636388256A6 -[86b 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 05E190680919D82C00FBD9C065CCEFB11B54476ECBDC2A18130AC2CB83448968 -[86c 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[86d 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[86e 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[86f 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[870 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[871 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...184637678E501C2306383636388256A6 -[872 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 116018FE77B3DD8A8716BBB9C95C7192C502A3EAEA4A91C97CA4D5CD8E76528D -[873 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 +[88e 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50737], isChainEmpty=[false], lastBlockNumber=[4] +[88f 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 +[890 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +[891 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5325], Going to peek [8] bytes +[892 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5323], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} +[894 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +[895 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5325], Going to peek [8] bytes +[896 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5323], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} +[897 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] +[898 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[899 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +[893 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] +[89a 01-13 06:14:38.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[89b 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +[89c 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[89d 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50210 +[89e 01-13 06:14:44.58 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.8:50210 with txid '1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421' of type ENDORSER_TRANSACTION +[89f 01-13 06:14:44.58 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 == +[8a0 01-13 06:14:44.58 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 +[8a1 01-13 06:14:44.58 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 == +[8a2 01-13 06:14:44.58 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 +[8a3 01-13 06:14:44.58 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 == +[8a4 01-13 06:14:44.58 UTC] [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 0xc42000e218 gate 1515824084589852584 evaluation starts +[8a5 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 signed by 0 principal evaluation starts (used [false]) +[8a6 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8a7 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[8a8 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e218 principal evaluation fails +[8a9 01-13 06:14:44.59 UTC] [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 0xc42000e218 gate 1515824084589852584 evaluation fails +[8aa 01-13 06:14:44.59 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 +[8ab 01-13 06:14:44.59 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 +[8ac 01-13 06:14:44.59 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 ] +[8ad 01-13 06:14:44.59 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 +[8ae 01-13 06:14:44.59 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 +[8af 01-13 06:14:44.59 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 == +[8b0 01-13 06:14:44.59 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 +[8b1 01-13 06:14:44.59 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 == +[8b2 01-13 06:14:44.59 UTC] [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 1515824084591748184 evaluation starts +[8b3 01-13 06:14:44.59 UTC] [github.com/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]) +[8b4 01-13 06:14:44.59 UTC] [github.com/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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8b5 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[8b6 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[8b7 01-13 06:14:44.59 UTC] [github.com/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 matched by identity 0 +[8b8 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 18 53 5d aa ee 77 7d 8e 4b 1e 15 01 55 b1 9c db |.S]..w}.K...U...| +00000010 79 89 d4 27 11 a2 8b 12 ab 1d be 7f 44 5a cf d2 |y..'........DZ..| +[8b9 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 7e a3 9d d4 14 a8 01 16 94 9c 91 |0D. "~..........| +00000010 00 22 a0 21 cf c2 00 e5 42 ca 9e 7e 8a 79 ac 1c |.".!....B..~.y..| +00000020 0e 9f f8 a0 02 20 33 8b 10 b0 c9 0d d5 6c 4f 10 |..... 3......lO.| +00000030 86 90 1f b9 55 87 94 74 65 4f eb fa 4d 90 fa 7c |....U..teO..M..|| +00000040 ee 46 93 3c 36 18 |.F.<6.| +[8ba 01-13 06:14:44.59 UTC] [github.com/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 succeeds for identity 0 +[8bb 01-13 06:14:44.59 UTC] [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 1515824084591748184 evaluation succeeds +[8bc 01-13 06:14:44.59 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 +[8bd 01-13 06:14:44.59 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 +[8be 01-13 06:14:44.59 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 +[8bf 01-13 06:14:44.59 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 +[8c0 01-13 06:14:44.59 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 +[8c1 01-13 06:14:44.59 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 +[8c2 01-13 06:14:44.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 ENDORSER_TRANSACTION from 172.18.0.8:50210 +[8c3 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[8c4 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50210, hangup +[8c5 01-13 06:14:44.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[8c6 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[8c7 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8c8 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8c9 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8ca 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8cb 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E80E2B7D7263793F27D00A32E5920420 +[8cc 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 12C11C5455E35CF1A4CB8EC067BC9BBCFBD5DD7A1B4628886717428EAAA99E3D +[8cd 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8ce 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8cf 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[8d0 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8d1 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8d2 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...E80E2B7D7263793F27D00A32E5920420 +[8d3 01-13 06:14:46.59 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 24E0F19B0AE3DC297101A736092DB7D3B134BBEE2ABB150D90074B40B1109A96 +[8d4 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 ] -[874 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55516], isChainEmpty=[false], lastBlockNumber=[5] -[876 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -[875 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -[877 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4780], Going to peek [8] bytes -[878 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -[879 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4780], Going to peek [8] bytes -[87a 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4778], placementInfo={fileNum=[0], startOffset=[50736], bytesOffset=[50738]} -[87c 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4778] read from file [0] -[87b 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4778], placementInfo={fileNum=[0], startOffset=[50736], bytesOffset=[50738]} -[87d 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[87e 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4778] read from file [0] -[880 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -[87f 01-05 06:37:06.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[881 01-05 06:37:06.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -[882 01-05 06:37:14.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[883 01-05 06:37:14.24 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:44180 -[884 01-05 06:37:14.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:44180 with txid 'ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272' of type ENDORSER_TRANSACTION -[885 01-05 06:37:14.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 == -[886 01-05 06:37:14.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 -[887 01-05 06:37:14.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 == -[888 01-05 06:37:14.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 -[889 01-05 06:37:14.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 == -[88a 01-05 06:37:14.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 0xc42000e490 gate 1515134234282474600 evaluation starts -[88b 01-05 06:37:14.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 0xc42000e490 signed by 0 principal evaluation starts (used [false]) -[88c 01-05 06:37:14.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 0xc42000e490 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[88d 01-05 06:37:14.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.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[88e 01-05 06:37:14.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.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[88f 01-05 06:37:14.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 0xc42000e490 principal matched by identity 0 -[890 01-05 06:37:14.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 -> DEBU Verify: digest = 00000000 7e 6a cf 2b 50 ca f7 98 0b 58 c3 93 14 16 70 13 |~j.+P....X....p.| -00000010 bf 6d b8 a4 18 de 00 09 57 bd 00 62 97 a9 f4 a8 |.m......W..b....| -[891 01-05 06:37:14.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 -> DEBU Verify: sig = 00000000 30 45 02 21 00 fb 2a f2 a0 ba 9a 1b 09 c3 99 40 |0E.!..*........@| -00000010 53 45 ab 0f 10 70 9a c2 01 c8 66 9e 2f bb a0 3b |SE...p....f./..;| -00000020 82 6e 48 29 bc 02 20 7a e8 15 da 9a 7d f3 3a 9b |.nH).. z....}.:.| -00000030 ba 99 a1 77 db 3f 1f c8 20 94 bd 62 8a f2 52 9d |...w.?.. ..b..R.| -00000040 88 f8 b2 16 17 40 b5 |.....@.| -[892 01-05 06:37:14.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 0xc42000e490 principal evaluation succeeds for identity 0 -[893 01-05 06:37:14.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 0xc42000e490 gate 1515134234282474600 evaluation succeeds -[894 01-05 06:37:14.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 -[895 01-05 06:37:14.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 -[896 01-05 06:37:14.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 -[897 01-05 06:37:14.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 -[898 01-05 06:37:14.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 -[899 01-05 06:37:14.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 -[89a 01-05 06:37:14.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:44180 -[89b 01-05 06:37:14.28 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[89c 01-05 06:37:14.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44180: rpc error: code = Canceled desc = context canceled -[89d 01-05 06:37:14.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[89e 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[89f 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8a0 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8a1 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8a2 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8a3 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...CCC42BB1C26D35B7E3F798F3B36FA0B2 -[8a4 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6B8038DBF156BE331CF9E88DCA2E04DBE419CECBF4E70B0D52A83972231702C9 -[8a5 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8a6 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8a7 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[8a8 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8a9 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8aa 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...CCC42BB1C26D35B7E3F798F3B36FA0B2 -[8ab 01-05 06:37:16.28 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6ACC4E9E3C54EDB488764FF97FBCAF46C5B504436CFD577E4959FD423D3C9B89 -[8ac 01-05 06:37:16.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 +[8d5 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55516], isChainEmpty=[false], lastBlockNumber=[5] +[8d6 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 +[8d7 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +[8d8 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[8d9 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} +[8db 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[8da 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +[8dd 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[8dc 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[8de 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} +[8e0 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[8e1 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[8df 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +[8e2 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +[8e3 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[8e4 01-13 06:14:52.08 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50234 +[8e5 01-13 06:14:52.10 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.8:50234 with txid '66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13' of type ENDORSER_TRANSACTION +[8e6 01-13 06:14:52.10 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 == +[8e7 01-13 06:14:52.10 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 +[8e8 01-13 06:14:52.10 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 == +[8e9 01-13 06:14:52.10 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 +[8ea 01-13 06:14:52.10 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 == +[8eb 01-13 06:14:52.10 UTC] [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 0xc42000e290 gate 1515824092106448287 evaluation starts +[8ec 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 signed by 0 principal evaluation starts (used [false]) +[8ed 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8ee 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[8ef 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal evaluation fails +[8f0 01-13 06:14:52.10 UTC] [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 0xc42000e290 gate 1515824092106448287 evaluation fails +[8f1 01-13 06:14:52.10 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 +[8f2 01-13 06:14:52.10 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 +[8f3 01-13 06:14:52.10 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 ] +[8f4 01-13 06:14:52.10 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 +[8f5 01-13 06:14:52.10 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 +[8f6 01-13 06:14:52.10 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 == +[8f7 01-13 06:14:52.10 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 +[8f8 01-13 06:14:52.10 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 == +[8f9 01-13 06:14:52.10 UTC] [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 1515824092108473387 evaluation starts +[8fa 01-13 06:14:52.10 UTC] [github.com/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]) +[8fb 01-13 06:14:52.10 UTC] [github.com/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 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8fc 01-13 06:14:52.10 UTC] [github.com/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 Org1MSP, got Org2MSP) +[8fd 01-13 06:14:52.10 UTC] [github.com/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 +[8fe 01-13 06:14:52.10 UTC] [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 1515824092108473387 evaluation fails +[8ff 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[900 01-13 06:14:52.10 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 +[901 01-13 06:14:52.10 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 == +[902 01-13 06:14:52.10 UTC] [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 0xc42000e2a0 gate 1515824092109803487 evaluation starts +[903 01-13 06:14:52.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 signed by 0 principal evaluation starts (used [false]) +[904 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[905 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[906 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[907 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 principal matched by identity 0 +[908 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df 7e 3a 6e 4e 92 be b0 de fa d6 08 15 07 6a be |.~:nN.........j.| +00000010 36 11 4d 8d db 24 ba bc 6c 44 90 7e e0 6b 0f 13 |6.M..$..lD.~.k..| +[909 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f 54 8d f5 25 69 c1 91 32 0d ae da |0D. oT..%i..2...| +00000010 30 20 b0 c5 c3 b4 fd 1e 18 99 98 f4 d4 a4 9a 66 |0 .............f| +00000020 c1 8e 5b d8 02 20 7d 09 19 84 19 9b ab 19 56 a2 |..[.. }.......V.| +00000030 e4 1f 7f 24 b1 f3 88 a9 5c 7e cb 42 a6 6d aa 32 |...$....\~.B.m.2| +00000040 7d ca de 70 47 e8 |}..pG.| +[90a 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a0 principal evaluation succeeds for identity 0 +[90b 01-13 06:14:52.11 UTC] [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 0xc42000e2a0 gate 1515824092109803487 evaluation succeeds +[90c 01-13 06:14:52.11 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 +[90d 01-13 06:14:52.11 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 +[90e 01-13 06:14:52.11 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 +[90f 01-13 06:14:52.11 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 +[910 01-13 06:14:52.11 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 +[911 01-13 06:14:52.11 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 +[912 01-13 06:14:52.11 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.8:50234 +[913 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[914 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50234, hangup +[915 01-13 06:14:52.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[916 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[917 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[918 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[919 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[91a 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[91b 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...64A9A8D419F47B03DA2A101A27A0E1E2 +[91c 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E8108DF985CB8A43EE411DBA53CB84667AE519EBBFDAA2CB70AE45469BD558D4 +[91d 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[91e 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[91f 01-13 06:14:54.11 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[920 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[921 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[922 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...64A9A8D419F47B03DA2A101A27A0E1E2 +[923 01-13 06:14:54.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C9EECA8F80D65932DD3847B314B67AEF8061167EEE0BE86621C4A2F8B649C61D +[924 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 ] -[8ad 01-05 06:37:16.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60301], isChainEmpty=[false], lastBlockNumber=[6] -[8af 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[8b0 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[8ae 01-05 06:37:16.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -[8b2 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[8b3 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[8b1 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -[8b5 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[8b6 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[8b7 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[8b4 01-05 06:37:16.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -[8b8 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[8b9 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[8ba 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[8bb 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[8bc 01-05 06:37:17.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:44200 -[8bd 01-05 06:37:17.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:44200 -[8be 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[8bf 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8c0 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[8c1 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8c2 01-05 06:37:17.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[8c3 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[8c4 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[925 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60299], isChainEmpty=[false], lastBlockNumber=[6] +[926 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[927 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +[928 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +[929 01-13 06:14:54.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +[92a 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[92b 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[92d 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 +[92c 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[92e 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +[92f 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +[930 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +[931 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[932 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[933 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[934 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50260 +[935 01-13 06:14:54.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.8:50260 +[936 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[937 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[938 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[939 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[93a 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[93b 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[93c 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3284,683 +3404,453 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[8c5 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134237761788800 evaluation starts -[8c6 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 signed by 0 principal evaluation starts (used [false]) -[8c7 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8c8 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[8c9 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 principal evaluation fails -[8ca 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134237761788800 evaluation fails -[8cb 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[8cc 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[8cd 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[8ce 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138400 gate 1515134237768168800 evaluation starts -[8cf 01-05 06:37:17.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 signed by 0 principal evaluation starts (used [false]) -[8d0 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8d1 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[8d2 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138400 principal evaluation fails -[8d3 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138400 gate 1515134237768168800 evaluation fails -[8d4 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[8d5 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[8d6 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[8d7 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[8d8 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[8d9 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[8da 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8db 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[8dc 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134237777023300 evaluation starts -[8dd 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 signed by 0 principal evaluation starts (used [false]) -[8de 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8df 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[8e0 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[8e1 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 principal matched by identity 0 -[8e2 01-05 06:37:17.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a3 11 e1 6a b7 54 e2 4a 1c 07 bb f4 f6 65 60 41 |...j.T.J.....e`A| -00000010 2a 43 62 7b 5f a8 c0 7b cf 2a c5 d3 39 f0 20 e5 |*Cb{_..{.*..9. .| -[8e3 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 43 02 20 3b f7 f0 74 2e 79 84 e6 97 0a 54 54 |0C. ;..t.y....TT| -00000010 bd 06 34 af 41 37 15 8c 20 33 4d da 97 90 4a fd |..4.A7.. 3M...J.| -00000020 ae c2 ea 81 02 1f 50 43 aa a3 10 ab 66 62 f0 2f |......PC....fb./| -00000030 7b e5 a6 8e 66 f1 cb ec e8 84 e9 d6 92 b4 d8 d2 |{...f...........| -00000040 14 be 23 d2 8a |..#..| -[8e4 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 principal evaluation succeeds for identity 0 -[8e5 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134237777023300 evaluation succeeds -[8e6 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[8e7 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[8e8 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[8e9 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[8ea 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[8eb 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[8ec 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42016bda0) start: > stop: > from 172.18.0.7:44200 -[8ed 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[8ee 01-05 06:37:17.78 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=[55516] -[8ef 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[8f0 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -[8f1 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[8f2 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42016bda0) for 172.18.0.7:44200 -[8f3 01-05 06:37:17.78 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:44200 for (0xc42016bda0) -[8f5 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[8f6 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[8f4 01-05 06:37:17.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:44200 -[8f8 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[8f9 01-05 06:37:17.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[8f7 01-05 06:37:17.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:44200 -[8fa 01-05 06:37:17.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44200: rpc error: code = Canceled desc = context canceled -[8fb 01-05 06:37:17.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[8fc 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[8fd 01-05 06:37:18.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:44202 -[8fe 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44202 -[8ff 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[900 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[901 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[902 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[903 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[904 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134238058831100 evaluation starts -[905 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -[906 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[907 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[908 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -[909 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134238058831100 evaluation fails -[90a 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[90b 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[90c 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[90d 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134238059603800 evaluation starts -[90e 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) -[90f 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[910 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[911 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation fails -[912 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134238059603800 evaluation fails -[913 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[914 01-05 06:37:18.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[915 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[916 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[917 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[918 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[919 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[91a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[91b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134238060355500 evaluation starts -[91c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) -[91d 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[91e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[91f 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[920 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal matched by identity 0 -[921 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d1 6d 8a 3d 94 82 8f 08 22 e5 e5 13 e6 68 9f 76 |.m.=...."....h.v| -00000010 c9 44 1f d6 0d 4a 21 ce 73 c7 a6 0d db 4e 08 0b |.D...J!.s....N..| -[922 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 49 1b 6b bd eb 26 9b 60 48 61 b5 1a |0D. I.k..&.`Ha..| -00000010 a6 3b cb 42 17 13 86 7b 9a dc 62 dd 04 d7 5d 0f |.;.B...{..b...].| -00000020 c2 32 9e 4b 02 20 5b 89 52 9a 6e 28 85 aa 66 41 |.2.K. [.R.n(..fA| -00000030 2e 09 8f 2b 43 19 48 7c e9 82 c7 26 ff d9 b4 4b |...+C.H|...&...K| -00000040 18 69 81 e4 a9 df |.i....| -[923 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation succeeds for identity 0 -[924 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515134238060355500 evaluation succeeds -[925 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[926 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[927 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[928 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[929 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[92a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[92b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42028f0c0) start: > stop: > from 172.18.0.7:44202 -[92c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[92d 01-05 06:37:18.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=[55516] -[92e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[92f 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -[930 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[931 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42028f0c0) for 172.18.0.7:44202 -[932 01-05 06:37:18.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:44202 for (0xc42028f0c0) -[933 01-05 06:37:18.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:44202 -[934 01-05 06:37:18.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:44202 -[935 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[936 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[937 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[938 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[939 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[93a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[93b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[93c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[93d 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[93e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134238065636800 evaluation starts -[93f 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 signed by 0 principal evaluation starts (used [false]) -[940 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[941 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[942 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 principal evaluation fails -[943 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134238065636800 evaluation fails -[944 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[945 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[946 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[947 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134238066733100 evaluation starts -[948 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 signed by 0 principal evaluation starts (used [false]) -[949 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[94a 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[94b 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 principal evaluation fails -[94c 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134238066733100 evaluation fails -[94d 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[94e 01-05 06:37:18.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[94f 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[950 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[951 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[952 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[953 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[954 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[955 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134238070939900 evaluation starts -[956 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 signed by 0 principal evaluation starts (used [false]) -[957 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[958 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[959 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[95a 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal matched by identity 0 -[95b 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b5 ae 68 b3 e3 9e f4 23 2a 0a de 65 ba d9 d9 45 |..h....#*..e...E| -00000010 ee 40 49 a2 44 6f de 19 c7 70 0a b9 46 b8 8f 31 |.@I.Do...p..F..1| -[95c 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 01 ad 86 2d 42 3f 41 06 e3 69 93 f1 |0D. ...-B?A..i..| -00000010 27 a4 3e a5 30 bc 19 dc e5 65 f5 03 e6 a8 27 38 |'.>.0....e....'8| -00000020 7a 37 ab cf 02 20 79 90 2d bb 91 eb 02 f1 0b fc |z7... y.-.......| -00000030 0b c8 2a 2f 27 5d 51 0d dc 0f 2c 1f dc 53 a1 ed |..*/']Q...,..S..| -00000040 02 df e1 6a 24 68 |...j$h| -[95d 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal evaluation succeeds for identity 0 -[95e 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134238070939900 evaluation succeeds -[95f 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[960 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[961 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[962 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[963 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[964 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[965 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203a5000) start: > stop: > from 172.18.0.7:44202 -[966 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[967 01-05 06:37:18.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=[26077] -[968 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34224], Going to peek [8] bytes -[969 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -[96a 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[96b 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203a5000) for 172.18.0.7:44202 -[96c 01-05 06:37:18.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:44202 for (0xc4203a5000) -[96e 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[96f 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[96d 01-05 06:37:18.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:44202 -[971 01-05 06:37:18.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:44202 -[970 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[972 01-05 06:37:18.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[973 01-05 06:37:18.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44202: rpc error: code = Canceled desc = context canceled -[974 01-05 06:37:18.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[975 01-05 06:37:18.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[976 01-05 06:37:18.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:44204 -[977 01-05 06:37:18.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:44204 -[978 01-05 06:37:18.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[979 01-05 06:37:18.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[97a 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[97b 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[97c 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[97d 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515134238311235000 evaluation starts -[97e 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -[97f 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[980 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[981 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation fails -[982 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515134238311235000 evaluation fails -[983 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[984 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[985 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[986 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515134238312708200 evaluation starts -[987 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -[988 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[989 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[98a 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation fails -[98b 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515134238312708200 evaluation fails -[98c 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[98d 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[98e 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers ] -[98f 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[990 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[991 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[992 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[993 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[994 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1515134238314748800 evaluation starts -[995 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 signed by 0 principal evaluation starts (used [false]) -[996 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[997 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[998 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[999 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal matched by identity 0 -[99a 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 79 9f 0e 7e 3a 8b 64 05 8e 6d f0 e6 b1 a2 1b 07 |y..~:.d..m......| -00000010 bd 3b 16 bb 12 68 70 07 8a 9d 07 04 36 2a 54 d1 |.;...hp.....6*T.| -[99b 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 a1 43 04 7d 9f d4 17 cd 72 75 c1 |0D. x.C.}....ru.| -00000010 7e 03 2e 98 49 e9 21 e3 39 ea f5 00 64 d7 10 a0 |~...I.!.9...d...| -00000020 47 18 28 41 02 20 40 c1 60 c4 80 5b a4 b2 e3 d5 |G.(A. @.`..[....| -00000030 c7 6a 8f 4b e9 1a e4 28 7f 2f 54 5f 16 d8 fe ee |.j.K...(./T_....| -00000040 ee ca 80 52 13 93 |...R..| -[99c 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal evaluation succeeds for identity 0 -[99d 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1515134238314748800 evaluation succeeds -[99e 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[99f 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[9a0 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[9a1 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[9a2 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9a3 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[9a4 01-05 06:37:18.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202fe420) start: > stop: > from 172.18.0.7:44204 -[9a5 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9a6 01-05 06:37:18.32 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] -[9a7 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60301], Going to peek [8] bytes -[9a8 01-05 06:37:18.32 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]} -[9a9 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[9aa 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202fe420) for 172.18.0.7:44204 -[9ab 01-05 06:37:18.32 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:44204 for (0xc4202fe420) -[9ad 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9ae 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9ac 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44204 -[9af 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9b0 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9b1 01-05 06:37:18.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44204 -[9b2 01-05 06:37:18.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44204: rpc error: code = Canceled desc = context canceled -[9b3 01-05 06:37:18.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9b4 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9b5 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44206 -[9b6 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44206 -[9b7 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[9b8 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9b9 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[9ba 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9bb 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[9bc 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138548 gate 1515134238527434500 evaluation starts -[9bd 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 signed by 0 principal evaluation starts (used [false]) -[9be 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9bf 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[9c0 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138548 principal evaluation fails -[9c1 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138548 gate 1515134238527434500 evaluation fails -[9c2 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[9c3 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[9c4 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[9c5 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138550 gate 1515134238528020600 evaluation starts -[9c6 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 signed by 0 principal evaluation starts (used [false]) -[9c7 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9c8 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[9c9 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138550 principal evaluation fails -[9ca 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138550 gate 1515134238528020600 evaluation fails -[9cb 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[9cc 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[9cd 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[9ce 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[9cf 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[9d0 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[9d1 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9d2 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[9d3 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138558 gate 1515134238529222200 evaluation starts -[9d4 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138558 signed by 0 principal evaluation starts (used [false]) -[9d5 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138558 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9d6 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[9d7 01-05 06:37:18.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[9d8 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138558 principal matched by identity 0 -[9d9 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 b0 dc 0c a2 72 8b a1 19 ec 21 1f d8 6f ea 11 |.....r....!..o..| -00000010 f0 8f da 3e 8f cc d9 27 3e bf e7 ec a6 93 3c a2 |...>...'>.....<.| -[9da 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 23 03 5f a9 7a 0d 4d 01 5d c9 99 73 |0D. #._.z.M.]..s| -00000010 35 24 1e d7 fb 01 f4 5a 3c 41 64 25 3a 04 c4 a8 |5$.....Z DEBU 0xc420138558 principal evaluation succeeds for identity 0 -[9dc 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138558 gate 1515134238529222200 evaluation succeeds -[9dd 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[9de 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[9df 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[9e0 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[9e1 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9e2 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[9e3 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201b1ac0) start: > stop: > from 172.18.0.7:44206 -[9e4 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9e5 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -[9e6 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48181], Going to peek [8] bytes -[9e7 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[9e8 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[9e9 01-05 06:37:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201b1ac0) for 172.18.0.7:44206 -[9ea 01-05 06:37:18.53 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:44206 for (0xc4201b1ac0) -[9ec 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9ed 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9eb 01-05 06:37:18.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:44206 -[9ef 01-05 06:37:18.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:44206 -[9ee 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9f0 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9f1 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44206: rpc error: code = Canceled desc = context canceled -[9f2 01-05 06:37:18.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9f3 01-05 06:37:19.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9f4 01-05 06:37:19.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44208 -[9f5 01-05 06:37:19.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:44208 -[9f6 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[9f7 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9f8 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[9f9 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9fa 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[9fb 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a0 gate 1515134239154488900 evaluation starts -[9fc 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 signed by 0 principal evaluation starts (used [false]) -[9fd 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9fe 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[9ff 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a0 principal evaluation fails -[a00 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a0 gate 1515134239154488900 evaluation fails -[a01 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[a02 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[a03 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[a04 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a8 gate 1515134239155109900 evaluation starts -[a05 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 signed by 0 principal evaluation starts (used [false]) -[a06 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a07 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a08 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385a8 principal evaluation fails -[a09 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385a8 gate 1515134239155109900 evaluation fails -[a0a 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[a0b 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[a0c 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[a0d 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[a0e 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[a0f 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a10 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a11 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a12 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385b0 gate 1515134239155773300 evaluation starts -[a13 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 signed by 0 principal evaluation starts (used [false]) -[a14 01-05 06:37:19.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a15 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a16 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a17 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 principal matched by identity 0 -[a18 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e2 b5 b0 0c 46 15 60 f6 1e 7d 6d 14 f6 ac 3b 5a |....F.`..}m...;Z| -00000010 c0 09 ce b2 62 b5 5f e9 84 e7 42 8f 84 a5 d6 6d |....b._...B....m| -[a19 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 28 d0 6a 27 ff f3 f8 d1 52 60 85 8b |0D. (.j'....R`..| -00000010 73 29 f3 c5 4b 16 98 e5 8e 4b 89 ff 26 20 e6 78 |s)..K....K..& .x| -00000020 1e ca cc e2 02 20 38 c4 d2 aa d2 a3 68 98 92 a9 |..... 8.....h...| -00000030 2a 9b b0 ba f8 48 29 f0 57 6a a0 0c be 17 b7 73 |*....H).Wj.....s| -00000040 c5 ce 27 b9 ab 2c |..'..,| -[a1a 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385b0 principal evaluation succeeds for identity 0 -[a1b 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385b0 gate 1515134239155773300 evaluation succeeds -[a1c 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a1d 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a1e 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a1f 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a20 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a21 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a22 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200d37a0) start: > stop: > from 172.18.0.7:44208 -[a23 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a24 01-05 06:37:19.16 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=[26077] -[a25 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34224], Going to peek [8] bytes -[a26 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26077], bytesOffset=[26079]} -[a27 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[a28 01-05 06:37:19.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d37a0) for 172.18.0.7:44208 -[a29 01-05 06:37:19.17 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:44208 for (0xc4200d37a0) -[a2a 01-05 06:37:19.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44208 -[a2b 01-05 06:37:19.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44208 -[a2c 01-05 06:37:19.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a2e 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a2d 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44208: rpc error: code = Canceled desc = context canceled -[a2f 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a30 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a31 01-05 06:37:19.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a32 01-05 06:37:19.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a33 01-05 06:37:19.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44210 -[a34 01-05 06:37:19.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44210 -[a35 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a36 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a37 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[a38 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a39 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[a3a 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138600 gate 1515134239533137700 evaluation starts -[a3b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 signed by 0 principal evaluation starts (used [false]) -[a3c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a3d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[a3e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138600 principal evaluation fails -[a3f 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138600 gate 1515134239533137700 evaluation fails -[a40 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[a41 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[a42 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[a43 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138630 gate 1515134239534488300 evaluation starts -[a44 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 signed by 0 principal evaluation starts (used [false]) -[a45 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a46 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a47 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138630 principal evaluation fails -[a48 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138630 gate 1515134239534488300 evaluation fails -[a49 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[a4a 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[a4b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[a4c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[a4d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[a4e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a4f 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a50 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a51 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138638 gate 1515134239535548100 evaluation starts -[a52 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 signed by 0 principal evaluation starts (used [false]) -[a53 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a54 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a55 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a56 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 principal matched by identity 0 -[a57 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2a 4e 3a a7 0a e7 12 06 93 b5 31 21 b1 82 45 73 |*N:.......1!..Es| -00000010 02 5c 85 89 42 57 6c 52 99 37 87 54 fa a9 49 ee |.\..BWlR.7.T..I.| -[a58 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5a b7 67 25 08 fe 18 2f 47 c5 36 37 |0D. Z.g%.../G.67| -00000010 5f 94 be a7 77 6f 2b e6 d9 58 79 16 72 10 30 a9 |_...wo+..Xy.r.0.| -00000020 8e 29 e0 ba 02 20 45 8e 53 b8 23 59 35 51 0c d4 |.)... E.S.#Y5Q..| -00000030 33 ae 01 83 27 1d 87 e9 8b 1d 36 11 c7 d7 69 c8 |3...'.....6...i.| -00000040 f8 8a 43 11 9c 31 |..C..1| -[a59 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138638 principal evaluation succeeds for identity 0 -[a5a 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138638 gate 1515134239535548100 evaluation succeeds -[a5b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a5c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a5d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a5e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a5f 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a60 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a61 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202a8c80) start: > stop: > from 172.18.0.7:44210 -[a62 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a63 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40092] -[a64 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20209], Going to peek [8] bytes -[a65 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5318], placementInfo={fileNum=[0], startOffset=[40092], bytesOffset=[40094]} -[a66 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5318] read from file [0] -[a67 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202a8c80) for 172.18.0.7:44210 -[a68 01-05 06:37:19.53 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:44210 for (0xc4202a8c80) -[a69 01-05 06:37:19.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:44210 -[a6a 01-05 06:37:19.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:44210 -[a6b 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a6c 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a6d 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a6e 01-05 06:37:19.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a6f 01-05 06:37:19.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44210: rpc error: code = Canceled desc = context canceled -[a70 01-05 06:37:19.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a71 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a72 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44212 -[a73 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44212 -[a74 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a75 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a76 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[a77 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a78 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[a79 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a0 gate 1515134239728589700 evaluation starts -[a7a 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 signed by 0 principal evaluation starts (used [false]) -[a7b 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a7c 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[a7d 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a0 principal evaluation fails -[a7e 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a0 gate 1515134239728589700 evaluation fails -[a7f 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[a80 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[a81 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[a82 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a8 gate 1515134239729472100 evaluation starts -[a83 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 signed by 0 principal evaluation starts (used [false]) -[a84 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a85 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[a86 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386a8 principal evaluation fails -[a87 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386a8 gate 1515134239729472100 evaluation fails -[a88 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[a89 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[a8a 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[a8b 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[a8c 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[a8d 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a8e 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a8f 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a90 01-05 06:37:19.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386b8 gate 1515134239729988100 evaluation starts -[a91 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 signed by 0 principal evaluation starts (used [false]) -[a92 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a93 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a94 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a95 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 principal matched by identity 0 -[a96 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 50 f9 1d 37 1c 76 fd df 32 c2 e0 02 b3 ae 31 02 |P..7.v..2.....1.| -00000010 29 c4 1e 90 b1 0e e5 ba b9 91 49 8c c0 f2 c1 4a |).........I....J| -[a97 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f7 a8 29 64 48 c8 62 82 eb 74 19 |0E.!...)dH.b..t.| -00000010 95 2b d7 6f 60 41 c3 52 7c 47 a1 0c 29 c3 3e 51 |.+.o`A.R|G..).>Q| -00000020 8f 0d 61 07 52 02 20 70 00 d7 49 38 5d 8f 57 00 |..a.R. p..I8].W.| -00000030 d4 0a 09 7b 0f a6 7b bf 7d af d4 b1 79 08 5e ac |...{..{.}...y.^.| -00000040 3c b5 04 72 1b 5f da |<..r._.| -[a98 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386b8 principal evaluation succeeds for identity 0 -[a99 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386b8 gate 1515134239729988100 evaluation succeeds -[a9a 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a9b 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a9c 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a9d 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a9e 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a9f 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[aa0 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a44560) start: > stop: > from 172.18.0.7:44212 -[aa1 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[aa2 01-05 06:37:19.73 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=[45412] -[aa3 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14889], Going to peek [8] bytes -[aa4 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} -[aa5 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] -[aa6 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a44560) for 172.18.0.7:44212 -[aa7 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:44212 for (0xc420a44560) -[aa8 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44212 -[aa9 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44212 -[aaa 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[aab 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[aac 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[aad 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[aae 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44212: rpc error: code = Canceled desc = context canceled -[aaf 01-05 06:37:19.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[ab0 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[ab1 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44214 -[ab2 01-05 06:37:19.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:44214 -[ab3 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ab4 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ab5 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[ab6 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ab7 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[ab8 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138740 gate 1515134239928337800 evaluation starts -[ab9 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 signed by 0 principal evaluation starts (used [false]) -[aba 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[abb 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[abc 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138740 principal evaluation fails -[abd 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138740 gate 1515134239928337800 evaluation fails -[abe 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[abf 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[ac0 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[ac1 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138748 gate 1515134239928696800 evaluation starts -[ac2 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 signed by 0 principal evaluation starts (used [false]) -[ac3 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ac4 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[ac5 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138748 principal evaluation fails -[ac6 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138748 gate 1515134239928696800 evaluation fails -[ac7 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[ac8 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[ac9 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[aca 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[acb 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[acc 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[acd 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ace 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[acf 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134239929177100 evaluation starts -[ad0 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 signed by 0 principal evaluation starts (used [false]) -[ad1 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ad2 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ad3 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[ad4 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 principal matched by identity 0 -[ad5 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 13 b9 5a de f4 65 63 ca 58 a1 b7 7c 59 e5 15 |...Z..ec.X..|Y..| -00000010 90 e8 e7 cd a1 6d 0a 9c 10 f6 4f 5a 6d 92 e7 16 |.....m....OZm...| -[ad6 01-05 06:37:19.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d6 10 72 a1 d0 cd 5d 3d dd 16 00 |0E.!...r...]=...| -00000010 b7 7e df ea c0 54 1e 1f 99 73 81 94 ef e6 77 fd |.~...T...s....w.| -00000020 a2 1e 31 bd c6 02 20 36 14 c2 e2 7d 09 35 69 1f |..1... 6...}.5i.| -00000030 82 5a ba d2 f1 b4 6d 4b 8f 11 38 b2 fe 6f 3d 9f |.Z....mK..8..o=.| -00000040 20 a8 45 c2 82 c6 07 | .E....| -[ad7 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 principal evaluation succeeds for identity 0 -[ad8 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134239929177100 evaluation succeeds -[ad9 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[ada 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[adb 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[adc 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[add 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[ade 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[adf 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a453e0) start: > stop: > from 172.18.0.7:44214 -[ae0 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[ae1 01-05 06:37:19.93 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=[50736] -[ae2 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9565], Going to peek [8] bytes -[ae3 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4778], placementInfo={fileNum=[0], startOffset=[50736], bytesOffset=[50738]} -[ae4 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4778] read from file [0] -[ae5 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a453e0) for 172.18.0.7:44214 -[ae6 01-05 06:37:19.93 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:44214 for (0xc420a453e0) -[ae8 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[ae9 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[ae7 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44214 -[aeb 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[aec 01-05 06:37:19.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[aea 01-05 06:37:19.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.7:44214 -[aed 01-05 06:37:19.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44214: rpc error: code = Canceled desc = context canceled -[aee 01-05 06:37:19.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[aef 01-05 06:37:20.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[af0 01-05 06:37:20.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44216 -[af1 01-05 06:37:20.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44216 -[af2 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[af3 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[af4 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[af5 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[af6 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[af7 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387a8 gate 1515134240109672900 evaluation starts -[af8 01-05 06:37:20.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 signed by 0 principal evaluation starts (used [false]) -[af9 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[afa 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[afb 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387a8 principal evaluation fails -[afc 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387a8 gate 1515134240109672900 evaluation fails -[afd 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[afe 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[aff 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[b00 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387b8 gate 1515134240111604900 evaluation starts -[b01 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 signed by 0 principal evaluation starts (used [false]) -[b02 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b03 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[b04 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387b8 principal evaluation fails -[b05 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387b8 gate 1515134240111604900 evaluation fails -[b06 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[b07 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[b08 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org1MSP.Readers ] -[b09 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[b0a 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[b0b 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b0c 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b0d 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b0e 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387c8 gate 1515134240114046500 evaluation starts -[b0f 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 signed by 0 principal evaluation starts (used [false]) -[b10 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b11 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[b12 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[b13 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 principal matched by identity 0 -[b14 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 87 1c e9 b7 c9 2a 65 c9 9a 8c 39 c1 a3 c5 5b 86 |.....*e...9...[.| -00000010 e1 a0 2f 46 90 5e fd 99 ec e0 da 3d 7e 9a 5c 6a |../F.^.....=~.\j| -[b15 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 dc 27 b8 0a a6 1c f1 db bd 4f d8 |0E.!..'.......O.| -00000010 38 14 c7 6f 3e 2e 02 53 22 ce be 80 bd 7a 93 c3 |8..o>..S"....z..| -00000020 bd fd f4 c7 1f 02 20 68 f2 7b 18 c6 5a 16 5f cb |...... h.{..Z._.| -00000030 84 80 c6 1d 32 5f 7f 72 10 d0 87 4d ce 84 75 f7 |....2_.r...M..u.| -00000040 c0 87 9a db 27 fc 50 |....'.P| -[b16 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201387c8 principal evaluation succeeds for identity 0 -[b17 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201387c8 gate 1515134240114046500 evaluation succeeds -[b18 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b19 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b1a 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b1b 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b1c 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b1d 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[b1e 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a72220) start: > stop: > from 172.18.0.7:44216 -[b1f 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[b20 01-05 06:37:20.11 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=[55516] -[b21 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[b22 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} -[b23 01-05 06:37:20.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[b24 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72220) for 172.18.0.7:44216 -[b25 01-05 06:37:20.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:44216 for (0xc420a72220) -[b26 01-05 06:37:20.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:44216 -[b27 01-05 06:37:20.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:44216 -[b28 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[b29 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[b2a 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[b2b 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[b2c 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44216: rpc error: code = Canceled desc = context canceled -[b2d 01-05 06:37:20.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b2e 01-05 06:37:20.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b2f 01-05 06:37:20.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:44218 -[b30 01-05 06:37:20.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:44218 -[b31 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b32 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b33 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b34 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b35 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b36 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[b37 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[93d 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515824094515434087 evaluation starts +[93e 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 signed by 0 principal evaluation starts (used [false]) +[93f 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[940 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[941 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[942 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal matched by identity 0 +[943 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d9 67 b6 f9 3f 21 35 eb 64 ac 20 10 93 3a fc 7c |.g..?!5.d. ..:.|| +00000010 65 11 83 99 a2 aa 72 72 96 8d 40 5a 46 76 a8 dd |e.....rr..@ZFv..| +[944 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 64 86 b3 c0 ed 3a 14 f6 43 3d 9f |0D. xd....:..C=.| +00000010 c1 4a e3 d7 0e 34 5a 7e fc 1e 0a 42 b5 15 d5 b5 |.J...4Z~...B....| +00000020 fe 17 fe a7 02 20 3c 69 58 ec 7d b1 c1 b0 3b da |..... DEBU 0xc42000e2f0 principal evaluation succeeds for identity 0 +[946 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515824094515434087 evaluation succeeds +[947 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[948 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[949 01-13 06:14:54.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[94a 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[94b 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[94c 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[94d 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420924880) start: > stop: > from 172.18.0.8:50260 +[94e 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[94f 01-13 06:14:54.52 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=[55516] +[950 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +[951 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +[952 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +[953 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420924880) for 172.18.0.8:50260 +[954 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50260 for (0xc420924880) +[956 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[957 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[955 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50260 +[958 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[95a 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[959 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50260 +[95b 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50260: rpc error: code = Canceled desc = context canceled +[95c 01-13 06:14:54.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[95d 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[95e 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50262 +[95f 01-13 06:14:54.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.8:50262 +[960 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[961 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[962 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[963 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[964 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[965 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e350 gate 1515824094709857287 evaluation starts +[966 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 signed by 0 principal evaluation starts (used [false]) +[967 01-13 06:14:54.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[968 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[969 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[96a 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 principal matched by identity 0 +[96b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 67 cf 7a f9 ce ff 30 16 ba 79 05 16 12 40 ff 91 |g.z...0..y...@..| +00000010 22 36 c0 91 98 99 28 15 3a 04 5b 1b 38 1c 1c 7d |"6....(.:.[.8..}| +[96c 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ab 7b 99 f1 7e bf 8c 6e 9f f2 ef |0E.!..{..~..n...| +00000010 ca c9 9a a7 71 39 05 b4 35 17 f2 de 81 6f 5e f6 |....q9..5....o^.| +00000020 26 67 e3 b5 3e 02 20 0f f2 0e 7e 29 d5 a9 46 29 |&g..>. ...~)..F)| +00000030 7a 76 f8 4f 54 1e 0c 60 7d 18 f8 57 50 e9 4a ff |zv.OT..`}..WP.J.| +00000040 d6 d9 48 21 4b 11 dd |..H!K..| +[96d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e350 principal evaluation succeeds for identity 0 +[96e 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e350 gate 1515824094709857287 evaluation succeeds +[96f 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[970 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[971 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[972 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[973 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[974 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[975 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420925ea0) start: > stop: > from 172.18.0.8:50262 +[976 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[977 01-13 06:14:54.71 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=[55516] +[978 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +[979 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +[97a 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +[97b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420925ea0) for 172.18.0.8:50262 +[97c 01-13 06:14:54.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.8:50262 for (0xc420925ea0) +[97d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50262 +[97e 01-13 06:14:54.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.8:50262 +[97f 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[980 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[981 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[982 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[983 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[984 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[985 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[986 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[987 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[988 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1515824094715910887 evaluation starts +[989 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 signed by 0 principal evaluation starts (used [false]) +[98a 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[98b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[98c 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[98d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 principal matched by identity 0 +[98e 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2f b8 8d 10 a7 f5 06 c6 65 02 bf b7 25 95 9a 57 |/.......e...%..W| +00000010 83 ad fa 84 52 9b 58 08 12 13 a4 25 11 59 6c a5 |....R.X....%.Yl.| +[98f 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6f 16 3c 07 b0 13 0f 82 1b 7b d9 24 |0D. o.<......{.$| +00000010 5a bb 7b d8 6d c3 d4 12 90 aa 75 3d e7 22 76 51 |Z.{.m.....u=."vQ| +00000020 b8 87 01 a8 02 20 64 a4 4d e0 14 f2 de b1 63 52 |..... d.M.....cR| +00000030 d1 84 75 8f 74 20 d1 48 96 ec 7d 0a d4 4f 05 5b |..u.t .H..}..O.[| +00000040 ec d9 1b a6 66 39 |....f9| +[990 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e398 principal evaluation succeeds for identity 0 +[991 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e398 gate 1515824094715910887 evaluation succeeds +[992 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[993 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[994 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[995 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[996 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[997 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[998 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c3b1a0) start: > stop: > from 172.18.0.8:50262 +[999 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[99a 01-13 06:14:54.71 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=[26078] +[99b 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34221], Going to peek [8] bytes +[99c 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +[99d 01-13 06:14:54.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +[99e 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c3b1a0) for 172.18.0.8:50262 +[99f 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50262 for (0xc420c3b1a0) +[9a1 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9a2 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9a0 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50262 +[9a4 01-13 06:14:54.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.8:50262 +[9a3 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9a5 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9a6 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50262: rpc error: code = Canceled desc = context canceled +[9a7 01-13 06:14:54.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9a8 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9a9 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50264 +[9aa 01-13 06:14:54.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.8:50264 +[9ab 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9ac 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9ad 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9ae 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9af 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9b0 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1515824094849603388 evaluation starts +[9b1 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 signed by 0 principal evaluation starts (used [false]) +[9b2 01-13 06:14:54.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9b3 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[9b4 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[9b5 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 principal matched by identity 0 +[9b6 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a9 06 4f 1b 28 b6 65 a5 c3 a2 98 17 5e 52 47 41 |..O.(.e.....^RGA| +00000010 28 0a 79 12 09 2a e1 7a 30 bc d1 53 eb 5f 15 fb |(.y..*.z0..S._..| +[9b7 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e1 db 32 0c 68 0d 42 70 c7 78 20 |0E.!...2.h.Bp.x | +00000010 d6 14 c3 1c ad 62 67 e5 03 1c 13 d6 13 f0 2c 83 |.....bg.......,.| +00000020 88 d7 71 ce 89 02 20 5b 2b 4c 62 6d 0d d6 e6 3a |..q... [+Lbm...:| +00000030 34 2c 31 d4 54 91 b3 2a 85 69 e7 71 06 dc 1d 98 |4,1.T..*.i.q....| +00000040 08 81 30 22 d6 c3 3b |..0"..;| +[9b8 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 principal evaluation succeeds for identity 0 +[9b9 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1515824094849603388 evaluation succeeds +[9ba 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[9bb 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[9bc 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[9bd 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[9be 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[9bf 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[9c0 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c5eaa0) start: > stop: > from 172.18.0.8:50264 +[9c1 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[9c2 01-13 06:14:54.85 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] +[9c3 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60299], Going to peek [8] bytes +[9c4 01-13 06:14:54.85 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]} +[9c5 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[9c6 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c5eaa0) for 172.18.0.8:50264 +[9c7 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50264 for (0xc420c5eaa0) +[9c9 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9ca 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9c8 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50264 +[9cc 01-13 06:14:54.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.8:50264 +[9cb 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9cd 01-13 06:14:54.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9ce 01-13 06:14:54.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50264: rpc error: code = Canceled desc = context canceled +[9cf 01-13 06:14:54.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9d0 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9d1 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50266 +[9d2 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50266 +[9d3 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9d4 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9d5 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9d6 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9d7 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9d8 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6f8 gate 1515824095095779488 evaluation starts +[9d9 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 signed by 0 principal evaluation starts (used [false]) +[9da 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9db 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[9dc 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[9dd 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 principal matched by identity 0 +[9de 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 f5 53 37 04 e2 3f f8 07 2b e8 81 4b 31 cb 90 fd |.S7..?..+..K1...| +00000010 a0 eb 04 42 74 66 27 61 74 f6 5e 1b 2c dd 8f bc |...Btf'at.^.,...| +[9df 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 02 97 d3 20 f9 7d 71 ca 80 49 bd 75 |0D. ... .}q..I.u| +00000010 ca 53 02 b5 cb 99 e1 09 65 45 79 a8 91 b4 65 32 |.S......eEy...e2| +00000020 71 41 14 4c 02 20 32 99 31 22 e7 bc 41 c3 10 ac |qA.L. 2.1"..A...| +00000030 d9 d9 8b 94 83 af ca 7f 3b 19 d7 54 ca 7c f8 e0 |........;..T.|..| +00000040 14 51 d1 73 f4 4e |.Q.s.N| +[9e0 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6f8 principal evaluation succeeds for identity 0 +[9e1 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6f8 gate 1515824095095779488 evaluation succeeds +[9e2 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[9e3 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[9e4 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[9e5 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[9e6 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[9e7 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[9e8 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209cb160) start: > stop: > from 172.18.0.8:50266 +[9e9 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[9ea 01-13 06:14:55.09 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] +[9eb 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48178], Going to peek [8] bytes +[9ec 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13955], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[9ed 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] +[9ee 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209cb160) for 172.18.0.8:50266 +[9ef 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50266 for (0xc4209cb160) +[9f0 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50266 +[9f1 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50266 +[9f2 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9f3 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9f4 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9f5 01-13 06:14:55.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9f6 01-13 06:14:55.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50266: rpc error: code = Canceled desc = context canceled +[9f7 01-13 06:14:55.10 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9f8 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9f9 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50268 +[9fa 01-13 06:14:55.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.8:50268 +[9fb 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9fc 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9fd 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9fe 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9ff 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a00 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c748 gate 1515824095278875088 evaluation starts +[a01 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 signed by 0 principal evaluation starts (used [false]) +[a02 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a03 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a04 01-13 06:14:55.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a05 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 principal matched by identity 0 +[a06 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ce ab 0a e5 47 ab 2d 88 4c 3c 91 66 8a f9 52 c5 |....G.-.L<.f..R.| +00000010 fa 17 d2 46 70 b4 4f 7a 59 a0 c1 8d 08 7a 6e b9 |...Fp.OzY....zn.| +[a07 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a0 1e 7b a5 4d d8 b5 89 4c a3 8f |0E.!...{.M...L..| +00000010 bc 85 04 ed 8e 1b 4d 96 f0 33 11 ae f2 d9 c0 0c |......M..3......| +00000020 a3 4d b5 a7 83 02 20 66 7f 9c 22 d4 b5 33 84 70 |.M.... f.."..3.p| +00000030 fa 6a 31 0d 89 16 b2 6b f0 88 0f 33 e5 6e 3e 3c |.j1....k...3.n><| +00000040 0d 3c ae 20 96 63 3c |.<. .c<| +[a08 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c748 principal evaluation succeeds for identity 0 +[a09 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c748 gate 1515824095278875088 evaluation succeeds +[a0a 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a0b 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a0c 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a0d 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a0e 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a0f 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a10 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420956020) start: > stop: > from 172.18.0.8:50268 +[a11 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a12 01-13 06:14:55.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=[26078] +[a13 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34221], Going to peek [8] bytes +[a14 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26078], bytesOffset=[26080]} +[a15 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] +[a16 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956020) for 172.18.0.8:50268 +[a17 01-13 06:14:55.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.8:50268 for (0xc420956020) +[a19 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a1a 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a18 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50268 +[a1b 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a1d 01-13 06:14:55.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a1c 01-13 06:14:55.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.8:50268 +[a1e 01-13 06:14:55.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50268: rpc error: code = Canceled desc = context canceled +[a1f 01-13 06:14:55.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a20 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a21 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50270 +[a22 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50270 +[a23 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a24 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a25 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a26 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a27 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a28 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e188 gate 1515824095443255188 evaluation starts +[a29 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 signed by 0 principal evaluation starts (used [false]) +[a2a 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a2b 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a2c 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a2d 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 principal matched by identity 0 +[a2e 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5b 45 85 10 ac bc ad 2f 82 3b 82 fe 55 8b b4 5e |[E...../.;..U..^| +00000010 4d c9 63 13 5b 2d 9b b1 15 9c 39 e1 4f 41 7d 6a |M.c.[-....9.OA}j| +[a2f 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9f fe da b5 b3 06 96 7f 48 d2 7c |0E.!.........H.|| +00000010 b3 e0 08 d9 6a 6c c5 70 eb f4 8e cf b8 f5 ec fc |....jl.p........| +00000020 49 83 a2 89 33 02 20 66 5f 30 1d a7 54 90 26 0b |I...3. f_0..T.&.| +00000030 c9 57 06 fb a5 a9 a8 27 6a c9 de 9b 7e e7 ee ec |.W.....'j...~...| +00000040 e8 89 4e 5f 6e 30 c1 |..N_n0.| +[a30 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e188 principal evaluation succeeds for identity 0 +[a31 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e188 gate 1515824095443255188 evaluation succeeds +[a32 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a33 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a34 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a35 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a36 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a37 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a38 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420957460) start: > stop: > from 172.18.0.8:50270 +[a39 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a3a 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40093] +[a3b 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20206], Going to peek [8] bytes +[a3c 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5317], placementInfo={fileNum=[0], startOffset=[40093], bytesOffset=[40095]} +[a3d 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] +[a3e 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420957460) for 172.18.0.8:50270 +[a3f 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50270 for (0xc420957460) +[a40 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50270 +[a42 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50270 +[a41 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a43 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a44 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a45 01-13 06:14:55.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a46 01-13 06:14:55.45 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50270: rpc error: code = Canceled desc = context canceled +[a47 01-13 06:14:55.45 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a48 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a49 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50274 +[a4a 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50274 +[a4b 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a4c 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a4d 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a4e 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a4f 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a50 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515824095599399088 evaluation starts +[a51 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) +[a52 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a53 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a54 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a55 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal matched by identity 0 +[a56 01-13 06:14:55.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 b5 82 15 d1 ef 59 26 4e ba 33 3a 0c 6f 0c 21 4b |.....Y&N.3:.o.!K| +00000010 eb 82 01 a5 5c e4 8d 01 7c 74 fd d7 05 ab a4 7f |....\...|t......| +[a57 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b2 ea 3b a5 58 ff 8b 2a 18 29 2c |0E.!...;.X..*.),| +00000010 85 12 57 54 5e ec f9 e3 cc ad ab 26 2f d1 31 ae |..WT^......&/.1.| +00000020 29 45 a7 ea 85 02 20 53 ee 52 34 5c 37 76 ee 0b |)E.... S.R4\7v..| +00000030 55 3c d0 74 b7 29 8e 1b 54 22 5f 89 a4 46 97 45 |U<.t.)..T"_..F.E| +00000040 86 ff 3e a9 4a e9 31 |..>.J.1| +[a58 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation succeeds for identity 0 +[a59 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1515824095599399088 evaluation succeeds +[a5a 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a5b 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a5c 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a5d 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a5e 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a5f 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a60 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c3aa20) start: > stop: > from 172.18.0.8:50274 +[a61 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a62 01-13 06:14:55.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=[45412] +[a63 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14887], Going to peek [8] bytes +[a64 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5323], placementInfo={fileNum=[0], startOffset=[45412], bytesOffset=[45414]} +[a65 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] +[a66 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c3aa20) for 172.18.0.8:50274 +[a67 01-13 06:14:55.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.8:50274 for (0xc420c3aa20) +[a68 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50274 +[a69 01-13 06:14:55.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.8:50274 +[a6a 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a6b 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a6c 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a6d 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a6e 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50274: rpc error: code = Canceled desc = context canceled +[a6f 01-13 06:14:55.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a70 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a71 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50276 +[a72 01-13 06:14:55.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.8:50276 +[a73 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a74 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a75 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a76 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a77 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a78 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824095768417288 evaluation starts +[a79 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 signed by 0 principal evaluation starts (used [false]) +[a7a 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a7b 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a7c 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[a7d 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 principal matched by identity 0 +[a7e 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 98 0c 25 f1 9f 20 0d 8d 4b 4c a4 4b 28 f7 0b bc |..%.. ..KL.K(...| +00000010 ee ed d0 3c 86 f8 d9 12 8d 2e 52 6b c6 6a 1d 29 |...<......Rk.j.)| +[a7f 01-13 06:14:55.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 42 08 fe fa 8e 78 a8 24 16 5a 58 a7 |0D. B....x.$.ZX.| +00000010 19 19 fa 71 94 0e 38 8a 9b 15 40 93 15 bd 77 8f |...q..8...@...w.| +00000020 55 8c c6 dc 02 20 6c 02 2a ae f6 cf 34 d4 dc a7 |U.... l.*...4...| +00000030 ce a0 88 62 3f 84 fc a9 3a 4d 85 6f 8b cc 70 05 |...b?...:M.o..p.| +00000040 3d d2 c6 8d 3a 50 |=...:P| +[a80 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 principal evaluation succeeds for identity 0 +[a81 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824095768417288 evaluation succeeds +[a82 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a83 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a84 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a85 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a86 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a87 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a88 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209cbe80) start: > stop: > from 172.18.0.8:50276 +[a89 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a8a 01-13 06:14:55.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=[50737] +[a8b 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9562], Going to peek [8] bytes +[a8c 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} +[a8d 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[a8e 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209cbe80) for 172.18.0.8:50276 +[a8f 01-13 06:14:55.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.8:50276 for (0xc4209cbe80) +[a91 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a92 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a90 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50276 +[a94 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a95 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a93 01-13 06:14:55.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.8:50276 +[a96 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50276: rpc error: code = Canceled desc = context canceled +[a97 01-13 06:14:55.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a98 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a99 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50278 +[a9a 01-13 06:14:55.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.8:50278 +[a9b 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a9c 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a9d 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a9e 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a9f 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[aa0 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1515824095908846788 evaluation starts +[aa1 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 signed by 0 principal evaluation starts (used [false]) +[aa2 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[aa3 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[aa4 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[aa5 01-13 06:14:55.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal matched by identity 0 +[aa6 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 3f d2 36 8c a5 e3 3f 8e bc 47 28 c8 46 55 ce b3 |?.6...?..G(.FU..| +00000010 97 c6 32 bf 14 71 5c 10 83 2a 9d 6d 7d 93 20 bd |..2..q\..*.m}. .| +[aa7 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e4 6a 88 de a7 36 a3 e5 8f 0d cf |0E.!..j...6.....| +00000010 36 a8 05 8c d0 5f 36 d6 43 6c 23 bf 7c b5 00 4c |6...._6.Cl#.|..L| +00000020 d5 5b 98 a5 6d 02 20 73 14 01 09 c8 96 ed 39 a6 |.[..m. s......9.| +00000030 fc cb ac 73 68 02 9b cd 5a 90 1e 45 8f 40 0a a5 |...sh...Z..E.@..| +00000040 c7 15 34 2c c9 cc 1b |..4,...| +[aa8 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal evaluation succeeds for identity 0 +[aa9 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1515824095908846788 evaluation succeeds +[aaa 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[aab 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[aac 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[aad 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[aae 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[aaf 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[ab0 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203e63e0) start: > stop: > from 172.18.0.8:50278 +[ab1 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[ab2 01-13 06:14:55.91 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=[55516] +[ab3 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4783], Going to peek [8] bytes +[ab4 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4781], placementInfo={fileNum=[0], startOffset=[55516], bytesOffset=[55518]} +[ab5 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4781] read from file [0] +[ab6 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203e63e0) for 172.18.0.8:50278 +[ab7 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50278 for (0xc4203e63e0) +[ab8 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50278 +[ab9 01-13 06:14:55.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.8:50278 +[aba 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[abb 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[abc 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[abd 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[abe 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50278: rpc error: code = Canceled desc = context canceled +[abf 01-13 06:14:55.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[ac0 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[ac1 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50280 +[ac2 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50280 +[ac3 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[ac4 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ac5 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[ac6 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ac7 01-13 06:14:56.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[ac8 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[ac9 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3973,361 +3863,368 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[b38 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515134240347846400 evaluation starts -[b39 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 signed by 0 principal evaluation starts (used [false]) -[b3a 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b3b 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[b3c 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[b3d 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal matched by identity 0 -[b3e 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 92 3a df 22 db 4c 07 d6 64 0f f6 60 95 16 88 5a |.:.".L..d..`...Z| -00000010 35 19 cb 69 b5 ea ca 35 eb 0e 52 07 8d e0 66 4d |5..i...5..R...fM| -[b3f 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 db 49 02 85 26 02 e8 5b 8a 69 0e |0E.!..I..&..[.i.| -00000010 38 66 8b 46 db e9 09 ea 01 b4 dc 88 0e a3 d6 ef |8f.F............| -00000020 1e 20 4a 44 80 02 20 04 0e bf c2 e5 7a d4 b2 27 |. JD.. .....z..'| -00000030 c8 3a f8 8a 37 b4 6b 83 de 61 c7 66 d4 c9 0e 59 |.:..7.k..a.f...Y| -00000040 cb c4 2d 29 57 f5 43 |..-)W.C| -[b40 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal evaluation succeeds for identity 0 -[b41 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1515134240347846400 evaluation succeeds -[b42 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b43 01-05 06:37:20.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b44 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b45 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b46 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b47 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[b48 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c24d40) start: > stop: > from 172.18.0.7:44218 -[b49 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b4a 01-05 06:37:20.35 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] -[b4b 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes -[b4c 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[b4d 01-05 06:37:20.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] -[b4e 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c24d40) for 172.18.0.7:44218 -[b4f 01-05 06:37:20.36 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:44218 for (0xc420c24d40) -[b50 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44218 -[b51 01-05 06:37:20.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:44218 -[b52 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44218: rpc error: code = Canceled desc = context canceled -[b53 01-05 06:37:20.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b54 01-05 06:37:20.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b55 01-05 06:37:20.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:44220 -[b56 01-05 06:37:20.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:44220 -[b57 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b58 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b59 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b5a 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b5b 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b5c 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134240585079100 evaluation starts -[b5d 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 signed by 0 principal evaluation starts (used [false]) -[b5e 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b5f 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[b60 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[b61 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 principal matched by identity 0 -[b62 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 66 05 cf e8 e4 e3 82 1a df 04 16 aa c5 38 23 cb |f............8#.| -00000010 49 f1 39 fa 38 46 27 e9 95 35 6d 16 94 69 39 3f |I.9.8F'..5m..i9?| -[b63 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 91 5c af 3b dc 0b 57 04 c5 bd 6c |0E.!..\.;..W...l| -00000010 34 a0 71 7e d9 71 45 b2 e3 5a 2f 5c fc 3d bc 3b |4.q~.qE..Z/\.=.;| -00000020 86 95 81 da 2b 02 20 0d 99 5f 05 8f 67 3f ff 7d |....+. .._..g?.}| -00000030 a8 ce 49 cd df 65 7b b1 9f 84 02 37 97 1e 43 fb |..I..e{....7..C.| -00000040 81 42 cf 52 a1 9e 09 |.B.R...| -[b64 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138380 principal evaluation succeeds for identity 0 -[b65 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138380 gate 1515134240585079100 evaluation succeeds -[b66 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b67 01-05 06:37:20.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b68 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b69 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b6a 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b6b 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[b6c 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420a44a40) start: > stop: > from 172.18.0.7:44220 -[b6d 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b6e 01-05 06:37:20.59 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] -[b6f 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes -[b70 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[b71 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] -[b72 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420a44a40) for 172.18.0.7:44220 -[b73 01-05 06:37:20.59 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:44220 for (0xc420a44a40) -[b74 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:44220 -[b75 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44220 -[b76 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b77 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b78 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b79 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b7a 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b7b 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515134240596832600 evaluation starts -[b7c 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 signed by 0 principal evaluation starts (used [false]) -[b7d 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b7e 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[b7f 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[b80 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal matched by identity 0 -[b81 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2d 8a 83 f5 fe de bc 56 ef a2 88 5a 75 60 33 62 |-......V...Zu`3b| -00000010 ec f3 52 ed 89 12 ce 6b e7 ae 81 bd 65 28 c9 1a |..R....k....e(..| -[b82 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ce cc 33 85 2e 17 89 89 9b 95 29 |0E.!...3.......)| -00000010 b1 ea d0 d6 de cb 58 54 56 56 cf fb 78 a9 1a 43 |......XTVV..x..C| -00000020 c6 e1 04 9f 2d 02 20 7a 65 d3 be 44 75 b8 eb b0 |....-. ze..Du...| -00000030 1d 60 91 8a 1c cd 44 42 3a e7 0f 35 6c d1 df fa |.`....DB:..5l...| -00000040 d7 12 0c b6 d7 56 86 |.....V.| -[b83 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal evaluation succeeds for identity 0 -[b84 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515134240596832600 evaluation succeeds -[b85 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b86 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b87 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b88 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b89 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b8a 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[b8b 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202a87a0) start: > stop: > from 172.18.0.7:44220 -[b8c 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b8d 01-05 06:37:20.59 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] -[b8e 01-05 06:37:20.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes -[b8f 01-05 06:37:20.60 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]} -[b90 01-05 06:37:20.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[b91 01-05 06:37:20.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202a87a0) for 172.18.0.7:44220 -[b92 01-05 06:37:20.60 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:44220 for (0xc4202a87a0) -[b93 01-05 06:37:20.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:44220 -[b94 01-05 06:37:20.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:44220 -[b95 01-05 06:37:20.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44220: rpc error: code = Canceled desc = context canceled -[b96 01-05 06:37:20.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b97 01-05 06:37:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b98 01-05 06:37:20.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:44222 -[b99 01-05 06:37:20.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:44222 -[b9a 01-05 06:37:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b9b 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b9c 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b9d 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b9e 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b9f 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515134240741335200 evaluation starts -[ba0 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 signed by 0 principal evaluation starts (used [false]) -[ba1 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ba2 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ba3 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[ba4 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal matched by identity 0 -[ba5 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 00 7a 2d 7f 7f 23 21 bb d2 47 9a 68 a8 d6 7f |L.z-..#!..G.h...| -00000010 61 fb 78 92 e5 be c6 03 ba 27 32 ee 77 fc c8 b1 |a.x......'2.w...| -[ba6 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 b6 24 d1 f5 fc 53 f9 9b 51 c4 f5 |0D. P.$...S..Q..| -00000010 6f 3e 80 2f a1 9e fa 52 2d a9 bc 42 b2 f8 a7 31 |o>./...R-..B...1| -00000020 b4 88 5a ba 02 20 37 00 22 4d b1 7e a4 81 2e 5b |..Z.. 7."M.~...[| -00000030 3d 41 e1 7f 35 82 df f6 1d 08 c6 5b e9 a8 4d 29 |=A..5......[..M)| -00000040 0a 7c 4f 6a b1 fa |.|Oj..| -[ba7 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal evaluation succeeds for identity 0 -[ba8 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515134240741335200 evaluation succeeds -[ba9 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[baa 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[bab 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[bac 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[bad 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[bae 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[baf 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202a9f20) start: > stop: > from 172.18.0.7:44222 -[bb0 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[bb1 01-05 06:37:20.74 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] -[bb2 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes -[bb3 01-05 06:37:20.74 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]} -[bb4 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[bb5 01-05 06:37:20.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202a9f20) for 172.18.0.7:44222 -[bb6 01-05 06:37:20.74 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:44222 for (0xc4202a9f20) -[bb7 01-05 06:37:20.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:44222 -[bb8 01-05 06:37:20.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:44222 -[bb9 01-05 06:37:20.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44222: rpc error: code = Canceled desc = context canceled -[bba 01-05 06:37:20.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[bbb 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[bbc 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44224 -[bbd 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44224 -[bbe 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[bbf 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bc0 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[bc1 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[bc2 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[bc3 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1515134240948521400 evaluation starts -[bc4 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 signed by 0 principal evaluation starts (used [false]) -[bc5 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bc6 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[bc7 01-05 06:37:20.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[bc8 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal matched by identity 0 -[bc9 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 72 a3 9b 21 60 44 bd 2a 13 c8 66 00 28 17 4d e9 |r..!`D.*..f.(.M.| -00000010 a6 00 b2 af 95 00 62 e9 45 43 c3 4c 8e b9 c2 5b |......b.EC.L...[| -[bca 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 41 e8 c7 c4 69 d7 57 9f 37 69 81 82 |0D. A...i.W.7i..| -00000010 09 45 5c 8f d1 a2 ce fb ad c7 be c7 2b 8e 65 30 |.E\.........+.e0| -00000020 a2 97 a8 6c 02 20 77 e0 82 0f 5f df 27 5e af 78 |...l. w..._.'^.x| -00000030 7e 1d fb 68 90 e8 a1 48 ea d8 d9 84 1f ec f1 7e |~..h...H.......~| -00000040 86 b6 a3 06 26 a0 |....&.| -[bcb 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e290 principal evaluation succeeds for identity 0 -[bcc 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e290 gate 1515134240948521400 evaluation succeeds -[bcd 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[bce 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[bcf 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[bd0 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[bd1 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[bd2 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[bd3 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4200d3500) start: > stop: > from 172.18.0.7:44224 -[bd4 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[bd5 01-05 06:37:20.95 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] -[bd6 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes -[bd7 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[bd8 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] -[bd9 01-05 06:37:20.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4200d3500) for 172.18.0.7:44224 -[bda 01-05 06:37:20.95 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:44224 for (0xc4200d3500) -[bdb 01-05 06:37:20.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:44224 -[bdc 01-05 06:37:20.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:44224 -[bdd 01-05 06:37:20.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44224: rpc error: code = Canceled desc = context canceled -[bde 01-05 06:37:20.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[bdf 01-05 06:37:27.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[be0 01-05 06:37:27.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:44236 -[be1 01-05 06:37:27.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:44236 -[be2 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[be3 01-05 06:37:27.67 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:44238 -[be4 01-05 06:37:27.67 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:44238 -[be5 01-05 06:37:27.67 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 -[be6 01-05 06:37:27.67 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 == -[be7 01-05 06:37:27.67 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 -[be8 01-05 06:37:27.67 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 == -[be9 01-05 06:37:27.67 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 -[bea 01-05 06:37:27.67 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 == -[beb 01-05 06:37:27.67 UTC] [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 0xc4201384e8 gate 1515134247677423600 evaluation starts -[bec 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 signed by 0 principal evaluation starts (used [false]) -[bed 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bee 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[bef 01-05 06:37:27.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384e8 principal evaluation fails -[bf0 01-05 06:37:27.67 UTC] [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 0xc4201384e8 gate 1515134247677423600 evaluation fails -[bf1 01-05 06:37:27.67 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 -[bf2 01-05 06:37:27.67 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 -[bf3 01-05 06:37:27.68 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 == -[bf4 01-05 06:37:27.68 UTC] [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 0xc4201384f0 gate 1515134247680430600 evaluation starts -[bf5 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 signed by 0 principal evaluation starts (used [false]) -[bf6 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bf7 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[bf8 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[bf9 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 principal matched by identity 0 -[bfa 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 4c d9 60 8c 80 b0 2a 89 f4 6e b6 c3 64 57 48 |.L.`...*..n..dWH| -00000010 50 b0 b6 47 3d b2 80 7c f7 fd 6b 40 e9 04 c6 7a |P..G=..|..k@...z| -[bfb 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1b 5e e0 8d b4 a0 4c 97 ae 3b 0a 03 |0D. .^....L..;..| -00000010 21 23 a5 3b e5 3c ea f7 83 80 e6 04 e8 f6 6b ca |!#.;.<........k.| -00000020 21 6c 0f 94 02 20 56 72 b3 c0 66 83 37 ff 0d 1a |!l... Vr..f.7...| -00000030 2a 8e b9 99 3d a7 a2 a5 58 30 86 5e a3 e2 49 e0 |*...=...X0.^..I.| -00000040 91 d9 3e cf dd 05 |..>...| -[bfc 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f0 principal evaluation succeeds for identity 0 -[bfd 01-05 06:37:27.68 UTC] [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 0xc4201384f0 gate 1515134247680430600 evaluation succeeds -[bfe 01-05 06:37:27.68 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 -[bff 01-05 06:37:27.68 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 -[c00 01-05 06:37:27.68 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 -[c01 01-05 06:37:27.68 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 -[c02 01-05 06:37:27.68 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 -[c03 01-05 06:37:27.68 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 -[c04 01-05 06:37:27.68 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 -[c05 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c06 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c07 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c08 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c09 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c0a 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c0b 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c0c 01-05 06:37:27.68 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 -[c0d 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c0e 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c0f 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c10 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c11 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c12 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c13 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c14 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c15 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c16 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c17 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c18 01-05 06:37:27.68 UTC] [github.com/hyperledger/fabric/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 -[c19 01-05 06:37:27.69 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 -[c1a 01-05 06:37:27.69 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 -[c1b 01-05 06:37:27.69 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 -[c1c 01-05 06:37:27.69 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 [] -[c1d 01-05 06:37:27.69 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 -[c1e 01-05 06:37:27.69 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 -[c1f 01-05 06:37:27.69 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] -[c20 01-05 06:37:27.69 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 -[c21 01-05 06:37:27.69 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 -[c22 01-05 06:37:27.69 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 [] -[c23 01-05 06:37:27.69 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 -[c24 01-05 06:37:27.69 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 -[c25 01-05 06:37:27.69 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 == -[c26 01-05 06:37:27.69 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 -[c27 01-05 06:37:27.69 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 == -[c28 01-05 06:37:27.69 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[c29 01-05 06:37:27.69 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 0xc4202fe020 gate 1515134247692799000 evaluation starts -[c2a 01-05 06:37:27.69 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 0xc4202fe020 signed by 0 principal evaluation starts (used [false false false]) -[c2b 01-05 06:37:27.69 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 0xc4202fe020 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c2c 01-05 06:37:27.69 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 0xc4202fe020 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[c2d 01-05 06:37:27.69 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 0xc4202fe020 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c2e 01-05 06:37:27.69 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 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[c2f 01-05 06:37:27.69 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 0xc4202fe020 principal matched by identity 1 -[c30 01-05 06:37:27.69 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 -> DEBU Verify: digest = 00000000 d7 c2 86 fa 0e 7b a8 dd 10 a9 39 f5 1e 7a 0b 0f |.....{....9..z..| -00000010 d3 87 dc 97 61 90 14 fc 2d 06 73 05 28 09 08 7f |....a...-.s.(...| -[c31 01-05 06:37:27.69 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 -> DEBU Verify: sig = 00000000 30 44 02 20 5b 7f 38 c6 85 f0 bc 22 6c 45 41 69 |0D. [.8...."lEAi| -00000010 46 7c 58 8c 50 ad 79 a5 b3 7b 46 c0 63 02 e7 5b |F|X.P.y..{F.c..[| -00000020 cd 95 de 36 02 20 17 71 bf 15 0f b5 26 63 3d e2 |...6. .q....&c=.| -00000030 79 8f 64 1d 6c de 51 c5 fc 01 6e 18 28 21 94 f1 |y.d.l.Q...n.(!..| -00000040 be 99 86 93 d2 fb |......| -[c32 01-05 06:37:27.69 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 0xc4202fe020 principal evaluation succeeds for identity 1 -[c33 01-05 06:37:27.69 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 0xc4202fe020 gate 1515134247692799000 evaluation succeeds -[c34 01-05 06:37:27.69 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 -[c35 01-05 06:37:27.69 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 -[c36 01-05 06:37:27.69 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 == -[c37 01-05 06:37:27.69 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[c38 01-05 06:37:27.69 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 0xc4202fe5e0 gate 1515134247695431600 evaluation starts -[c39 01-05 06:37:27.69 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 0xc4202fe5e0 signed by 0 principal evaluation starts (used [false false false]) -[c3a 01-05 06:37:27.69 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 0xc4202fe5e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c3b 01-05 06:37:27.69 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 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[c3c 01-05 06:37:27.69 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 0xc4202fe5e0 principal matched by identity 0 -[c3d 01-05 06:37:27.69 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 -> DEBU Verify: digest = 00000000 47 c0 67 c5 95 f9 6c 2b a5 e5 8c cd b1 5c 01 fd |G.g...l+.....\..| -00000010 f4 9a 17 a6 9f a6 41 16 b4 b1 1c ef d6 4c 1e b8 |......A......L..| -[c3e 01-05 06:37:27.69 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 -> DEBU Verify: sig = 00000000 30 44 02 20 6c a4 ef 03 10 e6 ad 4c 0f 55 a7 0a |0D. l......L.U..| -00000010 ac 4f 05 cb 34 b4 52 94 06 c5 a6 73 97 35 f1 ed |.O..4.R....s.5..| -00000020 3f 15 c1 f0 02 20 00 bc 39 94 46 0d c4 08 bf f4 |?.... ..9.F.....| -00000030 ba a8 ee 0a f6 78 33 0e 95 ea 62 17 07 5b 2e 69 |.....x3...b..[.i| -00000040 71 a6 85 88 fb 6b |q....k| -[c3f 01-05 06:37:27.69 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 0xc4202fe5e0 principal evaluation succeeds for identity 0 -[c40 01-05 06:37:27.69 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 0xc4202fe5e0 gate 1515134247695431600 evaluation succeeds -[c41 01-05 06:37:27.69 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 -[c42 01-05 06:37:27.69 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 -[c43 01-05 06:37:27.69 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 -[c44 01-05 06:37:27.69 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 -[c45 01-05 06:37:27.69 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 -[c46 01-05 06:37:27.69 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 -[c47 01-05 06:37:27.69 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 -[c48 01-05 06:37:27.69 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 -[c49 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c4a 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c4b 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c4c 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c4d 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c4e 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c4f 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c50 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c51 01-05 06:37:27.69 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c52 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[c53 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[c54 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[c55 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c56 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c57 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c58 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c59 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c5a 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c5b 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[c5c 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c5d 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c5e 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c5f 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[c60 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[c61 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[c62 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[c63 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[c64 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c65 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[c66 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[c67 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[c68 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[c69 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[c6a 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[c6b 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c6c 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c6d 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c6e 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[c6f 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[c70 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[c71 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[c72 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[aca 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c668 gate 1515824096050966888 evaluation starts +[acb 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 signed by 0 principal evaluation starts (used [false]) +[acc 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[acd 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[ace 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[acf 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 principal matched by identity 0 +[ad0 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7d 13 48 49 37 f2 a6 f9 b6 ac 91 fb 2a 94 14 53 |}.HI7.......*..S| +00000010 c7 63 f1 84 6f 56 a4 5f 59 be 97 f3 5b e8 82 c5 |.c..oV._Y...[...| +[ad1 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 92 a5 a7 8a 93 07 fb 0b 37 bc a5 |0E.!.........7..| +00000010 1b a0 3e ff ab 0e 8d c3 ce 17 00 7c 29 62 6c 4c |..>........|)blL| +00000020 fa 9d 50 47 02 02 20 26 41 3d 33 b4 c7 43 d6 b2 |..PG.. &A=3..C..| +00000030 8f c0 86 55 31 16 9e 82 84 9f 62 dc c3 df c6 b3 |...U1.....b.....| +00000040 38 19 80 90 05 ac 84 |8......| +[ad2 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c668 principal evaluation succeeds for identity 0 +[ad3 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c668 gate 1515824096050966888 evaluation succeeds +[ad4 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[ad5 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[ad6 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[ad7 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[ad8 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[ad9 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[ada 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203d05a0) start: > stop: > from 172.18.0.8:50280 +[adb 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[adc 01-13 06:14:56.05 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] +[add 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes +[ade 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[adf 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] +[ae0 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203d05a0) for 172.18.0.8:50280 +[ae1 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50280 for (0xc4203d05a0) +[ae2 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50280 +[ae3 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50280 +[ae4 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50280: read: connection reset by peer +[ae5 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50280: rpc error: code = Canceled desc = context canceled +[ae6 01-13 06:14:56.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[ae7 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[ae8 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50282 +[ae9 01-13 06:14:56.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.8:50282 +[aea 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[aeb 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[aec 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[aed 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[aee 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[aef 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6e8 gate 1515824096194633288 evaluation starts +[af0 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 signed by 0 principal evaluation starts (used [false]) +[af1 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[af2 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[af3 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[af4 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 principal matched by identity 0 +[af5 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 71 7c 77 fa 28 09 7d 15 f8 57 f7 2d 61 32 88 a9 |q|w.(.}..W.-a2..| +00000010 9b 5d f1 df 4d d7 96 9e 92 4b 17 0d b8 5d 9b 9a |.]..M....K...]..| +[af6 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 36 15 06 4e cf 13 84 3d d2 b5 22 dd |0D. 6..N...=..".| +00000010 06 1f 84 60 e0 99 9f 8b 3e 2a 7d b4 8c fd 16 09 |...`....>*}.....| +00000020 ff 82 37 66 02 20 39 32 87 38 fb 59 35 4d 57 dd |..7f. 92.8.Y5MW.| +00000030 ea b0 51 62 82 c9 2f 6a 44 40 87 b7 c2 27 11 de |..Qb../jD@...'..| +00000040 ea c4 ab 63 79 38 |...cy8| +[af7 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c6e8 principal evaluation succeeds for identity 0 +[af8 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c6e8 gate 1515824096194633288 evaluation succeeds +[af9 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[afa 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[afb 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[afc 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[afd 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[afe 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[aff 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203d1a20) start: > stop: > from 172.18.0.8:50282 +[b00 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[b01 01-13 06:14:56.19 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] +[b02 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes +[b03 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[b04 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] +[b05 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203d1a20) for 172.18.0.8:50282 +[b06 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50282 for (0xc4203d1a20) +[b07 01-13 06:14:56.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50282 +[b08 01-13 06:14:56.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.8:50282 +[b09 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[b0a 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b0b 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[b0c 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b0d 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[b0e 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b8 gate 1515824096202512388 evaluation starts +[b0f 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 signed by 0 principal evaluation starts (used [false]) +[b10 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b11 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[b12 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[b13 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 principal matched by identity 0 +[b14 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7a 82 ae 46 be b7 20 20 50 86 b7 de cc f2 6b 77 |z..F.. P.....kw| +00000010 f9 00 fc 75 bb 42 0a 5d c4 f9 af 6a 38 3a 74 75 |...u.B.]...j8:tu| +[b15 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 66 fc d0 52 93 c6 f5 43 95 99 ae 65 |0D. f..R...C...e| +00000010 d1 ab 56 68 72 b5 f8 d0 a8 ce b9 7c 80 da 77 e4 |..Vhr......|..w.| +00000020 a1 48 b9 3e 02 20 29 f4 e7 2f 18 89 9d 5e 54 41 |.H.>. )../...^TA| +00000030 13 68 f6 22 f1 3e 80 ad e3 09 33 74 a2 2f eb 81 |.h.".>....3t./..| +00000040 c7 50 46 1b 55 b0 |.PF.U.| +[b16 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b8 principal evaluation succeeds for identity 0 +[b17 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b8 gate 1515824096202512388 evaluation succeeds +[b18 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[b19 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[b1a 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[b1b 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[b1c 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[b1d 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[b1e 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4200d2460) start: > stop: > from 172.18.0.8:50282 +[b1f 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[b20 01-13 06:14:56.20 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] +[b21 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes +[b22 01-13 06:14:56.20 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]} +[b23 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[b24 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4200d2460) for 172.18.0.8:50282 +[b25 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50282 for (0xc4200d2460) +[b26 01-13 06:14:56.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50282 +[b27 01-13 06:14:56.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.8:50282 +[b28 01-13 06:14:56.22 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50282: read: connection reset by peer +[b29 01-13 06:14:56.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50282: rpc error: code = Canceled desc = context canceled +[b2a 01-13 06:14:56.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[b2b 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[b2c 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50284 +[b2d 01-13 06:14:56.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.8:50284 +[b2e 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[b2f 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b30 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[b31 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b32 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[b33 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e328 gate 1515824096367353588 evaluation starts +[b34 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 signed by 0 principal evaluation starts (used [false]) +[b35 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b36 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[b37 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[b38 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 principal matched by identity 0 +[b39 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ba 1a c3 1f 5c b2 50 61 c2 f4 61 74 77 70 70 12 |....\.Pa..atwpp.| +00000010 1c 8d a3 b0 c5 be cc e9 cf 16 1d e4 dd ab 90 29 |...............)| +[b3a 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1b 3c 08 27 c8 2d 7c be 03 5d a7 d2 |0D. .<.'.-|..]..| +00000010 5d 20 00 43 d2 bd be 7d d4 7f 3a 78 e6 cc 30 8d |] .C...}..:x..0.| +00000020 7d 5c 29 0a 02 20 78 b9 6f aa 6c 56 e0 62 18 ae |}\).. x.o.lV.b..| +00000030 ec 04 21 92 05 b4 c3 75 d0 46 3a da 48 41 3f a1 |..!....u.F:.HA?.| +00000040 a4 57 f0 0e 58 15 |.W..X.| +[b3b 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e328 principal evaluation succeeds for identity 0 +[b3c 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e328 gate 1515824096367353588 evaluation succeeds +[b3d 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[b3e 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[b3f 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[b40 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[b41 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[b42 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[b43 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420124680) start: > stop: > from 172.18.0.8:50284 +[b44 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[b45 01-13 06:14:56.36 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] +[b46 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24014], Going to peek [8] bytes +[b47 01-13 06:14:56.36 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]} +[b48 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[b49 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420124680) for 172.18.0.8:50284 +[b4a 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50284 for (0xc420124680) +[b4b 01-13 06:14:56.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50284 +[b4c 01-13 06:14:56.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.8:50284 +[b4d 01-13 06:14:56.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50284: rpc error: code = Canceled desc = context canceled +[b4e 01-13 06:14:56.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[b4f 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[b50 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50286 +[b51 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50286 +[b52 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[b53 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b54 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[b55 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b56 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[b57 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c768 gate 1515824096508655488 evaluation starts +[b58 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 signed by 0 principal evaluation starts (used [false]) +[b59 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b5a 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[b5b 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[b5c 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 principal matched by identity 0 +[b5d 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7a 71 68 2c 78 67 71 ef 30 5f 41 67 4c cb 81 fd |zqh,xgq.0_AgL...| +00000010 26 88 99 24 da 7d f7 1a 89 4a e7 53 13 31 1d 4f |&..$.}...J.S.1.O| +[b5e 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1e ca 22 30 d9 ee 6f a3 ea 1b d8 d8 |0D. .."0..o.....| +00000010 5f f4 db f3 78 65 31 67 59 16 22 ef 14 f0 9f af |_...xe1gY.".....| +00000020 3e f6 68 67 02 20 41 2d 6b d4 9a 62 5d 80 5f 71 |>.hg. A-k..b]._q| +00000030 88 68 a2 1f a4 8a 86 e0 c9 34 f5 4d b9 c4 8c 38 |.h.......4.M...8| +00000040 89 9c f1 9c 3a e9 |....:.| +[b5f 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c768 principal evaluation succeeds for identity 0 +[b60 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c768 gate 1515824096508655488 evaluation succeeds +[b61 01-13 06:14:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[b62 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[b63 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[b64 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[b65 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[b66 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[b67 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420232f40) start: > stop: > from 172.18.0.8:50286 +[b68 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[b69 01-13 06:14:56.51 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] +[b6a 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14860], Going to peek [8] bytes +[b6b 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14858], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[b6c 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14858] read from file [0] +[b6d 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420232f40) for 172.18.0.8:50286 +[b6e 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.8:50286 for (0xc420232f40) +[b6f 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50286 +[b70 01-13 06:14:56.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.8:50286 +[b71 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50286: rpc error: code = Canceled desc = context canceled +[b72 01-13 06:14:56.51 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[b73 01-13 06:15:01.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[b74 01-13 06:15:01.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50308 +[b75 01-13 06:15:01.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.8:50308 +[b76 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[b77 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.8:50310 +[b78 01-13 06:15:01.96 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.8:50310 +[b79 01-13 06:15:01.96 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 +[b7a 01-13 06:15:01.96 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 == +[b7b 01-13 06:15:01.96 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 +[b7c 01-13 06:15:01.96 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 == +[b7d 01-13 06:15:01.96 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 +[b7e 01-13 06:15:01.96 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 == +[b7f 01-13 06:15:01.96 UTC] [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 0xc42011c7f0 gate 1515824101966177390 evaluation starts +[b80 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 signed by 0 principal evaluation starts (used [false]) +[b81 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b82 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[b83 01-13 06:15:01.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f0 principal evaluation fails +[b84 01-13 06:15:01.96 UTC] [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 0xc42011c7f0 gate 1515824101966177390 evaluation fails +[b85 01-13 06:15:01.96 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 +[b86 01-13 06:15:01.96 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 +[b87 01-13 06:15:01.96 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 ] +[b88 01-13 06:15:01.96 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 +[b89 01-13 06:15:01.96 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 +[b8a 01-13 06:15:01.97 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 == +[b8b 01-13 06:15:01.97 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 +[b8c 01-13 06:15:01.97 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 == +[b8d 01-13 06:15:01.97 UTC] [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 0xc42011c7f8 gate 1515824101971023890 evaluation starts +[b8e 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 signed by 0 principal evaluation starts (used [false]) +[b8f 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b90 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[b91 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[b92 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 principal matched by identity 0 +[b93 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d8 f5 3d ad a2 44 30 02 c1 5e 72 f4 74 a0 7c 5a |..=..D0..^r.t.|Z| +00000010 9e de 91 d1 e4 33 84 e8 36 02 78 58 55 b4 c0 02 |.....3..6.xXU...| +[b94 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f4 d9 9f fe 91 d0 fb 2c 26 9e e6 |0E.!........,&..| +00000010 81 46 2b f7 95 65 dd a6 c0 0c 9c c6 88 71 c6 52 |.F+..e.......q.R| +00000020 11 b5 f1 7f 2f 02 20 61 0a 84 60 a5 17 87 91 f9 |..../. a..`.....| +00000030 05 11 c2 dc 8a df 0a 2d 8c a0 ba d7 b6 0c 28 dd |.......-......(.| +00000040 46 96 70 a7 77 86 62 |F.p.w.b| +[b95 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c7f8 principal evaluation succeeds for identity 0 +[b96 01-13 06:15:01.97 UTC] [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 0xc42011c7f8 gate 1515824101971023890 evaluation succeeds +[b97 01-13 06:15:01.97 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 +[b98 01-13 06:15:01.97 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 +[b99 01-13 06:15:01.97 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 +[b9a 01-13 06:15:01.97 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 +[b9b 01-13 06:15:01.97 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 +[b9c 01-13 06:15:01.97 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 +[b9d 01-13 06:15:01.97 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 +[b9e 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[b9f 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba0 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba1 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba2 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba3 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba4 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba5 01-13 06:15:01.97 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 +[ba6 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba7 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba8 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[ba9 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[baa 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bab 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bac 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bad 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bae 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[baf 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bb0 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bb1 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/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 +[bb2 01-13 06:15:01.97 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 +[bb3 01-13 06:15:01.97 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 +[bb4 01-13 06:15:01.98 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 +[bb5 01-13 06:15:01.98 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 [] +[bb6 01-13 06:15:01.98 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 +[bb7 01-13 06:15:01.98 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 +[bb8 01-13 06:15:01.98 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] +[bb9 01-13 06:15:01.98 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 +[bba 01-13 06:15:01.98 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 +[bbb 01-13 06:15:01.98 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 [] +[bbc 01-13 06:15:01.98 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 +[bbd 01-13 06:15:01.98 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 +[bbe 01-13 06:15:01.98 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 == +[bbf 01-13 06:15:01.98 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 +[bc0 01-13 06:15:01.98 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 == +[bc1 01-13 06:15:01.98 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[bc2 01-13 06:15:01.98 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 0xc420a1f160 gate 1515824101986657490 evaluation starts +[bc3 01-13 06:15:01.98 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 0xc420a1f160 signed by 0 principal evaluation starts (used [false false false]) +[bc4 01-13 06:15:01.98 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 0xc420a1f160 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[bc5 01-13 06:15:01.98 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 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[bc6 01-13 06:15:01.98 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 0xc420a1f160 principal matched by identity 0 +[bc7 01-13 06:15:01.98 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 -> DEBU Verify: digest = 00000000 91 c0 00 94 5e 16 db 4a a5 e0 3e d4 d4 13 e6 25 |....^..J..>....%| +00000010 20 03 56 af 0e f1 3d 52 d7 1a 53 c7 79 d2 d0 5c | .V...=R..S.y..\| +[bc8 01-13 06:15:01.98 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 -> DEBU Verify: sig = 00000000 30 45 02 21 00 d7 10 ee 4c be 23 ff f0 fe 2d 34 |0E.!....L.#...-4| +00000010 03 29 2a 36 dc b1 fe 01 e2 9e 82 26 f9 d2 5c 8c |.)*6.......&..\.| +00000020 3b de c2 ad 7b 02 20 29 43 ae 4a d4 b6 99 95 c4 |;...{. )C.J.....| +00000030 75 a8 00 9a 90 12 ac 16 88 3c 78 70 df 16 63 b9 |u........ DEBU 0xc420a1f160 principal evaluation succeeds for identity 0 +[bca 01-13 06:15:01.98 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 0xc420a1f160 gate 1515824101986657490 evaluation succeeds +[bcb 01-13 06:15:01.98 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 +[bcc 01-13 06:15:01.98 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 +[bcd 01-13 06:15:01.99 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 == +[bce 01-13 06:15:01.99 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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[bcf 01-13 06:15:01.99 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 0xc420a1f4c0 gate 1515824101999743690 evaluation starts +[bd0 01-13 06:15:01.99 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 0xc420a1f4c0 signed by 0 principal evaluation starts (used [false false false]) +[bd1 01-13 06:15:02.00 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 0xc420a1f4c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[bd2 01-13 06:15:02.00 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 0xc420a1f4c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[bd3 01-13 06:15:02.00 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 0xc420a1f4c0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[bd4 01-13 06:15:02.00 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 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[bd5 01-13 06:15:02.00 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 0xc420a1f4c0 principal matched by identity 1 +[bd6 01-13 06:15:02.00 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 -> DEBU Verify: digest = 00000000 7e 5b aa 11 b3 49 d1 08 df cf ec ca ef c3 be 16 |~[...I..........| +00000010 70 7a 50 54 81 5b 05 1a 80 fa 74 65 c1 bf d9 56 |pzPT.[....te...V| +[bd7 01-13 06:15:02.00 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 -> DEBU Verify: sig = 00000000 30 44 02 20 1f 30 e1 37 03 45 88 da e2 a3 1a 9c |0D. .0.7.E......| +00000010 4c bb 78 81 90 e3 ed cf 9e 73 f3 72 7c 1c 82 ef |L.x......s.r|...| +00000020 a5 13 61 d5 02 20 4c f6 07 44 2a 53 df 5d 68 94 |..a.. L..D*S.]h.| +00000030 c2 f6 16 b8 d8 8e 18 4c 02 c8 53 55 06 2c e8 58 |.......L..SU.,.X| +00000040 3f 1c c5 ff ef 4f |?....O| +[bd8 01-13 06:15:02.00 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 0xc420a1f4c0 principal evaluation succeeds for identity 1 +[bd9 01-13 06:15:02.00 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 0xc420a1f4c0 gate 1515824101999743690 evaluation succeeds +[bda 01-13 06:15:02.00 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 +[bdb 01-13 06:15:02.00 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 +[bdc 01-13 06:15:02.00 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 +[bdd 01-13 06:15:02.00 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 +[bde 01-13 06:15:02.00 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 +[bdf 01-13 06:15:02.00 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 +[be0 01-13 06:15:02.00 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 +[be1 01-13 06:15:02.00 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 +[be2 01-13 06:15:02.00 UTC] [github.com/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" +[be3 01-13 06:15:02.00 UTC] [github.com/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" +[be4 01-13 06:15:02.00 UTC] [github.com/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" +[be5 01-13 06:15:02.00 UTC] [github.com/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" +[be6 01-13 06:15:02.00 UTC] [github.com/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" +[be7 01-13 06:15:02.00 UTC] [github.com/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" +[be8 01-13 06:15:02.00 UTC] [github.com/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" +[be9 01-13 06:15:02.00 UTC] [github.com/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" +[bea 01-13 06:15:02.00 UTC] [github.com/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" +[beb 01-13 06:15:02.00 UTC] [github.com/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" +[bec 01-13 06:15:02.00 UTC] [github.com/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" +[bed 01-13 06:15:02.00 UTC] [github.com/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" +[bee 01-13 06:15:02.00 UTC] [github.com/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" +[bef 01-13 06:15:02.00 UTC] [github.com/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" +[bf0 01-13 06:15:02.00 UTC] [github.com/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" +[bf1 01-13 06:15:02.00 UTC] [github.com/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" +[bf2 01-13 06:15:02.00 UTC] [github.com/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 +[bf3 01-13 06:15:02.00 UTC] [github.com/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 +[bf4 01-13 06:15:02.00 UTC] [github.com/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 +[bf5 01-13 06:15:02.00 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" +[bf6 01-13 06:15:02.00 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" +[bf7 01-13 06:15:02.00 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" +[bf8 01-13 06:15:02.00 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 +[bf9 01-13 06:15:02.00 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 +[bfa 01-13 06:15:02.00 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 +[bfb 01-13 06:15:02.00 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 +[bfc 01-13 06:15:02.00 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 +[bfd 01-13 06:15:02.00 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 +[bfe 01-13 06:15:02.00 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 +[bff 01-13 06:15:02.01 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 +[c00 01-13 06:15:02.01 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 +[c01 01-13 06:15:02.01 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 +[c02 01-13 06:15:02.01 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 +[c03 01-13 06:15:02.01 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 +[c04 01-13 06:15:02.01 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 +[c05 01-13 06:15:02.01 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 +[c06 01-13 06:15:02.01 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 +[c07 01-13 06:15:02.01 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 +[c08 01-13 06:15:02.01 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 +[c09 01-13 06:15:02.01 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 +[c0a 01-13 06:15:02.01 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 +[c0b 01-13 06:15:02.01 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4341,7 +4238,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[c73 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c0c 01-13 06:15:02.01 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4354,19 +4251,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[c74 01-05 06:37:27.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[c75 01-05 06:37:27.70 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 -[c76 01-05 06:37:27.70 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 -[c77 01-05 06:37:27.70 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 -[c78 01-05 06:37:27.70 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 -[c79 01-05 06:37:27.70 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 -[c7a 01-05 06:37:27.70 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 -[c7b 01-05 06:37:27.70 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: -[c7c 01-05 06:37:27.70 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 -[c7d 01-05 06:37:27.70 UTC] [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 -[c7e 01-05 06:37:27.70 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 -[c7f 01-05 06:37:27.70 UTC] [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 -[c80 01-05 06:37:27.70 UTC] [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----- +[c0d 01-13 06:15:02.01 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 +[c0e 01-13 06:15:02.01 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 +[c0f 01-13 06:15:02.01 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 +[c10 01-13 06:15:02.01 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 +[c11 01-13 06:15:02.01 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 +[c12 01-13 06:15:02.01 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 +[c13 01-13 06:15:02.01 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 +[c14 01-13 06:15:02.01 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: +[c15 01-13 06:15:02.01 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 +[c16 01-13 06:15:02.01 UTC] [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 +[c17 01-13 06:15:02.01 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 +[c18 01-13 06:15:02.01 UTC] [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 +[c19 01-13 06:15:02.01 UTC] [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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4381,7 +4278,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[c81 01-05 06:37:27.70 UTC] [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----- +[c1a 01-13 06:15:02.01 UTC] [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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4395,17 +4292,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[c82 01-05 06:37:27.70 UTC] [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 -[c83 01-05 06:37:27.70 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 -[c84 01-05 06:37:27.70 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 -[c85 01-05 06:37:27.70 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 -[c86 01-05 06:37:27.70 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 -[c87 01-05 06:37:27.70 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 -[c88 01-05 06:37:27.70 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 -[c89 01-05 06:37:27.70 UTC] [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 -[c8a 01-05 06:37:27.70 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 -[c8b 01-05 06:37:27.70 UTC] [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 -[c8c 01-05 06:37:27.70 UTC] [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----- +[c1b 01-13 06:15:02.01 UTC] [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 +[c1c 01-13 06:15:02.01 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 +[c1d 01-13 06:15:02.01 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 +[c1e 01-13 06:15:02.01 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 +[c1f 01-13 06:15:02.01 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 +[c20 01-13 06:15:02.01 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 +[c21 01-13 06:15:02.01 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 +[c22 01-13 06:15:02.01 UTC] [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 +[c23 01-13 06:15:02.01 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 +[c24 01-13 06:15:02.01 UTC] [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 +[c25 01-13 06:15:02.01 UTC] [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----- MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4420,7 +4317,7 @@ OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD nJqgrP2wQg== -----END CERTIFICATE----- -[c8d 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c26 01-13 06:15:02.02 UTC] [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----- MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4434,17 +4331,17 @@ YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r hVFCfUaM7mJS8t0Pz4U= -----END CERTIFICATE----- -[c8e 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity -[c8f 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[c90 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[c91 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c92 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c93 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[c94 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[c95 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[c96 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[c97 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[c98 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c27 01-13 06:15:02.02 UTC] [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 +[c28 01-13 06:15:02.02 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 +[c29 01-13 06:15:02.02 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 +[c2a 01-13 06:15:02.02 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 +[c2b 01-13 06:15:02.02 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 +[c2c 01-13 06:15:02.02 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: +[c2d 01-13 06:15:02.02 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 +[c2e 01-13 06:15:02.02 UTC] [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 +[c2f 01-13 06:15:02.02 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 +[c30 01-13 06:15:02.02 UTC] [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 +[c31 01-13 06:15:02.02 UTC] [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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4459,7 +4356,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[c99 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c32 01-13 06:15:02.02 UTC] [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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4473,108 +4370,108 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[c9a 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[c9b 01-05 06:37:27.71 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) -[c9c 01-05 06:37:27.71 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 -[c9d 01-05 06:37:27.71 UTC] [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 -[c9e 01-05 06:37:27.71 UTC] [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 -[c9f 01-05 06:37:27.71 UTC] [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 -[ca0 01-05 06:37:27.71 UTC] [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 -[ca1 01-05 06:37:27.71 UTC] [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 -[ca2 01-05 06:37:27.71 UTC] [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 -[ca3 01-05 06:37:27.71 UTC] [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 -[ca4 01-05 06:37:27.71 UTC] [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 -[ca5 01-05 06:37:27.71 UTC] [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 -[ca6 01-05 06:37:27.71 UTC] [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 -[ca7 01-05 06:37:27.71 UTC] [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 -[ca8 01-05 06:37:27.71 UTC] [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 -[ca9 01-05 06:37:27.71 UTC] [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 -[caa 01-05 06:37:27.71 UTC] [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 -[cab 01-05 06:37:27.71 UTC] [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 -[cac 01-05 06:37:27.71 UTC] [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 -[cad 01-05 06:37:27.71 UTC] [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 -[cae 01-05 06:37:27.71 UTC] [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 -[caf 01-05 06:37:27.71 UTC] [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 -[cb0 01-05 06:37:27.71 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 -[cb1 01-05 06:37:27.71 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 -[cb2 01-05 06:37:27.71 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 -[cb3 01-05 06:37:27.71 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 -[cb4 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cb5 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cb6 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cb7 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[cb8 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[cb9 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[cba 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cbb 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cbc 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cbd 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cbe 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/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 -[cbf 01-05 06:37:27.71 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[cc0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[cc1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[cc2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[cc3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[cc4 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[cc5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[cc6 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[cc7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[cc8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[cc9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[cca 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[ccb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[ccc 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[ccd 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[cce 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[ccf 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[cd0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[cd1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[cd2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[cd3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[cd4 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[cd5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[cd6 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[cd7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[cd8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[cd9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[cda 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[cdb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[cdc 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[cdd 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[cde 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[cdf 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[ce0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[ce1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[ce2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[ce3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[ce4 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[ce5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[ce6 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[ce7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[ce8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -[ce9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[cea 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[ceb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[cec 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[ced 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[cee 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[cef 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[cf0 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[cf1 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[cf2 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[cf3 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[cf4 01-05 06:37:27.72 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 -[cf5 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[cf6 01-05 06:37:27.72 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 -[cf7 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608A7BABCD20522...A2A55830865EA3E249E091D93ECFDD05 -[cf8 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: A07642CC0BA11BEF362B0530369DB06201EA3C70AE33A57784858D2FD874F667 -[cf9 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[cfa 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[cfb 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[cfc 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[cfd 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[cfe 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[cff 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c33 01-13 06:15:02.02 UTC] [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 +[c34 01-13 06:15:02.02 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) +[c35 01-13 06:15:02.02 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 +[c36 01-13 06:15:02.02 UTC] [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 +[c37 01-13 06:15:02.02 UTC] [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 +[c38 01-13 06:15:02.02 UTC] [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 +[c39 01-13 06:15:02.02 UTC] [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 +[c3a 01-13 06:15:02.02 UTC] [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 +[c3b 01-13 06:15:02.02 UTC] [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 +[c3c 01-13 06:15:02.02 UTC] [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 +[c3d 01-13 06:15:02.02 UTC] [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 +[c3e 01-13 06:15:02.02 UTC] [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 +[c3f 01-13 06:15:02.02 UTC] [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 +[c40 01-13 06:15:02.02 UTC] [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 +[c41 01-13 06:15:02.02 UTC] [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 +[c42 01-13 06:15:02.02 UTC] [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 +[c43 01-13 06:15:02.02 UTC] [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 +[c44 01-13 06:15:02.02 UTC] [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 +[c45 01-13 06:15:02.02 UTC] [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 +[c46 01-13 06:15:02.02 UTC] [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 +[c47 01-13 06:15:02.02 UTC] [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 +[c48 01-13 06:15:02.02 UTC] [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 +[c49 01-13 06:15:02.02 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 +[c4a 01-13 06:15:02.02 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 +[c4b 01-13 06:15:02.02 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 +[c4c 01-13 06:15:02.02 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 +[c4d 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/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 +[c4e 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/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 +[c4f 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/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 +[c50 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c51 01-13 06:15:02.02 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c52 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c53 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c54 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c55 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c56 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c57 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c58 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c59 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c5a 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c5b 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c5c 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c5d 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c5e 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c5f 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c60 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c61 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c62 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c63 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c64 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c65 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c66 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c67 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c68 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c69 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c6a 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c6b 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c6c 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c6d 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c6e 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/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 +[c6f 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c70 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c71 01-13 06:15:02.03 UTC] [github.com/hyperledger/fabric/common/configtx] 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 +[c72 01-13 06:15:02.03 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 +[c73 01-13 06:15:02.03 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 +[c74 01-13 06:15:02.03 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 +[c75 01-13 06:15:02.03 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 +[c76 01-13 06:15:02.03 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 +[c77 01-13 06:15:02.03 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 +[c78 01-13 06:15:02.03 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 +[c79 01-13 06:15:02.03 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 +[c7a 01-13 06:15:02.03 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' +[c7b 01-13 06:15:02.03 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' +[c7c 01-13 06:15:02.03 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] +[c7d 01-13 06:15:02.03 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 +[c7e 01-13 06:15:02.03 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 +[c7f 01-13 06:15:02.03 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 [] +[c80 01-13 06:15:02.03 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 +[c81 01-13 06:15:02.03 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 +[c82 01-13 06:15:02.03 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 +[c83 01-13 06:15:02.03 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' +[c84 01-13 06:15:02.03 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' +[c85 01-13 06:15:02.03 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' +[c86 01-13 06:15:02.03 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] +[c87 01-13 06:15:02.03 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 +[c88 01-13 06:15:02.04 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 +[c89 01-13 06:15:02.04 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 [] +[c8a 01-13 06:15:02.04 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 +[c8b 01-13 06:15:02.04 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' +[c8c 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[c8d 01-13 06:15:02.04 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 +[c8e 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[c8f 01-13 06:15:02.04 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 +[c90 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E6C7E6D20522...2D8CA0BAD7B60C28DD469670A7778662 +[c91 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 08B7E45FB84D68A638C6AA788C26EA57FD7FF14A1DC434FC30D4838972E4453B +[c92 01-13 06:15:02.04 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 == +[c93 01-13 06:15:02.04 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 +[c94 01-13 06:15:02.04 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 == +[c95 01-13 06:15:02.04 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 +[c96 01-13 06:15:02.04 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 == +[c97 01-13 06:15:02.04 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 +[c98 01-13 06:15:02.04 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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4587,176 +4484,153 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[d00 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134247728748100 evaluation starts -[d01 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 signed by 0 principal evaluation starts (used [false]) -[d02 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d03 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[d04 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138750 principal evaluation fails -[d05 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138750 gate 1515134247728748100 evaluation fails -[d06 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[d07 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[d08 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[d09 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138768 gate 1515134247729355600 evaluation starts -[d0a 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 signed by 0 principal evaluation starts (used [false]) -[d0b 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d0c 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[d0d 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138768 principal evaluation fails -[d0e 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138768 gate 1515134247729355600 evaluation fails -[d0f 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -[d10 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[d11 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Writers Org1MSP.Writers ] -[d12 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers -[d13 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[d14 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[d15 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d16 01-05 06:37:27.72 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[d17 01-05 06:37:27.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 0xc420138770 gate 1515134247730037300 evaluation starts -[d18 01-05 06:37:27.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 0xc420138770 signed by 0 principal evaluation starts (used [false]) -[d19 01-05 06:37:27.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 0xc420138770 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d1a 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[d1b 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[d1c 01-05 06:37:27.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 0xc420138770 principal matched by identity 0 -[d1d 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a0 76 42 cc 0b a1 1b ef 36 2b 05 30 36 9d b0 62 |.vB.....6+.06..b| -00000010 01 ea 3c 70 ae 33 a5 77 84 85 8d 2f d8 74 f6 67 |.. DEBU Verify: sig = 00000000 30 45 02 21 00 bc 32 29 26 8d 6d f5 9b 8d e2 fb |0E.!..2)&.m.....| -00000010 47 52 ba 1e bc 7c ce dc 9a f3 7a bf ab ec da d6 |GR...|....z.....| -00000020 78 28 f4 e0 99 02 20 28 e7 a7 dc 82 85 9d 39 19 |x(.... (......9.| -00000030 32 35 9e be 33 3e 9e 49 99 6f c0 64 b4 a4 cc ab |25..3>.I.o.d....| -00000040 f5 c3 d8 b3 c0 34 0c |.....4.| -[d1f 01-05 06:37:27.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 0xc420138770 principal evaluation succeeds for identity 0 -[d20 01-05 06:37:27.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 0xc420138770 gate 1515134247730037300 evaluation succeeds -[d21 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[d22 01-05 06:37:27.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 -[d23 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[d24 01-05 06:37:27.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 -[d25 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[d26 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[d27 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:44238 -[d28 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:44238: rpc error: code = Canceled desc = context canceled -[d29 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[d2a 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44236: rpc error: code = Canceled desc = context canceled -[d2b 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[d2c 01-05 06:37:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[d2d 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[d2e 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[d2f 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[d30 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[d31 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[d32 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[d33 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[d34 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[d35 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[d36 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[d37 01-05 06:37:27.74 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 -[d38 01-05 06:37:27.74 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 -[d39 01-05 06:37:27.74 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 -[d3a 01-05 06:37:27.74 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 -[d3b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[d3c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[d3d 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[d3e 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[d3f 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[d40 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[d41 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[d42 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -[d43 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[d44 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[d45 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[d46 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[d47 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[d48 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[d49 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[d4a 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[d4b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[d4c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[d4d 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[d4e 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[d4f 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[d50 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[d51 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -[d52 01-05 06:37:27.74 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 -[d53 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[d54 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[d55 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6adc0 gate 1515134247746349200 evaluation starts -[d56 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 signed by 0 principal evaluation starts (used [false false false]) -[d57 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d58 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[d59 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d5a 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[d5b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 principal matched by identity 1 -[d5c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d7 c2 86 fa 0e 7b a8 dd 10 a9 39 f5 1e 7a 0b 0f |.....{....9..z..| -00000010 d3 87 dc 97 61 90 14 fc 2d 06 73 05 28 09 08 7f |....a...-.s.(...| -[d5d 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5b 7f 38 c6 85 f0 bc 22 6c 45 41 69 |0D. [.8...."lEAi| -00000010 46 7c 58 8c 50 ad 79 a5 b3 7b 46 c0 63 02 e7 5b |F|X.P.y..{F.c..[| -00000020 cd 95 de 36 02 20 17 71 bf 15 0f b5 26 63 3d e2 |...6. .q....&c=.| -00000030 79 8f 64 1d 6c de 51 c5 fc 01 6e 18 28 21 94 f1 |y.d.l.Q...n.(!..| -00000040 be 99 86 93 d2 fb |......| -[d5e 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6adc0 principal evaluation succeeds for identity 1 -[d5f 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6adc0 gate 1515134247746349200 evaluation succeeds -[d60 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[d61 01-05 06:37:27.74 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 -[d62 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[d63 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[d64 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6b220 gate 1515134247749109600 evaluation starts -[d65 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 signed by 0 principal evaluation starts (used [false false false]) -[d66 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d67 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[d68 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 principal matched by identity 0 -[d69 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 47 c0 67 c5 95 f9 6c 2b a5 e5 8c cd b1 5c 01 fd |G.g...l+.....\..| -00000010 f4 9a 17 a6 9f a6 41 16 b4 b1 1c ef d6 4c 1e b8 |......A......L..| -[d6a 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6c a4 ef 03 10 e6 ad 4c 0f 55 a7 0a |0D. l......L.U..| -00000010 ac 4f 05 cb 34 b4 52 94 06 c5 a6 73 97 35 f1 ed |.O..4.R....s.5..| -00000020 3f 15 c1 f0 02 20 00 bc 39 94 46 0d c4 08 bf f4 |?.... ..9.F.....| -00000030 ba a8 ee 0a f6 78 33 0e 95 ea 62 17 07 5b 2e 69 |.....x3...b..[.i| -00000040 71 a6 85 88 fb 6b |q....k| -[d6b 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b6b220 principal evaluation succeeds for identity 0 -[d6c 01-05 06:37:27.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b6b220 gate 1515134247749109600 evaluation succeeds -[d6d 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[d6e 01-05 06:37:27.75 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 -[d6f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -[d70 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins -[d71 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d72 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d73 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d74 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d75 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d76 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d77 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d78 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d79 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d7a 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[d7b 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[d7c 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[d7d 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d7e 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d7f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d80 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[d81 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d82 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d83 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d84 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d85 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d86 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d87 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[d88 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[d89 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[d8a 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[d8b 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[d8c 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[d8d 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[d8e 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[d8f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[d90 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[d91 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[d92 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[d93 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[d94 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d95 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d96 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[d97 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d98 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d99 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[d9a 01-05 06:37:27.75 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----- +[c99 01-13 06:15:02.04 UTC] [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 0xc42011d058 gate 1515824102043941290 evaluation starts +[c9a 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 signed by 0 principal evaluation starts (used [false]) +[c9b 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[c9c 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[c9d 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[c9e 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 principal matched by identity 0 +[c9f 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 08 b7 e4 5f b8 4d 68 a6 38 c6 aa 78 8c 26 ea 57 |..._.Mh.8..x.&.W| +00000010 fd 7f f1 4a 1d c4 34 fc 30 d4 83 89 72 e4 45 3b |...J..4.0...r.E;| +[ca0 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 20 e6 75 23 24 ad e2 e2 38 8f 43 9c |0D. .u#$...8.C.| +00000010 d0 de 77 ad 90 b6 70 d4 83 dc cb de 89 90 86 18 |..w...p.........| +00000020 0c 00 d3 5b 02 20 58 ca 93 cd 9d e9 81 ef e7 ac |...[. X.........| +00000030 9e df 45 6f c8 a2 0a 5b 19 cf 4b 9e 68 a8 42 84 |..Eo...[..K.h.B.| +00000040 04 37 c7 88 d8 41 |.7...A| +[ca1 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011d058 principal evaluation succeeds for identity 0 +[ca2 01-13 06:15:02.04 UTC] [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 0xc42011d058 gate 1515824102043941290 evaluation succeeds +[ca3 01-13 06:15:02.04 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 +[ca4 01-13 06:15:02.04 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 +[ca5 01-13 06:15:02.04 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 +[ca6 01-13 06:15:02.04 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 +[ca7 01-13 06:15:02.04 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 +[ca8 01-13 06:15:02.04 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 +[ca9 01-13 06:15:02.04 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.8:50310 +[caa 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[cab 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[cac 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[cad 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[cae 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[caf 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[cb0 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[cb1 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[cb2 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[cb3 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[cb4 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[cb5 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[cb6 01-13 06:15:02.04 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 +[cb7 01-13 06:15:02.04 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 +[cb8 01-13 06:15:02.04 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 +[cb9 01-13 06:15:02.04 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 +[cba 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[cbb 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[cbc 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[cbd 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[cbe 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[cbf 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +[cc0 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +[cc1 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[cc2 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +[cc3 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[cc4 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[cc5 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[cc6 01-13 06:15:02.04 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[cc7 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[cc8 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[cc9 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[cca 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[ccb 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[ccc 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == +[ccd 01-13 06:15:02.05 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 +[cce 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[ccf 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[cd0 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976c00 gate 1515824102050518890 evaluation starts +[cd1 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976c00 signed by 0 principal evaluation starts (used [false false false]) +[cd2 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976c00 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[cd3 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[cd4 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976c00 principal matched by identity 0 +[cd5 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 91 c0 00 94 5e 16 db 4a a5 e0 3e d4 d4 13 e6 25 |....^..J..>....%| +00000010 20 03 56 af 0e f1 3d 52 d7 1a 53 c7 79 d2 d0 5c | .V...=R..S.y..\| +[cd6 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d7 10 ee 4c be 23 ff f0 fe 2d 34 |0E.!....L.#...-4| +00000010 03 29 2a 36 dc b1 fe 01 e2 9e 82 26 f9 d2 5c 8c |.)*6.......&..\.| +00000020 3b de c2 ad 7b 02 20 29 43 ae 4a d4 b6 99 95 c4 |;...{. )C.J.....| +00000030 75 a8 00 9a 90 12 ac 16 88 3c 78 70 df 16 63 b9 |u........ DEBU 0xc420976c00 principal evaluation succeeds for identity 0 +[cd8 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976c00 gate 1515824102050518890 evaluation succeeds +[cd9 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[cda 01-13 06:15:02.05 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 +[cdb 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[cdc 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[cdd 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976f20 gate 1515824102051965190 evaluation starts +[cde 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 signed by 0 principal evaluation starts (used [false false false]) +[ce0 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.8:50310, hangup +[ce1 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[cdf 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ce2 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[ce3 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ce4 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[ce5 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 principal matched by identity 1 +[ce6 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7e 5b aa 11 b3 49 d1 08 df cf ec ca ef c3 be 16 |~[...I..........| +00000010 70 7a 50 54 81 5b 05 1a 80 fa 74 65 c1 bf d9 56 |pzPT.[....te...V| +[ce7 01-13 06:15:02.05 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1f 30 e1 37 03 45 88 da e2 a3 1a 9c |0D. .0.7.E......| +00000010 4c bb 78 81 90 e3 ed cf 9e 73 f3 72 7c 1c 82 ef |L.x......s.r|...| +00000020 a5 13 61 d5 02 20 4c f6 07 44 2a 53 df 5d 68 94 |..a.. L..D*S.]h.| +00000030 c2 f6 16 b8 d8 8e 18 4c 02 c8 53 55 06 2c e8 58 |.......L..SU.,.X| +00000040 3f 1c c5 ff ef 4f |?....O| +[ce8 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420976f20 principal evaluation succeeds for identity 1 +[ce9 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420976f20 gate 1515824102051965190 evaluation succeeds +[cea 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[ceb 01-13 06:15:02.06 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 +[cec 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins +[ced 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins +[cee 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +[cef 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +[cf0 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +[cf1 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50308: rpc error: code = Canceled desc = context canceled +[cf2 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[cf3 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cf4 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cf5 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cf6 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cf7 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cf8 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[cf9 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cfa 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cfb 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[cfc 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cfd 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[cfe 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[cff 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d00 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d01 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d02 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d03 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +[d04 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +[d05 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +[d06 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d07 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d08 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d09 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[d0a 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[d0b 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[d0c 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[d0d 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[d0e 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[d0f 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[d10 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[d11 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[d12 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[d13 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[d14 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[d15 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[d16 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[d17 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d18 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[d19 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d1a 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[d1b 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[d1c 01-13 06:15:02.06 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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4770,7 +4644,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[d9b 01-05 06:37:27.75 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----- +[d1d 01-13 06:15:02.06 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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4783,97 +4657,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[d9c 01-05 06:37:27.75 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 -[d9d 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[d9e 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[d9f 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[da0 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[da1 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[da2 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[da3 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[da4 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[da5 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[da6 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[da7 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP -[da8 01-05 06:37:27.75 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----- -MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMy5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2NDNaFw0yNzEyMjcwNjI2NDNa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -ECHNCjOlwIXN9/sd33I4VWt2lY/TG5HW3JumY9nD1n9xmQzZfSDqia12BJ44qumL -vyq1K0EuYHw3ztuOvAamP6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg/qnu4M+Dom5jJ6IJKsy7 -OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv -cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD -nJqgrP2wQg== ------END CERTIFICATE----- -[da9 01-05 06:37:27.75 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----- -MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzMuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjQ0WhcNMjcxMjI3MDYyNjQ0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMy5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKCjrPfn6toP3a96+ty3D4q4INzURBZ0 -Uo/s2uUgA+YEraC+q0RbGGFgBsOtGiKvgHMqd8M7V06pjiUb7Q0YBISjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP6p7uDPg6Ju -YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 -cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r -hVFCfUaM7mJS8t0Pz4U= ------END CERTIFICATE----- -[daa 01-05 06:37:27.75 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 -[dab 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[dac 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[dad 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[dae 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[daf 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[db0 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[db1 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[db2 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[db3 01-05 06:37:27.75 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[db4 01-05 06:37:27.75 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----- -MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -oQmWQsjpiQ== ------END CERTIFICATE----- -[db5 01-05 06:37:27.76 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----- -MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[db6 01-05 06:37:27.76 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 -[db7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[db8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[db9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[dba 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[dbb 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[dbc 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[dbd 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[dbe 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[dbf 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[dc0 01-05 06:37:27.76 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----- +[d1e 01-13 06:15:02.06 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 +[d1f 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[d20 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[d21 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[d22 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d23 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[d24 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d25 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[d26 01-13 06:15:02.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[d27 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d28 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[d29 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[d2a 01-13 06:15:02.07 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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4888,7 +4684,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[dc1 01-05 06:37:27.76 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----- +[d2b 01-13 06:15:02.07 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+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4902,135 +4698,205 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[dc2 01-05 06:37:27.76 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 -[dc3 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -[dc4 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -[dc5 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -[dc6 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -[dc7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -[dc8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[dc9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[dca 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[dcb 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[dcc 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[dcd 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[dce 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[dcf 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[dd0 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[dd1 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[dd2 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[dd3 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[dd4 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[dd5 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[dd6 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[dd7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[dd8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[dd9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[dda 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[ddb 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[ddc 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[ddd 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[dde 01-05 06:37:27.76 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 -[ddf 01-05 06:37:27.76 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 -[de0 01-05 06:37:27.76 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 -[de1 01-05 06:37:27.76 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 -[de2 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[de3 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[de4 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[de5 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[de6 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[de7 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[de8 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[de9 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[dea 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[deb 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[dec 01-05 06:37:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[ded 01-05 06:37:27.76 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 -[dee 01-05 06:37:27.76 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 -[def 01-05 06:37:27.77 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 -[df0 01-05 06:37:27.77 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 -[df1 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[df2 01-05 06:37:27.77 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 -[df3 01-05 06:37:27.77 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 -[df4 01-05 06:37:27.77 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 -[df5 01-05 06:37:27.77 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 -[df6 01-05 06:37:27.77 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 -[df7 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[df8 01-05 06:37:27.77 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 -[df9 01-05 06:37:27.77 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 -[dfa 01-05 06:37:27.77 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 -[dfb 01-05 06:37:27.77 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 -[dfc 01-05 06:37:27.77 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 -[dfd 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[dfe 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[dff 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[e00 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[e01 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[e02 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[e03 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[e04 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[e05 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[e06 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[e07 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[e08 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[e09 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[e0a 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[e0b 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[e0c 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[e0d 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[e0e 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[e0f 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[e10 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[e11 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -[e12 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[e13 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[e14 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[e15 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[e16 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[e17 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[e18 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[e19 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[e1a 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[e1b 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[e1c 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e1d 01-05 06:37:27.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[e1e 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e1f 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...FE70E6517F307A389949835DC97BF90C -[e20 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 932DB9714BC4AEF4364E60650FAEDD5FC15258512EDA6E6D08BDAEA8C65DF8D1 -[e21 01-05 06:37:27.78 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 -[e22 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[e23 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e24 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 -[e25 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[e26 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e27 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...FE70E6517F307A389949835DC97BF90C -[e28 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BA2B7999D940040BC374C82FDFD8C4EF50D5620443B5160853C6B124A923633C -[e29 01-05 06:37:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -txId= locPointer=offset=71, bytesLength=19401 +[d2c 01-13 06:15:02.07 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 +[d2d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[d2e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d2f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[d30 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d31 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +[d32 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +[d33 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d34 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[d35 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP +[d36 01-13 06:15:02.07 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----- +MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMy5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2NDNaFw0yNzEyMjcwNjI2NDNa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +ECHNCjOlwIXN9/sd33I4VWt2lY/TG5HW3JumY9nD1n9xmQzZfSDqia12BJ44qumL +vyq1K0EuYHw3ztuOvAamP6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg/qnu4M+Dom5jJ6IJKsy7 +OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv +cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD +nJqgrP2wQg== +-----END CERTIFICATE----- +[d37 01-13 06:15:02.07 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----- +MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzMuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjQ0WhcNMjcxMjI3MDYyNjQ0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMy5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKCjrPfn6toP3a96+ty3D4q4INzURBZ0 +Uo/s2uUgA+YEraC+q0RbGGFgBsOtGiKvgHMqd8M7V06pjiUb7Q0YBISjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP6p7uDPg6Ju +YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 +cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r +hVFCfUaM7mJS8t0Pz4U= +-----END CERTIFICATE----- +[d38 01-13 06:15:02.07 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 +[d39 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[d3a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d3b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[d3c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d3d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[d3e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[d3f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d40 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[d41 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[d42 01-13 06:15:02.07 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----- +MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 +WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy +oQmWQsjpiQ== +-----END CERTIFICATE----- +[d43 01-13 06:15:02.07 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----- +MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 +2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +jTZ94VyvHhJOn4fshoU= +-----END CERTIFICATE----- +[d44 01-13 06:15:02.07 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 +[d45 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) +[d46 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps +[d47 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[d48 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[d49 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[d4a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[d4b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[d4c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[d4d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[d4e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[d4f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[d50 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[d51 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP +[d52 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP +[d53 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP +[d54 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[d55 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[d56 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[d57 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[d58 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[d59 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[d5a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[d5b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[d5c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[d5d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[d5e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[d5f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[d60 01-13 06:15:02.07 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 +[d61 01-13 06:15:02.07 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 +[d62 01-13 06:15:02.07 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 +[d63 01-13 06:15:02.07 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 +[d64 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[d65 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[d66 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[d67 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[d68 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[d69 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[d6a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[d6b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[d6c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[d6d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[d6e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[d6f 01-13 06:15:02.07 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 +[d70 01-13 06:15:02.07 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 +[d71 01-13 06:15:02.07 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 +[d72 01-13 06:15:02.07 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 +[d73 01-13 06:15:02.07 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 +[d74 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[d75 01-13 06:15:02.07 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 +[d76 01-13 06:15:02.07 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 +[d77 01-13 06:15:02.07 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 +[d78 01-13 06:15:02.07 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 +[d79 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[d7a 01-13 06:15:02.07 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 +[d7b 01-13 06:15:02.07 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 +[d7c 01-13 06:15:02.07 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 +[d7d 01-13 06:15:02.07 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 +[d7e 01-13 06:15:02.07 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 +[d7f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[d80 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[d81 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[d82 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[d83 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[d84 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[d85 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[d86 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[d87 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[d88 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[d89 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[d8a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[d8b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[d8c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[d8d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[d8e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[d8f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[d90 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[d91 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[d92 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP +[d93 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[d94 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[d95 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[d96 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[d97 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[d98 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[d99 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[d9a 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[d9b 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[d9c 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[d9d 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[d9e 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[d9f 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[da0 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[da1 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...41B667E62154D3009B65CCAEC56C54B1 +[da2 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 534AAA011501DBBFD8253F072CBF1FAE94F9E5DA4134ED87CBF333EDF08A8AA2 +[da3 01-13 06:15:02.07 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 +[da4 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[da5 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[da6 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 +[da7 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[da8 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[da9 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...41B667E62154D3009B65CCAEC56C54B1 +[daa 01-13 06:15:02.07 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 719D4B981CE5571610B2D0832D6DA5115F3A7DC1F7C404D2E40CC9764963B601 +[dab 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +txId= locPointer=offset=71, bytesLength=19402 ] -[e2a 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81566], isChainEmpty=[false], lastBlockNumber=[7] -[e2b 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 -[e2c 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e2d 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -[e2e 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -[e2f 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -[e30 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[e31 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e32 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[e33 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e34 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[e35 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[e36 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e37 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -[e38 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -[e39 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -[e3a 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[e3b 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e3c 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[e3d 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e3e 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[e3f 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[e41 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[dac 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81566], isChainEmpty=[false], lastBlockNumber=[7] +[dad 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 +[dae 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[daf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +[db0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[db1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +[db2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +[db3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +[db4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[db5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[db6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[db7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[db8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[db9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[dba 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5044,31 +4910,70 @@ RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB IMM+3uC8p/M1qCSaOiQ= -----END CERTIFICATE----- -[e42 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201383b0 gate 1515134247814206900 evaluation starts -[e43 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 signed by 0 principal evaluation starts (used [false]) -[e44 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e45 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) -[e46 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201383b0 principal evaluation fails -[e47 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201383b0 gate 1515134247814206900 evaluation fails -[e48 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[e49 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[e4a 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[e4b 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134247817255800 evaluation starts -[e4c 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 signed by 0 principal evaluation starts (used [false]) -[e4d 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e4e 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[e4f 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138440 principal evaluation fails -[e50 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138440 gate 1515134247817255800 evaluation fails -[e51 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[e52 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[e53 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[e54 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138460 gate 1515134247819487600 evaluation starts -[e55 01-05 06:37:27.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 signed by 0 principal evaluation starts (used [false]) -[e56 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e57 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[e58 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[e59 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 principal matched by identity 0 -[e40 01-05 06:37:27.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[dbb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c388 gate 1515824102084428090 evaluation starts +[dbc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 signed by 0 principal evaluation starts (used [false]) +[dbd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dbe 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[dbf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c388 principal evaluation fails +[dc0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c388 gate 1515824102084428090 evaluation fails +[dc1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[dc2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[dc3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[dc4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[dc5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[dc6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[dc7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[dc8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[dc9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824102084941390 evaluation starts +[dca 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 signed by 0 principal evaluation starts (used [false]) +[dcb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dcc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) +[dcd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c428 principal evaluation fails +[dce 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c428 gate 1515824102084941390 evaluation fails +[dcf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[dd0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[dd1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[dd2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c438 gate 1515824102085256890 evaluation starts +[dd3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 signed by 0 principal evaluation starts (used [false]) +[dd4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dd5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[dd6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c438 principal evaluation fails +[dd7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c438 gate 1515824102085256890 evaluation fails +[dd8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[dd9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[dda 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[ddb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c440 gate 1515824102085601490 evaluation starts +[ddc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 signed by 0 principal evaluation starts (used [false]) +[ddd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dde 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[ddf 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[de0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c440 principal matched by identity 0 +[de1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 fb 3e 27 9e c5 ac 31 e3 cc 45 1c 7e af 64 93 6f |.>'...1..E.~.d.o| +00000010 85 4b 15 5f 7e ef 49 b4 a4 ef a5 a4 a2 30 61 94 |.K._~.I......0a.| +[de2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4b 5c 5c ff cc 10 cc 63 88 40 93 46 |0D. K\\....c.@.F| +00000010 33 d5 8e 39 bf 1c 85 96 bf a6 70 07 73 de 71 71 |3..9......p.s.qq| +00000020 56 12 c9 fd 02 20 13 6c 74 ea a8 f1 3c 57 b2 9b |V.... .lt... DEBU 0xc42011c440 principal evaluation succeeds for identity 0 +[de4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c440 gate 1515824102085601490 evaluation succeeds +[de5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[de6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[de7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[de8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[de9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[dea 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[deb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420956600) for 172.18.0.6:47998 +[dec 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[ded 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +[dee 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +[def 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[df0 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[df1 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[df2 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[df3 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[df4 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[df5 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -5082,65 +4987,62 @@ RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk oOWGb8BDg2Tnm3LS -----END CERTIFICATE----- -[e5a 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 79 d1 5d b1 3f 52 2d 32 82 54 e0 af e2 de 98 1c |y.].?R-2.T......| -00000010 eb 5b 21 04 d1 58 18 0f 4d a2 ee 7f ea de ac d7 |.[!..X..M.......| -[e5b 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 24 d6 1a fc 1c 66 ec ec 80 4d 34 f0 |0D. $....f...M4.| -00000010 41 77 9b 17 96 68 20 eb 0a 9f 97 31 6a 0c fb 79 |Aw...h ....1j..y| -00000020 a4 f1 cf dc 02 20 5a 2d 47 f7 c1 3b 55 2c 5b 85 |..... Z-G..;U,[.| -00000030 c7 8f 0b 90 01 a7 ff f8 32 db 15 9a 1f 40 23 e9 |........2....@#.| -00000040 ff 92 43 68 35 2c |..Ch5,| -[e5c 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134247822883600 evaluation starts -[e5d 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -[e5e 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 principal evaluation succeeds for identity 0 -[e60 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138460 gate 1515134247819487600 evaluation succeeds -[e5f 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e62 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) -[e63 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -[e64 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1515134247822883600 evaluation fails -[e61 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[e66 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[e67 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[e68 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[e69 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e65 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[e6a 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[e6b 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[e6c 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200d3a20) for 172.18.0.4:47452 -[e6d 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[e6f 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e6e 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134247828599900 evaluation starts -[e70 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) -[e71 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e72 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[e73 01-05 06:37:27.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[e74 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal matched by identity 0 -[e75 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 25 97 8d e1 ec f1 fe 3d 55 d2 3e 34 d0 9c b9 19 |%......=U.>4....| -00000010 23 5d 41 55 29 6e 92 64 2a 32 dd 80 d5 5d f6 b6 |#]AU)n.d*2...]..| -[e76 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2c 2b 20 7e 5d cf 07 9d ca 69 7b 7e |0D. ,+ ~]....i{~| -00000010 5e 69 fc 7e c9 33 12 88 7f 0e 5c 1d 27 a4 3c fe |^i.~.3....\.'.<.| -00000020 7f 1f 12 5e 02 20 76 5e 13 59 d4 cd 3b 83 42 e8 |...^. v^.Y..;.B.| -00000030 40 ee 47 fc 75 cf 04 26 99 8d c1 66 d1 0d 4c 41 |@.G.u..&...f..LA| -00000040 a2 96 e7 c6 1d 05 |......| -[e77 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation succeeds for identity 0 -[e78 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515134247828599900 evaluation succeeds -[e79 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[e7a 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[e7b 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[e7c 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[e7d 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e7e 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[e7f 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a72560) for 172.18.0.3:40420 -[e80 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e81 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[e82 01-05 06:37:29.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:44260 -[e83 01-05 06:37:29.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:44260 -[e84 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[e85 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e86 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[e87 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e88 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[e89 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[e8a 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[df6 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8a8 gate 1515824102087898390 evaluation starts +[df7 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 signed by 0 principal evaluation starts (used [false]) +[df8 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[df9 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[dfa 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8a8 principal evaluation fails +[dfb 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8a8 gate 1515824102087898390 evaluation fails +[dfc 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[dfd 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[dfe 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[dff 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[e00 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[e01 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[e02 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e03 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[e04 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1515824102088692590 evaluation starts +[e05 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 signed by 0 principal evaluation starts (used [false]) +[e06 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e07 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) +[e08 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 principal evaluation fails +[e09 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1515824102088692590 evaluation fails +[e0a 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[e0b 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[e0c 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[e0d 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c0 gate 1515824102089025690 evaluation starts +[e0e 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 signed by 0 principal evaluation starts (used [false]) +[e0f 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e10 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[e11 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[e12 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 principal matched by identity 0 +[e13 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 12 9a be bd 3d 0d a9 f6 bf f3 e1 0f 5f ff 04 3c |....=......._..<| +00000010 0d 62 04 6e 15 09 9f 48 7e 88 9c f7 b2 61 6d 40 |.b.n...H~....am@| +[e14 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 ec 20 2c 7f 3d 8f de f3 25 98 |0E.!... ,.=...%.| +00000010 7c 3d df f9 99 57 85 ef 74 47 cf 43 a9 5a 97 ba ||=...W..tG.C.Z..| +00000020 0d 64 e1 e4 1b 02 20 4d e4 7f 28 18 be 55 54 f9 |.d.... M..(..UT.| +00000030 00 22 e1 87 dd 87 09 8b 56 02 10 1a a4 e8 0f 91 |."......V.......| +00000040 60 04 03 f4 c6 8a 13 |`......| +[e15 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c0 principal evaluation succeeds for identity 0 +[e16 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c0 gate 1515824102089025690 evaluation succeeds +[e17 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[e18 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[e19 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[e1a 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[e1b 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[e1c 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[e1d 01-13 06:15:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209667c0) for 172.18.0.3:51084 +[e1e 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e1f 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e20 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50338 +[e21 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.8:50338 +[e22 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[e23 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e24 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[e25 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e26 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[e27 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[e28 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5153,149 +5055,86 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[e8b 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384b0 gate 1515134249827740800 evaluation starts -[e8c 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 signed by 0 principal evaluation starts (used [false]) -[e8d 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e8e 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[e8f 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384b0 principal evaluation fails -[e90 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384b0 gate 1515134249827740800 evaluation fails -[e91 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[e92 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[e93 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[e94 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134249829119000 evaluation starts -[e95 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 signed by 0 principal evaluation starts (used [false]) -[e96 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e97 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[e98 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384c0 principal evaluation fails -[e99 01-05 06:37:29.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384c0 gate 1515134249829119000 evaluation fails -[e9a 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[e9b 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[e9c 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[e9d 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134249830692100 evaluation starts -[e9e 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 signed by 0 principal evaluation starts (used [false]) -[e9f 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ea0 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[ea1 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d0 principal evaluation fails -[ea2 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d0 gate 1515134249830692100 evaluation fails -[ea3 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[ea4 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[ea5 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[ea6 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[ea7 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[ea8 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ea9 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[eaa 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[eab 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134249832530000 evaluation starts -[eac 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 signed by 0 principal evaluation starts (used [false]) -[ead 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[eae 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[eaf 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[eb0 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal matched by identity 0 -[eb1 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 8d 25 e2 30 22 fe 63 97 b1 a2 4b 6a 22 68 31 46 |.%.0".c...Kj"h1F| -00000010 eb 44 99 a7 b4 4e 7a e7 79 7c aa 80 11 6c 06 67 |.D...Nz.y|...l.g| -[eb2 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 50 fd 68 64 dc de aa 38 a9 a8 |0E.!..P.hd...8..| -00000010 5e 15 6b 64 ce 97 ba 17 bf 59 26 cd 90 90 19 88 |^.kd.....Y&.....| -00000020 79 e2 4d ae c2 02 20 3f 61 fb 4c cc c6 1a 5f 75 |y.M... ?a.L..._u| -00000030 a2 3b 84 65 64 cd fe a2 75 03 34 c3 73 80 ef fa |.;.ed...u.4.s...| -00000040 db 7a 4e f2 37 c2 99 |.zN.7..| -[eb3 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384d8 principal evaluation succeeds for identity 0 -[eb4 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384d8 gate 1515134249832530000 evaluation succeeds -[eb5 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[eb6 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[eb7 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[eb8 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[eb9 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[eba 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[ebb 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a73b40) start: > stop: > from 172.18.0.7:44260 -[ebc 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[ebd 01-05 06:37:29.83 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=[60301] -[ebe 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -[ebf 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -[ec0 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -[ec1 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a73b40) for 172.18.0.7:44260 -[ec2 01-05 06:37:29.83 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:44260 for (0xc420a73b40) -[ec3 01-05 06:37:29.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:44260 -[ec5 01-05 06:37:29.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:44260 -[ec4 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[ec6 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[ec7 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[ec8 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[ec9 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44260: rpc error: code = Canceled desc = context canceled -[eca 01-05 06:37:29.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[ecb 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[ecc 01-05 06:37:29.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:44262 -[ecd 01-05 06:37:29.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:44262 -[ece 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ecf 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ed0 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[ed1 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ed2 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[ed3 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138528 gate 1515134249919774800 evaluation starts -[ed4 01-05 06:37:29.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 signed by 0 principal evaluation starts (used [false]) -[ed5 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ed6 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[ed7 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138528 principal evaluation fails -[ed8 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138528 gate 1515134249919774800 evaluation fails -[ed9 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[eda 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[edb 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[edc 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138530 gate 1515134249921245800 evaluation starts -[edd 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 signed by 0 principal evaluation starts (used [false]) -[ede 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[edf 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[ee0 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138530 principal evaluation fails -[ee1 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138530 gate 1515134249921245800 evaluation fails -[ee2 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[ee3 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[ee4 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[ee5 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138538 gate 1515134249922523700 evaluation starts -[ee6 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 signed by 0 principal evaluation starts (used [false]) -[ee7 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ee8 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[ee9 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138538 principal evaluation fails -[eea 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138538 gate 1515134249922523700 evaluation fails -[eeb 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[eec 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[eed 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[eee 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[eef 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[ef0 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ef1 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ef2 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ef3 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138540 gate 1515134249924332000 evaluation starts -[ef4 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 signed by 0 principal evaluation starts (used [false]) -[ef5 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ef6 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[ef7 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[ef8 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 principal matched by identity 0 -[ef9 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 1f f0 a4 34 b9 0b c6 43 1b f5 22 1c b7 d4 dc 70 |...4...C.."....p| -00000010 dc 10 20 a5 16 f4 3c c2 cd 60 3e c8 88 4a 20 da |.. ...<..`>..J .| -[efa 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b2 16 d2 62 0d 46 ba 7d b5 34 15 |0E.!....b.F.}.4.| -00000010 86 9d 6c d1 bf e4 b5 ee 55 8d 1d 58 2b e2 09 19 |..l.....U..X+...| -00000020 27 87 54 c3 b2 02 20 21 50 5d 86 cc 1f a3 7f cb |'.T... !P]......| -00000030 8f aa fd a8 6b 61 51 a5 f3 1c 98 3b 6e 74 7e 5a |....kaQ....;nt~Z| -00000040 b2 e3 fe c1 3e db a1 |....>..| -[efb 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138540 principal evaluation succeeds for identity 0 -[efc 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138540 gate 1515134249924332000 evaluation succeeds -[efd 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[efe 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[eff 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[f00 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[f01 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[f02 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[f03 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202a9180) start: > stop: > from 172.18.0.7:44262 -[f04 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[f05 01-05 06:37:29.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=[60301] -[f06 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21265], Going to peek [8] bytes -[f07 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21262], placementInfo={fileNum=[0], startOffset=[60301], bytesOffset=[60304]} -[f08 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21262] read from file [0] -[f09 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202a9180) for 172.18.0.7:44262 -[f0a 01-05 06:37:29.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:44262 for (0xc4202a9180) -[f0c 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[f0d 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[f0e 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[f0f 01-05 06:37:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[f0b 01-05 06:37:29.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:44262 -[f10 01-05 06:37:29.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:44262 -[f11 01-05 06:37:29.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:44262: rpc error: code = Canceled desc = context canceled -[f12 01-05 06:37:29.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[e29 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8f0 gate 1515824104159188390 evaluation starts +[e2a 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 signed by 0 principal evaluation starts (used [false]) +[e2b 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e2c 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[e2d 01-13 06:15:04.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[e2e 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 principal matched by identity 0 +[e2f 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c7 8a f8 03 d8 14 d9 e3 49 0a 04 cf 4e bf 68 e7 |........I...N.h.| +00000010 81 04 20 11 39 06 37 84 2f 40 88 77 fe d5 5d c6 |.. .9.7./@.w..].| +[e30 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 42 f8 92 37 63 b5 45 84 d8 42 d4 06 |0D. B..7c.E..B..| +00000010 cf 6f 8d 66 ca 3c b1 d4 50 e1 e6 57 ef 1a 26 96 |.o.f.<..P..W..&.| +00000020 32 68 c9 6f 02 20 02 80 75 f0 a8 3f 24 6b 00 51 |2h.o. ..u..?$k.Q| +00000030 c8 43 42 b3 4b 5d 80 ee a0 62 10 89 6c 4b f6 e4 |.CB.K]...b..lK..| +00000040 60 09 97 43 53 98 |`..CS.| +[e31 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8f0 principal evaluation succeeds for identity 0 +[e32 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8f0 gate 1515824104159188390 evaluation succeeds +[e33 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[e34 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[e35 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[e36 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[e37 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[e38 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[e39 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42092a300) start: > stop: > from 172.18.0.8:50338 +[e3a 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[e3b 01-13 06:15:04.16 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=[60299] +[e3c 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +[e3d 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +[e3e 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +[e3f 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42092a300) for 172.18.0.8:50338 +[e40 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50338 for (0xc42092a300) +[e41 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50338 +[e43 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e44 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e42 01-13 06:15:04.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.8:50338 +[e45 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e46 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e47 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50338: rpc error: code = Canceled desc = context canceled +[e48 01-13 06:15:04.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[e49 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e4a 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.8:50340 +[e4b 01-13 06:15:04.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.8:50340 +[e4c 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[e4d 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e4e 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[e4f 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e50 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[e51 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c608 gate 1515824104247597690 evaluation starts +[e52 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 signed by 0 principal evaluation starts (used [false]) +[e53 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e54 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[e55 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[e56 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 principal matched by identity 0 +[e57 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9c 24 d4 2d bb c1 c1 ca 2e 72 cf 18 69 46 15 48 |.$.-.....r..iF.H| +00000010 3c 06 3c e6 ba 7b 25 ac ae 1d 9c ba 8b dd bc 39 |<.<..{%........9| +[e58 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fc 90 df 42 d9 61 dc f8 17 d0 b0 |0E.!....B.a.....| +00000010 fd bc 72 77 d4 90 29 c3 50 f0 8c 46 97 c0 fc 50 |..rw..).P..F...P| +00000020 1d 33 4b af 01 02 20 39 a2 0d 6a 40 ce d6 da f7 |.3K... 9..j@....| +00000030 a7 73 40 3a 00 2b 2d 3e b6 66 e3 10 c9 95 91 be |.s@:.+->.f......| +00000040 88 06 30 c7 f4 6b ff |..0..k.| +[e59 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42011c608 principal evaluation succeeds for identity 0 +[e5a 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42011c608 gate 1515824104247597690 evaluation succeeds +[e5b 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[e5c 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[e5d 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[e5e 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[e5f 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[e60 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.evaluate.func1.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[e61 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420824ce0) start: > stop: > from 172.18.0.8:50340 +[e62 01-13 06:15:04.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[e63 01-13 06:15:04.25 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=[60299] +[e64 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21267], Going to peek [8] bytes +[e65 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21264], placementInfo={fileNum=[0], startOffset=[60299], bytesOffset=[60302]} +[e66 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21264] read from file [0] +[e67 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420824ce0) for 172.18.0.8:50340 +[e68 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.8:50340 for (0xc420824ce0) +[e69 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.8:50340 +[e6a 01-13 06:15:04.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.8:50340 +[e6b 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e6c 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e6d 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e6e 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e6f 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/flogging] serveHTTP2Transport.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.7:7050->172.18.0.8:50340: read: connection reset by peer +[e70 01-13 06:15:04.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.8:50340: rpc error: code = Canceled desc = context canceled +[e71 01-13 06:15:04.25 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 0e78398e..896b223c 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/latest/solo/logs/dev_peer0.log @@ -1,5 +1,5 @@ -[001 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -[002 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[001 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP +[002 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: Version: 1.1.0 Go version: go1.9.2 OS/Arch: linux/amd64 @@ -10,72 +10,72 @@ Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[003 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[004 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[005 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -[006 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -[007 01-05 06:36:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -[008 01-05 06:36:22.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -[009 01-05 06:36:22.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -[00a 01-05 06:36:22.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -[00b 01-05 06:36:22.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -[00c 01-05 06:36:22.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -[00d 01-05 06:36:22.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -[00e 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -[00f 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -[010 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -[011 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -[012 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -[013 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -[014 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -[015 01-05 06:36:22.23 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -[016 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[017 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -[018 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -[019 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[01a 01-05 06:36:22.25 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 -[01b 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 -[01c 01-05 06:36:22.25 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 -[01d 01-05 06:36:22.25 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 -[01e 01-05 06:36:22.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[01f 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[020 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[021 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[022 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[023 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -[024 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[025 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -[026 01-05 06:36:22.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -[027 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN -[028 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -[029 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -[02a 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[02b 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -[02c 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -[02d 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -[02e 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -[02f 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to -[030 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] -[031 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[032 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[033 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -[034 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -[035 01-05 06:36:22.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -[036 01-05 06:36:22.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -[037 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP -[038 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[039 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -[03a 01-05 06:36:22.45 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]] -[03b 01-05 06:36:22.45 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]] -[03c 01-05 06:36:22.45 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]] -[03d 01-05 06:36:22.45 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]] -[03e 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -[03f 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[040 01-05 06:36:22.45 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[041 01-05 06:36:22.46 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -[042 01-05 06:36:22.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[043 01-05 06:36:22.48 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[044 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[003 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +[004 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +[005 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +[006 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +[007 01-13 06:14:03.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +[008 01-13 06:14:03.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +[009 01-13 06:14:03.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +[00a 01-13 06:14:03.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +[00b 01-13 06:14:03.39 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +[00c 01-13 06:14:03.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +[00d 01-13 06:14:03.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +[00e 01-13 06:14:03.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +[00f 01-13 06:14:03.52 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +[010 01-13 06:14:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +[011 01-13 06:14:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +[012 01-13 06:14:03.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +[013 01-13 06:14:03.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +[014 01-13 06:14:03.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +[015 01-13 06:14:03.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +[016 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +[017 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +[018 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +[019 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +[01a 01-13 06:14:03.72 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 +[01b 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 +[01c 01-13 06:14:03.72 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 +[01d 01-13 06:14:03.72 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 +[01e 01-13 06:14:03.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +[01f 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +[020 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +[021 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +[022 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +[023 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +[024 01-13 06:14:03.77 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +[025 01-13 06:14:03.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +[026 01-13 06:14:03.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +[027 01-13 06:14:03.83 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer0.org1.example.com as a hostname, adding it as a DNS SAN +[028 01-13 06:14:03.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +[029 01-13 06:14:03.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +[02a 01-13 06:14:03.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +[02b 01-13 06:14:03.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +[02c 01-13 06:14:03.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +[02d 01-13 06:14:03.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +[02e 01-13 06:14:03.90 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +[02f 01-13 06:14:03.90 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found real value for chaincode.systemPlugins setting to +[030 01-13 06:14:03.90 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.loadSysCCs.Do.func1.EnhancedExactUnmarshalKey -> DEBU map[chaincode.systemPlugins:] +[031 01-13 06:14:03.91 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[032 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[033 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +[034 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +[035 01-13 06:14:03.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +[036 01-13 06:14:03.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled +[037 01-13 06:14:03.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterACLProvider.Do.func1.newACLMgmt.newDefaultACLProvider.initialize.GetLocalMSP -> DEBU Returning existing local MSP +[038 01-13 06:14:03.93 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +[039 01-13 06:14:03.95 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +[03a 01-13 06:14:03.96 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]] +[03b 01-13 06:14:03.96 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]] +[03c 01-13 06:14:03.97 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]] +[03d 01-13 06:14:03.97 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]] +[03e 01-13 06:14:03.97 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]]]] +[03f 01-13 06:14:03.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +[040 01-13 06:14:03.98 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[041 01-13 06:14:04.05 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +[042 01-13 06:14:04.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[043 01-13 06:14:04.14 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[044 01-13 06:14:04.14 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -89,34 +89,34 @@ RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk oOWGb8BDg2Tnm3LS -----END CERTIFICATE----- -[045 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[046 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[047 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[048 01-05 06:36:22.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[049 01-05 06:36:22.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[04a 01-05 06:36:22.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[04b 01-05 06:36:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } incTime is 1515134182505788900 -[04c 01-05 06:36:22.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 {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } -[04d 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[04e 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[04f 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[050 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[051 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[052 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[053 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[054 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[055 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[056 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C3060A20D88EF51A9639BB4C...455254494649434154452D2D2D2D2D0A -[057 01-05 06:36:22.51 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 6C596B8A89F317168489F48B6D5F6E04A52EF501182F135354D8952D4A70CBE4 -[058 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=f8051bed-cbb5-44bd-a0ae-155bc602e23f,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[059 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched -[05a 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[05b 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[05c 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -[05d 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -[05e 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[05f 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[060 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[045 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[046 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[047 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[048 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[049 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[04a 01-13 06:14:04.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[04c 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[04b 01-13 06:14:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } incTime is 1515824044162791594 +[04d 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [216 142 245 26 150 57 187 76 159 89 79 106 102 81 135 47 20 73 137 7 206 25 18 85 100 197 188 32 29 112 92 121] peer0.org1.example.com:7051 } +[04e 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[04f 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[050 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[051 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[052 01-13 06:14:04.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[053 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[054 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[055 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[056 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01C3060A20D88EF51A9639BB4C...455254494649434154452D2D2D2D2D0A +[057 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 6C596B8A89F317168489F48B6D5F6E04A52EF501182F135354D8952D4A70CBE4 +[058 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=fa215ae3-4bb3-449e-b5fc-eee010081a4e,syscc=true,proposal=0x0,canname=cscc:1.1.0 +[059 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.1.0 is being launched +[05a 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[05b 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[05c 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +[05d 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[05e 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[05f 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[060 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -125,84 +125,84 @@ oOWGb8BDg2Tnm3LS CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[061 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -[062 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -[063 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -[064 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -[065 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[066 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[067 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[068 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[069 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[06a 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -[06b 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5473D7820B911C49BAAE07F758D9B38654A70BF13E643DB4E570A935F8A6A463 -[06c 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[06d 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[06e 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[06f 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[070 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -[071 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[072 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -[073 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[074 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -[075 01-05 06:36:22.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[076 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[077 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[078 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[079 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -[07a 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -[07b 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[07c 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[07d 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[07e 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[07f 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -[080 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[081 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[082 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]Move state message READY -[083 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed]Fabric side Handling ChaincodeMessage of type: READY in state established -[084 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f8051bed]Entered state ready -[085 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f8051bed-cbb5-44bd-a0ae-155bc602e23f, channelID: -[086 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]sending state message READY -[087 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Received message READY from shim -[088 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8051bed]Handling ChaincodeMessage of type: READY(state:established) -[089 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[08a 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[08b 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[08c 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[08d 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -[08e 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8051bed]Inside sendExecuteMessage. Message INIT -[08f 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[090 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8051bed]sendExecuteMsg trigger event INIT -[091 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]Move state message INIT -[092 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[093 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[094 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]sending state message INIT -[095 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Received message INIT from shim -[096 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8051bed]Handling ChaincodeMessage of type: INIT(state:ready) -[097 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[098 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f8051bed]Received INIT, initializing chaincode -[099 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[09a 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[09b 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Init get response status: 200 -[09c 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Init succeeded. Sending COMPLETED -[09d 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]Move state message COMPLETED -[09e 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8051bed]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[09f 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8051bed]send state message COMPLETED -[0a0 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8051bed]Received message COMPLETED from shim -[0a1 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0a2 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f8051bed-cbb5-44bd-a0ae-155bc602e23f]HandleMessage- COMPLETED. Notify -[0a3 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f8051bed-cbb5-44bd-a0ae-155bc602e23f, channelID: -[0a4 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0a5 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[0a6 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=4b54524d-cab9-401a-9c83-93090ec5e57c,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[0a7 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched -[0a8 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[0a9 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0aa 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -[0ab 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[0ac 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[0ad 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ae 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[061 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock +[062 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock +[063 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 +[064 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) +[065 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +[066 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +[067 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 +[068 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[069 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +[06a 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[06b 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[06c 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A +[06d 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 833019F6EF1AA53B37313D45CD81E1A4B2F0CCF9B83E3F5183FD4143D2B2F1A6 +[06e 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 +[06f 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[070 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 +[071 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[072 01-13 06:14:04.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[073 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[074 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[075 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 +[076 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED +[077 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[078 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[079 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[07a 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[07b 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed +[07c 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[07d 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[07e 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[080 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[07f 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]Move state message READY +[082 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3]Fabric side Handling ChaincodeMessage of type: READY in state established +[081 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +[084 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +[083 01-13 06:14:04.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fa215ae3]Entered state ready +[086 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fa215ae3-4bb3-449e-b5fc-eee010081a4e, channelID: +[085 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[087 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]sending state message READY +[088 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Received message READY from shim +[089 01-13 06:14:04.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa215ae3]Handling ChaincodeMessage of type: READY(state:established) +[08a 01-13 06:14:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[08b 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[08c 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[08d 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +[08e 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa215ae3]Inside sendExecuteMessage. Message INIT +[08f 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[090 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa215ae3]sendExecuteMsg trigger event INIT +[091 01-13 06:14:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]Move state message INIT +[092 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[093 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[094 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]sending state message INIT +[095 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Received message INIT from shim +[096 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa215ae3]Handling ChaincodeMessage of type: INIT(state:ready) +[097 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[098 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fa215ae3]Received INIT, initializing chaincode +[099 01-13 06:14:04.23 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[09a 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[09b 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Init get response status: 200 +[09c 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Init succeeded. Sending COMPLETED +[09d 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]Move state message COMPLETED +[09e 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa215ae3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[09f 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa215ae3]send state message COMPLETED +[0a0 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa215ae3]Received message COMPLETED from shim +[0a1 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0a2 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fa215ae3-4bb3-449e-b5fc-eee010081a4e]HandleMessage- COMPLETED. Notify +[0a3 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fa215ae3-4bb3-449e-b5fc-eee010081a4e, channelID: +[0a4 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0a5 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[0a6 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=3988aa4e-89e9-4220-902c-b5627c306230,syscc=true,proposal=0x0,canname=lscc:1.1.0 +[0a7 01-13 06:14:04.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.1.0 is being launched +[0a8 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[0a9 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0aa 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +[0ab 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[0ac 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[0ad 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0ae 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -211,71 +211,71 @@ oOWGb8BDg2Tnm3LS 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} -[0af 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -[0b0 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -[0b1 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -[0b2 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -[0b3 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -[0b4 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0b5 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -[0b6 01-05 06:36:22.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0b7 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -[0b8 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0b9 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0ba 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0bb 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0bc 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 -[0bd 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -[0be 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0bf 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0c0 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0c1 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0c2 01-05 06:36:22.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed -[0c3 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0c4 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0c5 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]Move state message READY -[0c6 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d]Fabric side Handling ChaincodeMessage of type: READY in state established -[0c7 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4b54524d]Entered state ready -[0c8 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4b54524d-cab9-401a-9c83-93090ec5e57c, channelID: -[0c9 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]sending state message READY -[0ca 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Received message READY from shim -[0cb 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b54524d]Handling ChaincodeMessage of type: READY(state:established) -[0cc 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0cd 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0ce 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0cf 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[0d0 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4b54524d]Inside sendExecuteMessage. Message INIT -[0d1 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0d2 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4b54524d]sendExecuteMsg trigger event INIT -[0d3 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]Move state message INIT -[0d4 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0d5 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0d6 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]sending state message INIT -[0d7 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Received message INIT from shim -[0d8 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b54524d]Handling ChaincodeMessage of type: INIT(state:ready) -[0d9 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0da 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4b54524d]Received INIT, initializing chaincode -[0db 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0dc 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Init get response status: 200 -[0dd 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Init succeeded. Sending COMPLETED -[0de 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]Move state message COMPLETED -[0df 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b54524d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0e0 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b54524d]send state message COMPLETED -[0e1 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b54524d]Received message COMPLETED from shim -[0e2 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0e3 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4b54524d-cab9-401a-9c83-93090ec5e57c]HandleMessage- COMPLETED. Notify -[0e4 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4b54524d-cab9-401a-9c83-93090ec5e57c, channelID: -[0e5 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0e6 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[0e7 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=b0405d31-1d97-4a17-91e3-abcdf99ff1cf,syscc=true,proposal=0x0,canname=escc:1.1.0 -[0e8 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched -[0e9 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[0ea 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0eb 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -[0ec 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] -[0ed 01-05 06:36:22.55 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[0ee 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ef 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[0af 01-13 06:14:04.26 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +[0b0 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock +[0b1 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 +[0b2 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) +[0b3 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 +[0b5 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0b4 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 +[0b6 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0b7 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 +[0b8 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0b9 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0ba 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0bb 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0bc 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.1.0 +[0bd 01-13 06:14:04.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED +[0be 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0bf 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0c1 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0c2 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0c0 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed +[0c3 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0c4 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0c5 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]Move state message READY +[0c6 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e]Fabric side Handling ChaincodeMessage of type: READY in state established +[0c7 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3988aa4e]Entered state ready +[0c8 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3988aa4e-89e9-4220-902c-b5627c306230, channelID: +[0c9 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]sending state message READY +[0ca 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Received message READY from shim +[0cb 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3988aa4e]Handling ChaincodeMessage of type: READY(state:established) +[0cc 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0cd 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0ce 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0cf 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[0d0 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3988aa4e]Inside sendExecuteMessage. Message INIT +[0d1 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0d2 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3988aa4e]sendExecuteMsg trigger event INIT +[0d3 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]Move state message INIT +[0d4 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0d5 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0d6 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]sending state message INIT +[0d7 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Received message INIT from shim +[0d8 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3988aa4e]Handling ChaincodeMessage of type: INIT(state:ready) +[0d9 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[0da 01-13 06:14:04.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3988aa4e]Received INIT, initializing chaincode +[0db 01-13 06:14:04.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +[0dc 01-13 06:14:04.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Init get response status: 200 +[0dd 01-13 06:14:04.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Init succeeded. Sending COMPLETED +[0de 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]Move state message COMPLETED +[0df 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3988aa4e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[0e0 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3988aa4e]send state message COMPLETED +[0e1 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3988aa4e]Received message COMPLETED from shim +[0e2 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0e3 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3988aa4e-89e9-4220-902c-b5627c306230]HandleMessage- COMPLETED. Notify +[0e4 01-13 06:14:04.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3988aa4e-89e9-4220-902c-b5627c306230, channelID: +[0e5 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0e6 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[0e7 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.1.0,txid=8e573e7a-0c9e-4378-811a-1edba3029185,syscc=true,proposal=0x0,canname=escc:1.1.0 +[0e8 01-13 06:14:04.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.1.0 is being launched +[0e9 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[0ea 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0eb 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +[0ec 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[0ed 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[0ee 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0ef 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -284,71 +284,71 @@ oOWGb8BDg2Tnm3LS 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} -[0f0 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -[0f1 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -[0f2 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -[0f3 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -[0f4 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -[0f5 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0f6 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -[0f7 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0f8 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -[0f9 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0fa 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0fb 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0fc 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0fd 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -[0fe 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED -[0ff 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[100 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[102 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[103 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[101 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed -[104 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[105 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[106 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]Move state message READY -[107 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31]Fabric side Handling ChaincodeMessage of type: READY in state established -[108 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b0405d31]Entered state ready -[109 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b0405d31-1d97-4a17-91e3-abcdf99ff1cf, channelID: -[10a 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]sending state message READY -[10b 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Received message READY from shim -[10c 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0405d31]Handling ChaincodeMessage of type: READY(state:established) -[10d 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[10e 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[10f 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[110 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[111 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0405d31]Inside sendExecuteMessage. Message INIT -[112 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[113 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0405d31]sendExecuteMsg trigger event INIT -[114 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]Move state message INIT -[115 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[116 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[117 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]sending state message INIT -[118 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Received message INIT from shim -[119 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0405d31]Handling ChaincodeMessage of type: INIT(state:ready) -[11a 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[11b 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b0405d31]Received INIT, initializing chaincode -[11c 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[11d 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Init get response status: 200 -[11e 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Init succeeded. Sending COMPLETED -[11f 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]Move state message COMPLETED -[120 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0405d31]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[121 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0405d31]send state message COMPLETED -[122 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0405d31]Received message COMPLETED from shim -[123 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[124 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0405d31-1d97-4a17-91e3-abcdf99ff1cf]HandleMessage- COMPLETED. Notify -[125 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0405d31-1d97-4a17-91e3-abcdf99ff1cf, channelID: -[126 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[127 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -[128 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=e40eb4cc-81ce-411a-9878-5e64bac61197,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[129 01-05 06:36:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched -[12a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[12b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[12c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -[12d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[12e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[12f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[130 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[0f0 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +[0f1 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock +[0f2 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 +[0f3 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) +[0f4 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 +[0f5 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0f6 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 +[0f7 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0f8 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 +[0f9 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0fa 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0fb 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0fc 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0fd 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 +[0fe 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.1.0" , sending back REGISTERED +[0ff 01-13 06:14:04.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[100 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[101 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[102 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[103 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed +[104 01-13 06:14:04.33 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[105 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[106 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]Move state message READY +[107 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a]Fabric side Handling ChaincodeMessage of type: READY in state established +[108 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8e573e7a]Entered state ready +[109 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8e573e7a-0c9e-4378-811a-1edba3029185, channelID: +[10a 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]sending state message READY +[10b 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Received message READY from shim +[10c 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e573e7a]Handling ChaincodeMessage of type: READY(state:established) +[10d 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[10e 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[10f 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[110 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[111 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8e573e7a]Inside sendExecuteMessage. Message INIT +[112 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[113 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8e573e7a]sendExecuteMsg trigger event INIT +[114 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]Move state message INIT +[115 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[116 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[117 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]sending state message INIT +[118 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Received message INIT from shim +[119 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e573e7a]Handling ChaincodeMessage of type: INIT(state:ready) +[11a 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[11b 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8e573e7a]Received INIT, initializing chaincode +[11c 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[11d 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Init get response status: 200 +[11e 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Init succeeded. Sending COMPLETED +[11f 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]Move state message COMPLETED +[120 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e573e7a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[121 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e573e7a]send state message COMPLETED +[122 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e573e7a]Received message COMPLETED from shim +[123 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[124 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8e573e7a-0c9e-4378-811a-1edba3029185]HandleMessage- COMPLETED. Notify +[125 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8e573e7a-0c9e-4378-811a-1edba3029185, channelID: +[126 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[127 01-13 06:14:04.34 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +[128 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=ea1bed4a-705c-4f2f-97bb-39a7de0640bd,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[129 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched +[12a 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[12b 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[12c 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +[12d 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[12e 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[12f 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[130 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -357,70 +357,70 @@ oOWGb8BDg2Tnm3LS 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} -[131 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -[132 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -[133 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -[134 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -[136 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -[137 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[138 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -[135 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -[139 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[13a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[13b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[13c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[13d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[13e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -[13f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED -[140 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[141 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[142 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[143 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[144 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -[145 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[146 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[147 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]Move state message READY -[148 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc]Fabric side Handling ChaincodeMessage of type: READY in state established -[149 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e40eb4cc]Entered state ready -[14a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e40eb4cc-81ce-411a-9878-5e64bac61197, channelID: -[14b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]sending state message READY -[14c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Received message READY from shim -[14e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40eb4cc]Handling ChaincodeMessage of type: READY(state:established) -[14d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[14f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[150 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[151 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[152 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e40eb4cc]Inside sendExecuteMessage. Message INIT -[153 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[154 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e40eb4cc]sendExecuteMsg trigger event INIT -[155 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]Move state message INIT -[156 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[157 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[158 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]sending state message INIT -[159 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Received message INIT from shim -[15a 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40eb4cc]Handling ChaincodeMessage of type: INIT(state:ready) -[15b 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[15c 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e40eb4cc]Received INIT, initializing chaincode -[15d 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Init get response status: 200 -[15e 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Init succeeded. Sending COMPLETED -[15f 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]Move state message COMPLETED -[160 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40eb4cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[161 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40eb4cc]send state message COMPLETED -[162 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40eb4cc]Received message COMPLETED from shim -[163 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[164 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e40eb4cc-81ce-411a-9878-5e64bac61197]HandleMessage- COMPLETED. Notify -[165 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e40eb4cc-81ce-411a-9878-5e64bac61197, channelID: -[166 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[167 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -[168 01-05 06:36:22.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=170abde0-28db-47ea-9e59-f7792c88a556,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[169 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -[16a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[16b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[16c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -[16d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[16e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[16f 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[170 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[131 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock +[132 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock +[133 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 +[134 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) +[135 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 +[137 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[136 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 +[138 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[139 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 +[13a 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[13b 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[13c 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[13d 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[13e 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 +[13f 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.1.0" , sending back REGISTERED +[140 01-13 06:14:04.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[141 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[142 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed +[143 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[144 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[145 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]Move state message READY +[146 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a]Fabric side Handling ChaincodeMessage of type: READY in state established +[147 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ea1bed4a]Entered state ready +[148 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ea1bed4a-705c-4f2f-97bb-39a7de0640bd, channelID: +[149 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]sending state message READY +[14a 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[14b 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[14c 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[14d 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[14e 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ea1bed4a]Inside sendExecuteMessage. Message INIT +[14f 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[150 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ea1bed4a]sendExecuteMsg trigger event INIT +[151 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[152 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[154 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]Move state message INIT +[155 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[156 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[157 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]sending state message INIT +[153 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Received message READY from shim +[158 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea1bed4a]Handling ChaincodeMessage of type: READY(state:established) +[159 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Received message INIT from shim +[15a 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea1bed4a]Handling ChaincodeMessage of type: INIT(state:ready) +[15b 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[15c 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ea1bed4a]Received INIT, initializing chaincode +[15d 01-13 06:14:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Init get response status: 200 +[15e 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Init succeeded. Sending COMPLETED +[15f 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]Move state message COMPLETED +[160 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ea1bed4a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[161 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ea1bed4a]send state message COMPLETED +[162 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ea1bed4a]Received message COMPLETED from shim +[163 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[164 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ea1bed4a-705c-4f2f-97bb-39a7de0640bd]HandleMessage- COMPLETED. Notify +[165 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ea1bed4a-705c-4f2f-97bb-39a7de0640bd, channelID: +[166 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[167 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +[168 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=0eda5631-1e4d-47cc-970f-c17a00ae41bc,syscc=true,proposal=0x0,canname=qscc:1.1.0 +[169 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched +[16a 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[16b 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[16c 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] +[16d 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key] +[16e 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) +[16f 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[170 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -429,1134 +429,1250 @@ oOWGb8BDg2Tnm3LS 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} -[171 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -[172 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -[173 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -[174 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -[175 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -[176 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[177 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -[178 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[179 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -[17a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[17b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[17c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[17d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[17e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -[17f 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -[180 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[181 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[182 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[183 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[184 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -[185 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[186 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[187 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]Move state message READY -[188 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0]Fabric side Handling ChaincodeMessage of type: READY in state established -[189 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [170abde0]Entered state ready -[18a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:170abde0-28db-47ea-9e59-f7792c88a556, channelID: -[18b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]sending state message READY -[18c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Received message READY from shim -[18d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [170abde0]Handling ChaincodeMessage of type: READY(state:established) -[18e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[18f 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[190 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[191 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[192 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [170abde0]Inside sendExecuteMessage. Message INIT -[193 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[194 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [170abde0]sendExecuteMsg trigger event INIT -[195 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]Move state message INIT -[196 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[197 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[198 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]sending state message INIT -[199 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Received message INIT from shim -[19a 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [170abde0]Handling ChaincodeMessage of type: INIT(state:ready) -[19b 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[19c 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [170abde0]Received INIT, initializing chaincode -[19d 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[19e 01-05 06:36:22.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Init get response status: 200 -[19f 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Init succeeded. Sending COMPLETED -[1a0 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]Move state message COMPLETED -[1a1 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [170abde0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[1a2 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [170abde0]send state message COMPLETED -[1a3 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [170abde0]Received message COMPLETED from shim -[1a4 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[1a5 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [170abde0-28db-47ea-9e59-f7792c88a556]HandleMessage- COMPLETED. Notify -[1a6 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:170abde0-28db-47ea-9e59-f7792c88a556, channelID: -[1a7 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[1a8 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[1a9 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -[1aa 01-05 06:36:22.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -[1ab 01-05 06:36:22.60 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] -[1ac 01-05 06:36:22.60 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] -[1ad 01-05 06:36:22.62 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' -[1ae 01-05 06:36:22.62 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' -[1af 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -[1b0 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -[1b1 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -[1b2 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -[1b3 01-05 06:36:22.62 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' -[1b4 01-05 06:36:22.62 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' -[1b5 01-05 06:36:22.62 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' -[1b6 01-05 06:36:22.62 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -[1b7 01-05 06:36:22.62 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' -[1b8 01-05 06:36:22.67 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' -[1b9 01-05 06:36:22.67 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' -[1ba 01-05 06:36:22.68 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' -[1bb 01-05 06:36:22.68 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -[1bc 01-05 06:36:22.68 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' -[1bd 01-05 06:36:27.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37106 -[1be 01-05 06:36:27.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420258960 -[1bf 01-05 06:36:27.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[1c0 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1c1 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[1c2 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[1c3 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1c4 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420149680, header 0xc420258ae0 -[1c5 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[1c6 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0 -[1c7 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0 channel id: -[1c8 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0 channel id: version: 1.1.0 -[1c9 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0,syscc=true,proposal=0xc420149680,canname=cscc:1.1.0 -[1ca 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -[1cb 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[1cc 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -[1cd 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0cbeb331]Inside sendExecuteMessage. Message TRANSACTION -[1ce 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[1cf 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[1d0 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0cbeb331]sendExecuteMsg trigger event TRANSACTION -[1d1 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0cbeb331]Move state message TRANSACTION -[1d2 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0cbeb331]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1d3 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1d4 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0cbeb331]sending state message TRANSACTION -[1d5 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]Received message TRANSACTION from shim -[1d6 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0cbeb331]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1d7 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0cbeb331]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1d8 01-05 06:36:27.09 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1d9 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1da 01-05 06:36:27.10 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 -[1db 01-05 06:36:27.10 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/] -[1dc 01-05 06:36:27.10 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 -[1dd 01-05 06:36:27.10 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 -[1de 01-05 06:36:27.10 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 -[1df 01-05 06:36:27.10 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 -[1e0 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[1e1 01-05 06:36:27.10 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 -[1e2 01-05 06:36:27.10 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 -[1e3 01-05 06:36:27.10 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 -[1e4 01-05 06:36:27.10 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)(0xc42024a940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[1e5 01-05 06:36:27.10 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]] -[1e6 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -[1e7 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -[1e8 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -[1e9 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -[1ea 01-05 06:36:27.10 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] -[1eb 01-05 06:36:27.10 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] -[1ec 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[1ed 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[1ee 01-05 06:36:27.10 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] -[1ef 01-05 06:36:27.10 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{} -[1f0 01-05 06:36:27.10 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 -[1f1 01-05 06:36:27.10 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 = [] -[1f2 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[1f3 01-05 06:36:27.10 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" > -[1f4 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[1f5 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1f6 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1f7 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1f8 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1f9 01-05 06:36:27.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[1fa 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[1fb 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[1fc 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[1fd 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[1fe 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[1ff 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[200 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[201 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[202 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[203 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[204 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[205 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[206 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[207 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[208 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[209 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[20a 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[20b 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[20c 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[20d 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[20e 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[20f 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[210 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[211 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[212 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[213 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[214 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[215 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[216 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[217 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[218 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[219 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[21a 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[21b 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[21c 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[21d 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[21e 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[21f 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[220 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[221 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[222 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[223 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[224 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[225 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[226 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[227 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[228 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[229 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[22a 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[22b 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[22c 01-05 06:36:27.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[22d 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[22e 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[22f 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[230 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[231 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[232 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[233 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[234 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[235 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[236 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[237 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[238 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[239 01-05 06:36:27.12 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 -[23a 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[23b 01-05 06:36:27.12 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 [] -[23c 01-05 06:36:27.12 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 -[23d 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[23e 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[23f 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[240 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -[241 01-05 06:36:27.12 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] -[242 01-05 06:36:27.12 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{0x37, 0x90, 0xdc, 0x65, 0xd1, 0xf4, 0x82, 0x6d, 0x29, 0x78, 0x81, 0x11, 0x1e, 0x54, 0x29, 0xf6, 0x50, 0xd8, 0xc6, 0x61, 0x5f, 0xb2, 0x46, 0x71, 0x49, 0x75, 0xd5, 0xf2, 0x84, 0xf5, 0xc, 0x99} txOffsets= -txId= locPointer=offset=38, bytesLength=12077 +[171 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock +[172 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock +[173 01-13 06:14:04.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 +[174 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) +[175 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 +[176 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[177 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 +[178 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[179 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 +[17a 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[17b 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[17c 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[17d 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[17e 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 +[17f 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED +[180 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[181 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[182 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[183 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[184 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed +[185 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[186 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[187 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]Move state message READY +[188 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631]Fabric side Handling ChaincodeMessage of type: READY in state established +[189 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0eda5631]Entered state ready +[18a 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0eda5631-1e4d-47cc-970f-c17a00ae41bc, channelID: +[18b 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]sending state message READY +[18c 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Received message READY from shim +[18d 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eda5631]Handling ChaincodeMessage of type: READY(state:established) +[18e 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[18f 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[190 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[191 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[192 01-13 06:14:04.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0eda5631]Inside sendExecuteMessage. Message INIT +[193 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[194 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0eda5631]sendExecuteMsg trigger event INIT +[195 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]Move state message INIT +[196 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[197 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[198 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]sending state message INIT +[199 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Received message INIT from shim +[19a 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eda5631]Handling ChaincodeMessage of type: INIT(state:ready) +[19b 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[19c 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0eda5631]Received INIT, initializing chaincode +[19d 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[19e 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Init get response status: 200 +[19f 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Init succeeded. Sending COMPLETED +[1a0 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]Move state message COMPLETED +[1a1 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eda5631]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1a2 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eda5631]send state message COMPLETED +[1a3 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eda5631]Received message COMPLETED from shim +[1a4 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1a5 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eda5631-1e4d-47cc-970f-c17a00ae41bc]HandleMessage- COMPLETED. Notify +[1a6 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0eda5631-1e4d-47cc-970f-c17a00ae41bc, channelID: +[1a7 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[1a8 01-13 06:14:04.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[1a9 01-13 06:14:04.40 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +[1aa 01-13 06:14:04.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes +[1ab 01-13 06:14:04.40 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] +[1ac 01-13 06:14:04.41 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] +[1ad 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +[1ae 01-13 06:14:04.41 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' +[1af 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +[1b0 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +[1b1 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +[1b2 01-13 06:14:04.41 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +[1b3 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +[1b4 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +[1b5 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +[1b6 01-13 06:14:04.42 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' +[1b7 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +[1b8 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +[1b9 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +[1ba 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +[1bb 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +[1bc 01-13 06:14:04.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +[1bd 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40024 +[1be 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c7bbc0 +[1bf 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[1c0 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1c1 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1c2 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1c3 01-13 06:14:10.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1c4 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c8b450, header 0xc421e34000 +[1c5 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[1c6 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e +[1c7 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e channel id: +[1c8 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e channel id: version: 1.1.0 +[1c9 01-13 06:14:10.77 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.1.0,txid=17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e,syscc=true,proposal=0xc421c8b450,canname=cscc:1.1.0 +[1ca 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +[1cb 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1cc 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +[1cd 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17d79eb8]Inside sendExecuteMessage. Message TRANSACTION +[1ce 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1cf 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1d0 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17d79eb8]sendExecuteMsg trigger event TRANSACTION +[1d1 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17d79eb8]Move state message TRANSACTION +[1d2 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17d79eb8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1d3 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1d4 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17d79eb8]sending state message TRANSACTION +[1d5 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]Received message TRANSACTION from shim +[1d6 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17d79eb8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1d7 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17d79eb8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1d8 01-13 06:14:10.77 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +[1d9 01-13 06:14:10.78 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +[1da 01-13 06:14:10.78 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 +[1db 01-13 06:14:10.78 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/] +[1dc 01-13 06:14:10.78 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 +[1dd 01-13 06:14:10.78 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 +[1de 01-13 06:14:10.78 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 +[1df 01-13 06:14:10.78 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 +[1e0 01-13 06:14:10.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[1e1 01-13 06:14:10.79 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 +[1e2 01-13 06:14:10.79 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 +[1e3 01-13 06:14:10.79 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 +[1e4 01-13 06:14:10.79 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)(0xc4218624c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[1e5 01-13 06:14:10.79 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]] +[1e6 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +[1e7 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +[1e8 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +[1e9 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +[1ea 01-13 06:14:10.79 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] +[1eb 01-13 06:14:10.79 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] +[1ec 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[1ed 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[1ee 01-13 06:14:10.79 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] +[1ef 01-13 06:14:10.79 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{} +[1f0 01-13 06:14:10.79 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 +[1f1 01-13 06:14:10.79 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 = [] +[1f2 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[1f3 01-13 06:14:10.79 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" > +[1f4 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[1f5 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1f6 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1f7 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1f8 01-13 06:14:10.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1f9 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[1fa 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[1fb 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[1fc 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[1fd 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[1fe 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[1ff 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[200 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[201 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[202 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[203 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[204 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[205 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[206 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[207 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[208 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[209 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[20a 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[20b 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[20c 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[20d 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[20e 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[20f 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[210 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[211 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[212 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[213 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[214 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[215 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[216 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[217 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[218 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[219 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[21a 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[21b 01-13 06:14:10.80 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[21c 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[21d 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[21e 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[21f 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[220 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[221 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[222 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[223 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[224 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[225 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[226 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[227 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[228 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[229 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[22a 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[22b 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[22c 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[22d 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[22e 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[22f 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[230 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[231 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[232 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[233 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[234 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[235 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[236 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[237 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[238 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[239 01-13 06:14:10.81 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 +[23a 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[23b 01-13 06:14:10.81 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 [] +[23c 01-13 06:14:10.81 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 +[23d 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[23e 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[23f 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[240 01-13 06:14:10.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +[241 01-13 06:14:10.82 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] +[242 01-13 06:14:10.82 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{0x2b, 0x6c, 0xe7, 0x87, 0x65, 0x17, 0x50, 0x45, 0xbc, 0x28, 0x34, 0x5f, 0xfa, 0x4, 0x27, 0x67, 0xe6, 0x33, 0x65, 0xb5, 0xd8, 0x38, 0x33, 0x36, 0x5d, 0x9c, 0xf, 0x5d, 0xd2, 0xb7, 0xab, 0xd3} txOffsets= +txId= locPointer=offset=38, bytesLength=12078 ] -[243 01-05 06:36:27.12 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 -[244 01-05 06:36:27.12 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 -[245 01-05 06:36:27.12 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] -[246 01-05 06:36:27.12 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -[247 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] -[248 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -[249 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -[24a 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[24b 01-05 06:36:27.13 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 -[24c 01-05 06:36:27.13 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}] -[24d 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[24e 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -[24f 01-05 06:36:27.13 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 -[250 01-05 06:36:27.13 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 -[251 01-05 06:36:27.13 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] -[252 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[253 01-05 06:36:27.13 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 = [a6b7af12-2471-42a3-b607-185375671b19] -[254 01-05 06:36:27.13 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 -[255 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [a6b7af12-2471-42a3-b607-185375671b19] -[256 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[257 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[258 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[259 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[25a 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[25b 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[25c 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[25d 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[25e 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[25f 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[260 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[261 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[262 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[263 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[264 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[265 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[266 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[267 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[268 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[269 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[26a 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[26b 01-05 06:36:27.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[26c 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[26d 01-05 06:36:27.14 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 -[26e 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[26f 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[270 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[271 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[272 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[273 01-05 06:36:27.14 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 -[274 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[275 01-05 06:36:27.14 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 -[276 01-05 06:36:27.14 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 -[277 01-05 06:36:27.14 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 -[278 01-05 06:36:27.14 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 -[279 01-05 06:36:27.14 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 -[27a 01-05 06:36:27.14 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 -[27b 01-05 06:36:27.14 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 -[27c 01-05 06:36:27.14 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 -[27d 01-05 06:36:27.14 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 -[27e 01-05 06:36:27.14 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 -[27f 01-05 06:36:27.14 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 -[280 01-05 06:36:27.14 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 -[281 01-05 06:36:27.14 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 -[282 01-05 06:36:27.14 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 -[283 01-05 06:36:27.14 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 -[284 01-05 06:36:27.14 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 -[285 01-05 06:36:27.14 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 -[286 01-05 06:36:27.14 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 -[287 01-05 06:36:27.14 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 -[288 01-05 06:36:27.14 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 -[289 01-05 06:36:27.14 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 -[28a 01-05 06:36:27.14 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 -[28b 01-05 06:36:27.14 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 -[28c 01-05 06:36:27.14 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 -[28d 01-05 06:36:27.14 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 -[28e 01-05 06:36:27.14 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 -[28f 01-05 06:36:27.14 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 -[290 01-05 06:36:27.14 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 -[291 01-05 06:36:27.14 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 -[292 01-05 06:36:27.14 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 -[293 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[294 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[295 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[296 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[297 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[298 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[299 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[29a 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[29b 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[29c 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[29d 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[29e 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[29f 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[2a0 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[2a1 01-05 06:36:27.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[2a2 01-05 06:36:27.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[2a3 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[2a4 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[2a5 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[2a6 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[2a7 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -[2a8 01-05 06:36:27.16 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 -[2a9 01-05 06:36:27.16 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 -[2aa 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[2ab 01-05 06:36:27.16 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -[2ac 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2ad 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a28330ab-0d33-437a-8aa2-fef30c9a890e] -[2ae 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=a28330ab-0d33-437a-8aa2-fef30c9a890e,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[2af 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -[2b0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2b1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -[2b2 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a28330ab]Inside sendExecuteMessage. Message INIT -[2b3 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2b4 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a28330ab]sendExecuteMsg trigger event INIT -[2b5 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a28330ab]Move state message INIT -[2b6 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a28330ab]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2b7 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2b8 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a28330ab]sending state message INIT -[2b9 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Received message INIT from shim -[2ba 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a28330ab]Handling ChaincodeMessage of type: INIT(state:ready) -[2bb 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2bc 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a28330ab]Received INIT, initializing chaincode -[2bd 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[2be 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Init get response status: 200 -[2bf 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Init succeeded. Sending COMPLETED -[2c0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]Move state message COMPLETED -[2c1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a28330ab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c2 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a28330ab]send state message COMPLETED -[2c3 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a28330ab]Received message COMPLETED from shim -[2c4 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a28330ab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2c5 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a28330ab-0d33-437a-8aa2-fef30c9a890e]HandleMessage- COMPLETED. Notify -[2c6 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a28330ab-0d33-437a-8aa2-fef30c9a890e, channelID:businesschannel -[2c7 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2c8 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[2c9 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a28330ab-0d33-437a-8aa2-fef30c9a890e] -[2ca 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2cb 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [dc11855a-3b5b-466a-bcd2-1ca282cbcf6d] -[2cc 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=dc11855a-3b5b-466a-bcd2-1ca282cbcf6d,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[2cd 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[2ce 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2cf 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[2d0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dc11855a]Inside sendExecuteMessage. Message INIT -[2d1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2d2 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dc11855a]sendExecuteMsg trigger event INIT -[2d3 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc11855a]Move state message INIT -[2d4 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dc11855a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2d5 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2d6 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc11855a]sending state message INIT -[2d7 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Received message INIT from shim -[2d8 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dc11855a]Handling ChaincodeMessage of type: INIT(state:ready) -[2d9 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2da 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dc11855a]Received INIT, initializing chaincode -[2db 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Init get response status: 200 -[2dc 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Init succeeded. Sending COMPLETED -[2dd 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]Move state message COMPLETED -[2de 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dc11855a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2df 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dc11855a]send state message COMPLETED -[2e0 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dc11855a]Received message COMPLETED from shim -[2e1 01-05 06:36:27.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dc11855a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2e2 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dc11855a-3b5b-466a-bcd2-1ca282cbcf6d]HandleMessage- COMPLETED. Notify -[2e3 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:dc11855a-3b5b-466a-bcd2-1ca282cbcf6d, channelID:businesschannel -[2e4 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2e5 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[2e6 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [dc11855a-3b5b-466a-bcd2-1ca282cbcf6d] -[2e7 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2e8 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2d929a8f-a9f0-40d1-935a-c70285de2cce] -[2e9 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=2d929a8f-a9f0-40d1-935a-c70285de2cce,syscc=true,proposal=0x0,canname=escc:1.1.0 -[2ea 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[2eb 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2ec 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[2ed 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2d929a8f]Inside sendExecuteMessage. Message INIT -[2ee 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2ef 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2d929a8f]sendExecuteMsg trigger event INIT -[2f0 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d929a8f]Move state message INIT -[2f1 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d929a8f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2f2 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2f3 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d929a8f]sending state message INIT -[2f4 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Received message INIT from shim -[2f5 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d929a8f]Handling ChaincodeMessage of type: INIT(state:ready) -[2f6 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2f7 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2d929a8f]Received INIT, initializing chaincode -[2f8 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[2f9 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Init get response status: 200 -[2fa 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Init succeeded. Sending COMPLETED -[2fb 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]Move state message COMPLETED -[2fc 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d929a8f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2fd 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d929a8f]send state message COMPLETED -[2fe 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d929a8f]Received message COMPLETED from shim -[2ff 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d929a8f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[300 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2d929a8f-a9f0-40d1-935a-c70285de2cce]HandleMessage- COMPLETED. Notify -[301 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2d929a8f-a9f0-40d1-935a-c70285de2cce, channelID:businesschannel -[302 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[303 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -[304 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [2d929a8f-a9f0-40d1-935a-c70285de2cce] -[305 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[306 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bbb85879-0f94-46e3-95db-0574933cb0c3] -[307 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=bbb85879-0f94-46e3-95db-0574933cb0c3,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[308 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[309 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[30a 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[30b 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bbb85879]Inside sendExecuteMessage. Message INIT -[30c 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[30d 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bbb85879]sendExecuteMsg trigger event INIT -[30e 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbb85879]Move state message INIT -[30f 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbb85879]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[310 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[311 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbb85879]sending state message INIT -[312 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Received message INIT from shim -[313 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbb85879]Handling ChaincodeMessage of type: INIT(state:ready) -[314 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[315 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bbb85879]Received INIT, initializing chaincode -[316 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Init get response status: 200 -[317 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Init succeeded. Sending COMPLETED -[318 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]Move state message COMPLETED -[319 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bbb85879]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[31a 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bbb85879]send state message COMPLETED -[31b 01-05 06:36:27.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bbb85879]Received message COMPLETED from shim -[31c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbb85879]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[31d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bbb85879-0f94-46e3-95db-0574933cb0c3]HandleMessage- COMPLETED. Notify -[31e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bbb85879-0f94-46e3-95db-0574933cb0c3, channelID:businesschannel -[31f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[320 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -[321 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [bbb85879-0f94-46e3-95db-0574933cb0c3] -[322 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[323 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c88c5c08-0038-45b1-836e-1065f3ee3a6d] -[324 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=c88c5c08-0038-45b1-836e-1065f3ee3a6d,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[325 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -[326 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[327 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[328 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c88c5c08]Inside sendExecuteMessage. Message INIT -[329 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[32a 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c88c5c08]sendExecuteMsg trigger event INIT -[32b 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c88c5c08]Move state message INIT -[32c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c88c5c08]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[32d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[32e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c88c5c08]sending state message INIT -[32f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Received message INIT from shim -[330 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c88c5c08]Handling ChaincodeMessage of type: INIT(state:ready) -[331 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[332 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c88c5c08]Received INIT, initializing chaincode -[333 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[334 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Init get response status: 200 -[335 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Init succeeded. Sending COMPLETED -[336 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]Move state message COMPLETED -[337 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c88c5c08]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[338 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c88c5c08]send state message COMPLETED -[339 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c88c5c08]Received message COMPLETED from shim -[33a 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c88c5c08]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[33b 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c88c5c08-0038-45b1-836e-1065f3ee3a6d]HandleMessage- COMPLETED. Notify -[33c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c88c5c08-0038-45b1-836e-1065f3ee3a6d, channelID:businesschannel -[33d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[33e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[33f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [c88c5c08-0038-45b1-836e-1065f3ee3a6d] -[340 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -[341 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -[342 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -[343 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -[344 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -[345 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -[346 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -[347 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]Transaction completed. Sending COMPLETED -[348 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]Move state message COMPLETED -[349 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0cbeb331]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[34a 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0cbeb331]send state message COMPLETED -[34b 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0cbeb331]Received message COMPLETED from shim -[34c 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0cbeb331]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[34d 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0]HandleMessage- COMPLETED. Notify -[34e 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0cbeb331e6a1c162323cb167fbb85b3aaf6dc7fdd5212af53eefbffa82b295e0, channelID: -[34f 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[350 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[351 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[352 01-05 06:36:27.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37106) -[353 01-05 06:36:33.17 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 -[354 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[355 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[356 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[357 01-05 06:36:33.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[358 01-05 06:36:33.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[359 01-05 06:36:33.23 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -[35a 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -[35b 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[35c 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[35d 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422624b00 env 0xc422611500 txn 0 -[35e 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422611500 -[35f 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -[360 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[361 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[363 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -[362 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -[364 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[365 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[366 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42272c000, header channel_header:"\010\001\032\006\010\354\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\335B<\303\004\t+\350\267OJ:\256%\307O.\026\303K\370\305P\261" -[367 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[368 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[369 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -[36a 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[36b 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[36c 01-05 06:36:33.24 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 -[36d 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[36e 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[36f 01-05 06:36:33.24 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 -[370 01-05 06:36:33.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[371 01-05 06:36:33.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[372 01-05 06:36:33.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[373 01-05 06:36:33.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[374 01-05 06:36:33.25 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 -[375 01-05 06:36:33.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[376 01-05 06:36:33.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[377 01-05 06:36:33.25 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 -[378 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[379 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[37a 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[37b 01-05 06:36:33.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[37c 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[37d 01-05 06:36:33.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[37e 01-05 06:36:33.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" -[37f 01-05 06:36:33.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" -[380 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[381 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[382 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[383 01-05 06:36:33.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" -[385 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[384 01-05 06:36:33.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37122 -[386 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[388 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[389 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[387 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228541e0 -[38a 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[38b 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[38d 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[38c 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[38e 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[38f 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[390 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[391 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[392 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[393 01-05 06:36:33.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[394 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[396 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[397 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[398 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[399 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[395 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[39a 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[39c 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[39b 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[39d 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[39f 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[3a0 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4227a0af0, header 0xc422854390 -[3a1 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[3a2 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4 -[39e 01-05 06:36:33.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3a3 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4 channel id: -[3a4 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3a5 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -[3a7 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4 channel id: version: 1.1.0 -[3a6 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[3a8 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4,syscc=true,proposal=0xc4227a0af0,canname=lscc:1.1.0 -[3aa 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[3a9 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[3ab 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[3ac 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[3ad 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ff328f5]Inside sendExecuteMessage. Message TRANSACTION -[3ae 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[3af 01-05 06:36:33.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[3b0 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ff328f5]sendExecuteMsg trigger event TRANSACTION -[3b1 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ff328f5]Move state message TRANSACTION -[3b2 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2ff328f5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[3b3 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[3b4 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ff328f5]sending state message TRANSACTION -[3b5 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]Received message TRANSACTION from shim -[3b6 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ff328f5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[3b7 01-05 06:36:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2ff328f5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[3b8 01-05 06:36:33.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3ba 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3bb 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3bc 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3b9 01-05 06:36:33.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]Transaction completed. Sending COMPLETED -[3bd 01-05 06:36:33.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[3be 01-05 06:36:33.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3c0 01-05 06:36:33.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[3bf 01-05 06:36:33.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]Move state message COMPLETED -[3c2 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ff328f5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[3c3 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ff328f5]send state message COMPLETED -[3c1 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[3c4 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[3c5 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[3c6 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[3c7 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[3c8 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[3c9 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3ca 01-05 06:36:33.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3cb 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[3cc 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3cd 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3ce 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3cf 01-05 06:36:33.37 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 -[3d0 01-05 06:36:33.37 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 -[3d1 01-05 06:36:33.37 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 -[3d2 01-05 06:36:33.37 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 -[3d3 01-05 06:36:33.37 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 -[3d4 01-05 06:36:33.37 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[3d5 01-05 06:36:33.37 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 -[3d6 01-05 06:36:33.37 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 -[3d7 01-05 06:36:33.38 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 -[3d9 01-05 06:36:33.38 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 -[3da 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[3db 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3dc 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3dd 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3de 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[3df 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[3e0 01-05 06:36:33.38 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 -[3e1 01-05 06:36:33.38 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 -[3e2 01-05 06:36:33.38 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 -[3e3 01-05 06:36:33.38 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 -[3e4 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[3e5 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[3e6 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[3e7 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[3e8 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[3e9 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3ea 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3eb 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3ec 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3ed 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[3ee 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[3ef 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[3f0 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[3f1 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[3f2 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3f3 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3d8 01-05 06:36:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ff328f5]Received message COMPLETED from shim -[3f4 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2ff328f5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[3f5 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4]HandleMessage- COMPLETED. Notify -[3f6 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2ff328f54b1091b9e0f560bdb25ae6f8297aa19d782b4db87b332bede796eef4, channelID: -[3f7 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[3f8 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3f9 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[3fa 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[3fb 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[3fc 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[3fd 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[3fe 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[3ff 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[400 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[401 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[402 01-05 06:36:33.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37122) -[403 01-05 06:36:33.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[404 01-05 06:36:33.54 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[405 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[406 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[407 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[408 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[409 01-05 06:36:33.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422624b00 env 0xc422611500 txn 0 -[40a 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[40b 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[40c 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[40d 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -[40e 01-05 06:36:33.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[40f 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -[410 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[411 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[412 01-05 06:36:33.58 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] -[413 01-05 06:36:33.58 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{} -[414 01-05 06:36:33.58 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 -[415 01-05 06:36:33.58 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 = [] -[416 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[417 01-05 06:36:33.58 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" > -[418 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[419 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[41a 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[41b 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[41c 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[41d 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[41e 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[41f 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[420 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[421 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[422 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[423 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[424 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[425 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[426 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[427 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[428 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[429 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[42a 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[42b 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[42c 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[42d 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[42e 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[42f 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[430 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[431 01-05 06:36:33.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[432 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[433 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[434 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[435 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[436 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[437 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[438 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[439 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[43a 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[43b 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[43c 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[43d 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[43e 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[43f 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[440 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[441 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[442 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[443 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[444 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[445 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[446 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[447 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[448 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[449 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[44a 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[44b 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[44c 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[44d 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[44e 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[44f 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[450 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[451 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[452 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[453 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[454 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[455 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[456 01-05 06:36:33.59 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[457 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[458 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[459 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[45a 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[45b 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[45c 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[45d 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[45e 01-05 06:36:33.60 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 -[45f 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[460 01-05 06:36:33.60 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 [] -[461 01-05 06:36:33.60 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 -[462 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[463 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[464 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[465 01-05 06:36:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -[466 01-05 06:36:33.62 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] -[467 01-05 06:36:33.62 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{0x64, 0x44, 0x46, 0xb5, 0x6, 0xe, 0x98, 0x70, 0x34, 0xa6, 0xf5, 0x8e, 0xcf, 0x84, 0x9, 0x33, 0x90, 0x18, 0x9c, 0x49, 0x1a, 0x66, 0xf, 0xe3, 0xb7, 0x98, 0x33, 0x20, 0x74, 0x3b, 0xd7, 0x6d} txOffsets= +[243 01-13 06:14:10.82 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=12078] for tx ID: [] to index +[244 01-13 06:14:10.82 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=12078] for tx number:[0] ID: [] to blockNumTranNum index +[245 01-13 06:14:10.82 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=[12122], isChainEmpty=[false], lastBlockNumber=[0] +[246 01-13 06:14:10.82 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] +[247 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +[248 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +[249 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +[24a 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[24b 01-13 06:14:10.83 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 +[24c 01-13 06:14:10.83 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}] +[24d 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[24e 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +[24f 01-13 06:14:10.83 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 +[250 01-13 06:14:10.83 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 +[251 01-13 06:14:10.83 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] +[252 01-13 06:14:10.83 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +[253 01-13 06:14:10.83 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 = [18ee522b-ebeb-46b9-959a-3689f334a0f2] +[254 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +[255 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [18ee522b-ebeb-46b9-959a-3689f334a0f2] +[256 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[257 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[258 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[259 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[25a 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[25b 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[25c 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[25d 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[25e 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[25f 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[260 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[261 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[262 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[263 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[264 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[265 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[266 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[267 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[268 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[269 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[26a 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[26b 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[26c 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[26d 01-13 06:14:10.84 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 +[26e 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[26f 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[270 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[271 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[272 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[273 01-13 06:14:10.84 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 +[274 01-13 06:14:10.84 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[275 01-13 06:14:10.84 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 +[276 01-13 06:14:10.84 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 +[277 01-13 06:14:10.84 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 +[278 01-13 06:14:10.84 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 +[279 01-13 06:14:10.84 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 +[27a 01-13 06:14:10.84 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 +[27b 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[27c 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[27d 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[27e 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[27f 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[280 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[281 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[282 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[283 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[284 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[285 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[286 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[287 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[288 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[289 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[28a 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[28b 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[28c 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[28d 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[28e 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[28f 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[290 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[291 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[292 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[293 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[294 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[295 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[296 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[297 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[298 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[299 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[29a 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[29b 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[29c 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[29d 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[29e 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[29f 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[2a0 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[2a1 01-13 06:14:10.85 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[2a2 01-13 06:14:10.86 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[2a3 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[2a4 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[2a5 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[2a6 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[2a7 01-13 06:14:10.87 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +[2a8 01-13 06:14:10.87 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 +[2a9 01-13 06:14:10.87 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 +[2aa 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +[2ab 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func4 -> DEBU Deploying system CC, for chain +[2ac 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2ad 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4e6838e1-a5d5-456b-9860-316246ac46d4] +[2ae 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.1.0,txid=4e6838e1-a5d5-456b-9860-316246ac46d4,syscc=true,proposal=0x0,canname=cscc:1.1.0 +[2af 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 +[2b0 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2b1 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 +[2b2 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6838e1]Inside sendExecuteMessage. Message INIT +[2b3 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2b4 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6838e1]sendExecuteMsg trigger event INIT +[2b5 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6838e1]Move state message INIT +[2b6 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e6838e1]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2b7 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2b8 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6838e1]sending state message INIT +[2b9 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Received message INIT from shim +[2ba 01-13 06:14:10.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6838e1]Handling ChaincodeMessage of type: INIT(state:ready) +[2bb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2bc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4e6838e1]Received INIT, initializing chaincode +[2bd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[2be 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Init get response status: 200 +[2bf 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Init succeeded. Sending COMPLETED +[2c0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]Move state message COMPLETED +[2c1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6838e1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2c2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6838e1]send state message COMPLETED +[2c3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6838e1]Received message COMPLETED from shim +[2c4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e6838e1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2c5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4e6838e1-a5d5-456b-9860-316246ac46d4]HandleMessage- COMPLETED. Notify +[2c6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4e6838e1-a5d5-456b-9860-316246ac46d4, channelID:businesschannel +[2c7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2c8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[2c9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [4e6838e1-a5d5-456b-9860-316246ac46d4] +[2ca 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2cb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [27896b2c-3f01-4ed0-8a53-da7aa0bd25bb] +[2cc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=27896b2c-3f01-4ed0-8a53-da7aa0bd25bb,syscc=true,proposal=0x0,canname=lscc:1.1.0 +[2cd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[2ce 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2cf 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[2d0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [27896b2c]Inside sendExecuteMessage. Message INIT +[2d1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2d2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [27896b2c]sendExecuteMsg trigger event INIT +[2d3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27896b2c]Move state message INIT +[2d4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27896b2c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2d5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2d6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27896b2c]sending state message INIT +[2d7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Received message INIT from shim +[2d8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27896b2c]Handling ChaincodeMessage of type: INIT(state:ready) +[2d9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2da 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [27896b2c]Received INIT, initializing chaincode +[2db 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Init get response status: 200 +[2dc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Init succeeded. Sending COMPLETED +[2dd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]Move state message COMPLETED +[2de 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [27896b2c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2df 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [27896b2c]send state message COMPLETED +[2e0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [27896b2c]Received message COMPLETED from shim +[2e1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27896b2c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2e2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [27896b2c-3f01-4ed0-8a53-da7aa0bd25bb]HandleMessage- COMPLETED. Notify +[2e3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:27896b2c-3f01-4ed0-8a53-da7aa0bd25bb, channelID:businesschannel +[2e4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2e5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[2e6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [27896b2c-3f01-4ed0-8a53-da7aa0bd25bb] +[2e7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2e8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333] +[2e9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333,syscc=true,proposal=0x0,canname=escc:1.1.0 +[2ea 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[2eb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2ec 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[2ed 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a5ff9b4]Inside sendExecuteMessage. Message INIT +[2ee 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2ef 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8a5ff9b4]sendExecuteMsg trigger event INIT +[2f0 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a5ff9b4]Move state message INIT +[2f1 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a5ff9b4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2f2 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2f3 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a5ff9b4]sending state message INIT +[2f4 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Received message INIT from shim +[2f5 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a5ff9b4]Handling ChaincodeMessage of type: INIT(state:ready) +[2f6 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2f7 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8a5ff9b4]Received INIT, initializing chaincode +[2f8 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[2f9 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Init get response status: 200 +[2fa 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Init succeeded. Sending COMPLETED +[2fb 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]Move state message COMPLETED +[2fc 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a5ff9b4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2fd 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a5ff9b4]send state message COMPLETED +[2fe 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a5ff9b4]Received message COMPLETED from shim +[2ff 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a5ff9b4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[300 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333]HandleMessage- COMPLETED. Notify +[301 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333, channelID:businesschannel +[302 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[303 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +[304 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8a5ff9b4-1523-4e42-bd4f-dae9a7e8c333] +[305 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[306 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [018ab8c8-44d2-49db-80d0-145ce5535978] +[307 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=018ab8c8-44d2-49db-80d0-145ce5535978,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[308 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[309 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[30a 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[30b 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [018ab8c8]Inside sendExecuteMessage. Message INIT +[30c 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[30d 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [018ab8c8]sendExecuteMsg trigger event INIT +[30e 01-13 06:14:10.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [018ab8c8]Move state message INIT +[30f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [018ab8c8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[310 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[311 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [018ab8c8]sending state message INIT +[312 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Received message INIT from shim +[313 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [018ab8c8]Handling ChaincodeMessage of type: INIT(state:ready) +[314 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[315 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [018ab8c8]Received INIT, initializing chaincode +[316 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Init get response status: 200 +[317 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Init succeeded. Sending COMPLETED +[318 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]Move state message COMPLETED +[319 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [018ab8c8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[31a 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [018ab8c8]send state message COMPLETED +[31b 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [018ab8c8]Received message COMPLETED from shim +[31c 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [018ab8c8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[31d 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [018ab8c8-44d2-49db-80d0-145ce5535978]HandleMessage- COMPLETED. Notify +[31e 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:018ab8c8-44d2-49db-80d0-145ce5535978, channelID:businesschannel +[31f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[320 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +[321 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [018ab8c8-44d2-49db-80d0-145ce5535978] +[322 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[323 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [815bf74a-5573-4e5d-a6c9-8f93f1691593] +[324 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=815bf74a-5573-4e5d-a6c9-8f93f1691593,syscc=true,proposal=0x0,canname=qscc:1.1.0 +[325 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[326 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[327 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[328 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [815bf74a]Inside sendExecuteMessage. Message INIT +[329 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[32a 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [815bf74a]sendExecuteMsg trigger event INIT +[32b 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [815bf74a]Move state message INIT +[32c 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [815bf74a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[32d 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[32e 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [815bf74a]sending state message INIT +[32f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Received message INIT from shim +[330 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [815bf74a]Handling ChaincodeMessage of type: INIT(state:ready) +[331 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[332 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [815bf74a]Received INIT, initializing chaincode +[333 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[334 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Init get response status: 200 +[335 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Init succeeded. Sending COMPLETED +[336 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]Move state message COMPLETED +[337 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [815bf74a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[338 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [815bf74a]send state message COMPLETED +[339 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [815bf74a]Received message COMPLETED from shim +[33a 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [815bf74a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[33b 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [815bf74a-5573-4e5d-a6c9-8f93f1691593]HandleMessage- COMPLETED. Notify +[33c 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:815bf74a-5573-4e5d-a6c9-8f93f1691593, channelID:businesschannel +[33d 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[33e 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[33f 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [815bf74a-5573-4e5d-a6c9-8f93f1691593] +[340 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func4.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled +[341 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry +[342 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit +[343 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry +[344 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 +[345 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully +[346 01-13 06:14:10.90 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit +[347 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]Transaction completed. Sending COMPLETED +[348 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]Move state message COMPLETED +[349 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17d79eb8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[34a 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17d79eb8]send state message COMPLETED +[34b 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17d79eb8]Received message COMPLETED from shim +[34c 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17d79eb8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[34d 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e]HandleMessage- COMPLETED. Notify +[34e 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:17d79eb829a9e7edb4e909c9cdfe4afea8a362ef181d4907be55afec0800df0e, channelID: +[34f 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[350 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[351 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[352 01-13 06:14:10.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40024) +[353 01-13 06:14:16.89 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 +[354 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +[355 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +[356 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +[357 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +[358 01-13 06:14:16.90 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +[359 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +[35a 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +[35b 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[35c 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[35d 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4225d9bc0 env 0xc4226048d0 txn 0 +[35e 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4226048d0 +[35f 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +[360 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[361 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[362 01-13 06:14:16.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +[363 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[364 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[365 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422621000, header channel_header:"\010\001\032\006\010\265\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\200\037\253\"X\020!\270\365p\016S\370\rjc]\214o>\007\237\217^" +[366 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[367 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[368 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[369 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[36a 01-13 06:14:16.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[36c 01-13 06:14:16.93 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 +[36d 01-13 06:14:16.93 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 +[36e 01-13 06:14:16.93 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 +[36f 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[370 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[371 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[372 01-13 06:14:16.93 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 +[373 01-13 06:14:16.93 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 +[374 01-13 06:14:16.93 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 +[375 01-13 06:14:16.93 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 +[376 01-13 06:14:16.93 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 +[377 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[378 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[379 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[37a 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[37b 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[37c 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[37d 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[37e 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[37f 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[380 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[381 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[382 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[383 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[384 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[385 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[386 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[387 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[388 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[389 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[36b 01-13 06:14:16.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +[38b 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +[38a 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[38c 01-13 06:14:16.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[38d 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[38e 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[38f 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[390 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[391 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[392 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[393 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[394 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[395 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[396 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[397 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[398 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[399 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[39a 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[39b 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[39c 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[39d 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[39e 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[39f 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3a0 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[3a1 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3a2 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3a3 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3a4 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[3a5 01-13 06:14:16.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[3a6 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[3a7 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3a8 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3a9 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3aa 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[3ab 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[3ac 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3ad 01-13 06:14:16.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3ae 01-13 06:14:16.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 +[3af 01-13 06:14:16.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 +[3b0 01-13 06:14:16.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 +[3b1 01-13 06:14:16.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 +[3b2 01-13 06:14:16.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 +[3b3 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3b4 01-13 06:14:16.97 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 +[3b5 01-13 06:14:16.97 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 +[3b6 01-13 06:14:16.97 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 +[3b7 01-13 06:14:16.97 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 +[3b8 01-13 06:14:16.97 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 +[3b9 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[3ba 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[3bb 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[3bc 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[3bd 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[3be 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[3bf 01-13 06:14:16.97 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 +[3c0 01-13 06:14:16.97 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 +[3c1 01-13 06:14:16.97 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 +[3c2 01-13 06:14:16.97 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 +[3c3 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[3c4 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[3c5 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[3c6 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[3c7 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[3c8 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[3c9 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[3ca 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[3cb 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[3cc 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[3cd 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[3ce 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[3cf 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[3d0 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[3d1 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[3d2 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[3d3 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[3d4 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[3d5 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[3d6 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[3d7 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[3d8 01-13 06:14:16.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[3d9 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[3da 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[3db 01-13 06:14:16.98 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[3dc 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[3dd 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[3de 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[3df 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[3e0 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[3e1 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4225d9bc0 env 0xc4226048d0 txn 0 +[3e2 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[3e3 01-13 06:14:17.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[3e4 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[3e5 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +[3e6 01-13 06:14:17.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] +[3e7 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +[3e8 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[3e9 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[3ea 01-13 06:14:17.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] +[3eb 01-13 06:14:17.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{} +[3ec 01-13 06:14:17.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 +[3ed 01-13 06:14:17.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 = [] +[3ee 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[3ef 01-13 06:14:17.05 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" > +[3f0 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[3f1 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3f2 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3f3 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3f4 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3f5 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3f6 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[3f7 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3f8 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3f9 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3fa 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3fb 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3fc 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3fd 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3fe 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3ff 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[400 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[401 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[402 01-13 06:14:17.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[403 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[404 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[405 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[406 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[407 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[408 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[409 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[40a 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[40b 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[40c 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[40d 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[40e 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[40f 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[410 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[411 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[412 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[413 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[414 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[415 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[416 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[417 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[418 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[419 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[41a 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[41b 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[41c 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[41d 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[41e 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[41f 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[420 01-13 06:14:17.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[421 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[422 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[423 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[424 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[425 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[426 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[427 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[428 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[429 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[42a 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[42b 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[42c 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[42d 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[42e 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[42f 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[430 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[431 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[432 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[433 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[434 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[435 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[436 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[437 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[438 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[439 01-13 06:14:17.07 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 +[43a 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[43b 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[43c 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[43d 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +[43e 01-13 06:14:17.07 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] +[43f 01-13 06:14:17.07 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{0xf9, 0xa, 0x5, 0x81, 0x83, 0x75, 0xfd, 0x56, 0xe6, 0x4b, 0x14, 0xb8, 0xe6, 0x59, 0x30, 0x70, 0x6f, 0x4e, 0x83, 0xa7, 0xb8, 0x23, 0x93, 0xa9, 0x7e, 0x8d, 0x26, 0xbd, 0xfb, 0x2c, 0x10, 0xaf} txOffsets= txId= locPointer=offset=70, bytesLength=12093 ] -[468 01-05 06:36:33.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx ID: [] to index -[469 01-05 06:36:33.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -[46a 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -[46b 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -[46c 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -[46d 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -[46e 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -[46f 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[470 01-05 06:36:33.63 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 -[471 01-05 06:36:33.63 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}] -[472 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[473 01-05 06:36:33.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -[474 01-05 06:36:33.63 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 -[475 01-05 06:36:33.64 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 -[476 01-05 06:36:33.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 [1] -[477 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[478 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[479 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[47a 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[47b 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[47c 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[47d 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[47e 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[47f 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[480 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[481 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[482 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[483 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421821d00 env 0xc42190b6e0 txn 0 -[484 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42190b6e0 -[485 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -[486 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[487 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[488 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -[489 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[48a 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[48b 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4224bf000, header channel_header:"\010\001\032\006\010\356\271\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\3657\227\226\226\003\226\207_w\341\306\305\326\022.\030\360\\A\3230\277)" -[48c 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[48d 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[48e 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[48f 01-05 06:36:33.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 -[490 01-05 06:36:33.64 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 -[491 01-05 06:36:33.64 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 -[492 01-05 06:36:33.64 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 -[493 01-05 06:36:33.64 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 -[494 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[495 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[496 01-05 06:36:33.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 -[497 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[498 01-05 06:36:33.64 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 -[499 01-05 06:36:33.64 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 -[49a 01-05 06:36:33.64 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 -[49b 01-05 06:36:33.64 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 -[49c 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[49d 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[49e 01-05 06:36:33.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[49f 01-05 06:36:33.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" -[4a0 01-05 06:36:33.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" -[4a1 01-05 06:36:33.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" -[4a2 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[4a3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[4a4 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[4a5 01-05 06:36:33.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" -[4a6 01-05 06:36:33.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" -[4a7 01-05 06:36:33.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" -[4a8 01-05 06:36:33.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" -[4a9 01-05 06:36:33.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" -[4aa 01-05 06:36:33.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" -[4ab 01-05 06:36:33.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" -[4ac 01-05 06:36:33.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" -[4ad 01-05 06:36:33.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" -[4ae 01-05 06:36:33.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" -[4af 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4b0 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4b1 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4b2 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[4b3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4b4 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4b5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4b6 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4b7 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4b8 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[4b9 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[4ba 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[4bb 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[4bc 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[4bd 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[4be 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4bf 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4c0 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4c1 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[4c2 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[4c3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4c4 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4c5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4c6 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4c7 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4c8 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[4c9 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[4ca 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4cb 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4cc 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4cd 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4ce 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[4cf 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[4d0 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[4d1 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[4d2 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[4d3 01-05 06:36:33.65 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 -[4d4 01-05 06:36:33.65 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 -[4d5 01-05 06:36:33.65 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 -[4d6 01-05 06:36:33.65 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 -[4d7 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[4d8 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[4d9 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[4da 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[4db 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[4dc 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[4dd 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[4de 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[4df 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[4e0 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[4e1 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[4e2 01-05 06:36:33.65 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 -[4e3 01-05 06:36:33.65 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 -[4e4 01-05 06:36:33.65 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 -[4e5 01-05 06:36:33.65 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 -[4e6 01-05 06:36:33.65 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 -[4e7 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4e8 01-05 06:36:33.65 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 -[4e9 01-05 06:36:33.65 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 -[4ea 01-05 06:36:33.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/Writers -[4eb 01-05 06:36:33.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 -[4ec 01-05 06:36:33.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/Readers -[4ed 01-05 06:36:33.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 -[4ee 01-05 06:36:33.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 -[4ef 01-05 06:36:33.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 -[4f0 01-05 06:36:33.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 -[4f1 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[4f2 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[4f3 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[4f4 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[4f5 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[4f6 01-05 06:36:33.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[4f7 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[4f8 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[4f9 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[4fa 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[4fb 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[4fc 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[4fd 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[4fe 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[4ff 01-05 06:36:33.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[500 01-05 06:36:33.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[501 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[502 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[503 01-05 06:36:33.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[504 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[505 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[507 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[508 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[509 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[50a 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -[50b 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[50c 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -[50d 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[50e 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[50f 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[510 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[511 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[512 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[513 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[514 01-05 06:36:33.73 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" > -[515 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[516 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[517 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[518 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[519 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[51a 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[51b 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[51c 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[51d 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[51e 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[51f 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[520 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[521 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[522 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[523 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[524 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[525 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[526 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[527 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[528 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[529 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[52a 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[52b 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[52c 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[52d 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[52e 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[52f 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[530 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[531 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[532 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[533 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[506 01-05 06:36:33.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421821d00 env 0xc42190b6e0 txn 0 -[534 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[535 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[536 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[537 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[538 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[539 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[53a 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[53b 01-05 06:36:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[53c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[53d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[53e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[53f 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[540 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[541 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[542 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[543 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[544 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[545 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[546 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[547 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[548 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[549 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[54a 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[54b 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[54c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[54d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[54e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[54f 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[550 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[551 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[552 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[553 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[554 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[555 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[556 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[557 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[558 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[559 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[55a 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[55b 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[55c 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[55d 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[55e 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[55f 01-05 06:36:33.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 -[560 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[561 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[562 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[563 01-05 06:36:33.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -[564 01-05 06:36:33.76 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] -[565 01-05 06:36:33.76 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{0x2a, 0xe9, 0x7a, 0x43, 0xb5, 0x23, 0xea, 0xb1, 0xeb, 0x20, 0xa6, 0xa2, 0x4e, 0xfb, 0x10, 0x9f, 0xc4, 0x6e, 0x34, 0x44, 0xa3, 0x4b, 0x92, 0xa, 0xd2, 0x6f, 0xcf, 0x89, 0x4d, 0xe5, 0x36, 0x48} txOffsets= +[440 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx ID: [] to index +[441 01-13 06:14:17.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index +[442 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26080], isChainEmpty=[false], lastBlockNumber=[1] +[443 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +[444 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] +[445 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +[446 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +[447 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[448 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[449 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[44a 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[44b 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +[44c 01-13 06:14:17.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 [1] with [1] transactions +[44d 01-13 06:14:17.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 +[44e 01-13 06:14:17.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 [1] +[44f 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[450 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[451 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[452 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[453 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[454 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[455 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[456 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[457 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[458 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[459 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[45a 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[45b 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421b12d80 env 0xc421c7a6c0 txn 0 +[45c 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c7a6c0 +[45d 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +[45e 01-13 06:14:17.08 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[45f 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[460 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +[461 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[462 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[463 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4224de000, header channel_header:"\010\001\032\006\010\267\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030oT93\235\311c\215\342/T\327fMn\020~C\244\314\240\227<\246" +[464 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[465 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[466 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[467 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[468 01-13 06:14:17.09 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 +[469 01-13 06:14:17.09 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 +[46a 01-13 06:14:17.09 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 +[46b 01-13 06:14:17.09 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 +[46c 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[46d 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[46e 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[46f 01-13 06:14:17.09 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 +[470 01-13 06:14:17.09 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 +[471 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[472 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[473 01-13 06:14:17.09 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 +[474 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[475 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[476 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[477 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[478 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[479 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[47a 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[47b 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[47c 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[47d 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[47e 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[47f 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[480 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[481 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[482 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[483 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[484 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[485 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[486 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[487 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[488 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[489 01-13 06:14:17.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[48a 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[48b 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[48c 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[48d 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[48e 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[48f 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[490 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[491 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[492 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[493 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[494 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[495 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[496 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[497 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[498 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[499 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[49a 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[49b 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[49c 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[49d 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[49e 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[49f 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4a0 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[4a1 01-13 06:14:17.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[4a2 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4a3 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4a4 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4a5 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4a6 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[4a7 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[4a8 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[4a9 01-13 06:14:17.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[4aa 01-13 06:14:17.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 +[4ab 01-13 06:14:17.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 +[4ac 01-13 06:14:17.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 +[4ad 01-13 06:14:17.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 +[4ae 01-13 06:14:17.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 +[4af 01-13 06:14:17.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 +[4b0 01-13 06:14:17.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 +[4b1 01-13 06:14:17.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 +[4b2 01-13 06:14:17.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 +[4b3 01-13 06:14:17.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 +[4b4 01-13 06:14:17.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 +[4b5 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[4b6 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[4b7 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[4b8 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[4b9 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[4ba 01-13 06:14:17.12 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 +[4bb 01-13 06:14:17.12 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 +[4bc 01-13 06:14:17.12 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 +[4bd 01-13 06:14:17.12 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 +[4be 01-13 06:14:17.12 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 +[4bf 01-13 06:14:17.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[4c0 01-13 06:14:17.12 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 +[4c1 01-13 06:14:17.12 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 +[4c2 01-13 06:14:17.12 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 +[4c3 01-13 06:14:17.13 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 +[4c4 01-13 06:14:17.13 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 +[4c5 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[4c6 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[4c7 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[4c8 01-13 06:14:17.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[4c9 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[4ca 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[4cb 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[4cc 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[4cd 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[4ce 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[4cf 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[4d0 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[4d1 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[4d2 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[4d3 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[4d4 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[4d5 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[4d6 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[4d7 01-13 06:14:17.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[4d8 01-13 06:14:17.15 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[4d9 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[4da 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[4db 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[4dc 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[4dd 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[4de 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421b12d80 env 0xc421c7a6c0 txn 0 +[4df 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[4e0 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[4e1 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[4e2 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +[4e3 01-13 06:14:17.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] +[4e4 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +[4e5 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[4e6 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[4e7 01-13 06:14:17.16 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] +[4e8 01-13 06:14:17.16 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{} +[4e9 01-13 06:14:17.16 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 +[4ea 01-13 06:14:17.16 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 = [] +[4eb 01-13 06:14:17.16 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[4ec 01-13 06:14:17.16 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" > +[4ed 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[4ee 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[4ef 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[4f0 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[4f1 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[4f2 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4f3 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[4f4 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[4f5 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[4f6 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[4f7 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[4f8 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[4f9 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4fa 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4fb 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4fc 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[4fd 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[4fe 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4ff 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[500 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[501 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[502 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[503 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[504 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[505 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[506 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[507 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[508 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[509 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[50a 01-13 06:14:17.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[50b 01-13 06:14:17.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[50c 01-13 06:14:17.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[50d 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[50e 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[50f 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[510 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[511 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[512 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[513 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[514 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[515 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[516 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[517 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[518 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[519 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[51a 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[51b 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[51c 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[51d 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[51e 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[51f 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[520 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[521 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[522 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[523 01-13 06:14:17.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[524 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[525 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[526 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[527 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[528 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[529 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[52a 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[52b 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[52c 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[52d 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[52e 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[52f 01-13 06:14:17.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[530 01-13 06:14:17.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[531 01-13 06:14:17.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[532 01-13 06:14:17.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[533 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[534 01-13 06:14:17.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 +[535 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[536 01-13 06:14:17.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 [] +[537 01-13 06:14:17.25 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 +[538 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[539 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[53a 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[53b 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +[53c 01-13 06:14:17.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 [2] +[53d 01-13 06:14:17.25 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{0xf6, 0xa0, 0xbc, 0x2, 0xab, 0x5a, 0xdb, 0x9c, 0x1d, 0x37, 0xcf, 0xcd, 0x14, 0xce, 0x39, 0x12, 0xda, 0x46, 0x0, 0xf, 0x9a, 0xfc, 0x4, 0xee, 0x69, 0x38, 0xef, 0x60, 0x63, 0xdc, 0xfb, 0x1b} txOffsets= txId= locPointer=offset=70, bytesLength=12151 ] -[566 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12151] for tx ID: [] to index -[567 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26149, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index -[568 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40095], isChainEmpty=[false], lastBlockNumber=[2] -[569 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] -[56a 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -[56b 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -[56c 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -[56d 01-05 06:36:33.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[56e 01-05 06:36:33.76 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 -[56f 01-05 06:36:33.76 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}] -[570 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[571 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -[572 01-05 06:36:33.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 -[573 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[574 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -[575 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[576 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[577 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[578 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[579 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[57a 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[57b 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[57c 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[57d 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[57e 01-05 06:36:33.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[57f 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37170 -[580 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422752d20 -[581 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[582 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[583 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[584 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[585 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[586 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42346b860, header 0xc422752d50 -[587 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[588 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -[589 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[58a 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[58b 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[58c 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel -[58d 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -[58e 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel version: 1.1.0 -[58f 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2,syscc=true,proposal=0xc42346b860,canname=lscc:1.1.0 -[590 01-05 06:36:36.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[591 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[592 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[593 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]Inside sendExecuteMessage. Message TRANSACTION -[594 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[595 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[596 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]sendExecuteMsg trigger event TRANSACTION -[597 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message TRANSACTION -[598 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[599 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[59a 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message TRANSACTION -[59b 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message TRANSACTION from shim -[59c 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[59d 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b0d13d6f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[59e 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [b0d13d6f]Sending GET_STATE -[59f 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message GET_STATE from shim -[5a0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5a1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b0d13d6f]Received GET_STATE, invoking get state from ledger -[5a3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f] getting state for chaincode lscc, key exp02, channel businesschannel -[5a4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[5a5 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]No state associated with key: +[53e 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26150, bytesLength=12151] for tx ID: [] to index +[53f 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26150, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +[540 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40096], isChainEmpty=[false], lastBlockNumber=[2] +[541 01-13 06:14:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] +[542 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +[543 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +[544 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +[545 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[546 01-13 06:14:17.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 +[547 01-13 06:14:17.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}] +[548 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[549 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +[54a 01-13 06:14:17.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 [2] with [1] transactions +[54b 01-13 06:14:17.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 +[54c 01-13 06:14:17.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 [2] +[54d 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[54e 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[54f 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[550 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[551 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[552 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[553 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[554 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[555 01-13 06:14:17.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[556 01-13 06:14:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[557 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40068 +[558 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423164c60 +[559 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[55a 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[55b 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[55c 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[55d 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[55e 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4230cff40, header 0xc423164fc0 +[55f 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[560 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135 +[561 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135 channel id: +[562 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +[563 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135 channel id: version: 1.1.0 +[564 01-13 06:14:19.91 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.1.0,txid=0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135,syscc=true,proposal=0xc4230cff40,canname=lscc:1.1.0 +[565 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[566 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[567 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[568 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0eab6847]Inside sendExecuteMessage. Message TRANSACTION +[569 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[56a 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[56b 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0eab6847]sendExecuteMsg trigger event TRANSACTION +[56c 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eab6847]Move state message TRANSACTION +[56d 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eab6847]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[56e 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[56f 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eab6847]sending state message TRANSACTION +[570 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]Received message TRANSACTION from shim +[571 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eab6847]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[572 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0eab6847]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[573 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]Transaction completed. Sending COMPLETED +[574 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]Move state message COMPLETED +[575 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0eab6847]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[576 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0eab6847]send state message COMPLETED +[577 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0eab6847]Received message COMPLETED from shim +[578 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eab6847]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[579 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135]HandleMessage- COMPLETED. Notify +[57a 01-13 06:14:19.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0eab684728d457de4ebc761a6cf32c9a319a50cfe1a9167cb3cc2abd63965135, channelID: +[57b 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[57c 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[57d 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[57e 01-13 06:14:19.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40068) +[57f 01-13 06:14:21.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53662 +[580 01-13 06:14:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423463f80 +[581 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[582 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[583 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[584 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[585 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[586 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234bac80, header 0xc423502300 +[587 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[588 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 +[589 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +[58a 01-13 06:14:21.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 +[58b 01-13 06:14:21.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 = [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +[58c 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel +[58d 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel version: 1.1.0 +[58e 01-13 06:14:21.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=qscc,version=1.1.0,txid=a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619,syscc=true,proposal=0xc4234bac80,canname=qscc:1.1.0 +[58f 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[590 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[591 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[592 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]Inside sendExecuteMessage. Message TRANSACTION +[593 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[594 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[595 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]sendExecuteMsg trigger event TRANSACTION +[596 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Move state message TRANSACTION +[597 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[598 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[599 01-13 06:14:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]sending state message TRANSACTION +[59a 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53660 +[59b 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423502c60 +[59c 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[59e 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[59f 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[5a0 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[5a1 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[5a2 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234bb310, header 0xc423502fc0 +[5a3 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[5a4 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9 +[5a5 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9 channel id: +[5a6 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9 channel id: version: 1.1.0 +[5a7 01-13 06:14:21.62 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.1.0,txid=4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9,syscc=true,proposal=0xc4234bb310,canname=lscc:1.1.0 +[5a8 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[5a9 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5aa 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[5ab 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4a7a4eb2]Inside sendExecuteMessage. Message TRANSACTION +[5ac 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5ad 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5ae 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4a7a4eb2]sendExecuteMsg trigger event TRANSACTION +[5af 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7a4eb2]Move state message TRANSACTION +[5b0 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7a4eb2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5b1 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5b2 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7a4eb2]sending state message TRANSACTION +[59d 01-13 06:14:21.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Received message TRANSACTION from shim +[5b3 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5b4 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a035035f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5b5 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]Received message TRANSACTION from shim +[5b6 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4a7a4eb2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5b7 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4a7a4eb2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5b8 01-13 06:14:21.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[5b9 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Transaction completed. Sending COMPLETED +[5ba 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Move state message COMPLETED +[5bb 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5bc 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]send state message COMPLETED +[5bd 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Received message COMPLETED from shim +[5be 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5bf 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619]HandleMessage- COMPLETED. Notify +[5c0 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619, channelID:businesschannel +[5c1 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5c2 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[5c3 01-13 06:14:21.63 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 +[5c4 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +[5c5 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[5c7 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]Transaction completed. Sending COMPLETED +[5c8 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]Move state message COMPLETED +[5c9 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4a7a4eb2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5ca 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7a4eb2]send state message COMPLETED +[5cb 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7a4eb2]Received message COMPLETED from shim +[5cc 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7a4eb2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5cd 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9]HandleMessage- COMPLETED. Notify +[5ce 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4a7a4eb2099199e0000b9ea689fa8e4bbbd8154cc6106a2e1fec3660ae7965a9, channelID: +[5cf 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5d0 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[5d1 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[5d2 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53660) +[5c6 01-13 06:14:21.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel chaincode id: name:"qscc" +[5d3 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[5d4 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619 channel id: businesschannel version: 1.1.0 +[5d5 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619,syscc=true,proposal=0xc4234bac80,canname=escc:1.1.0 +[5d6 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[5d7 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5d8 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[5d9 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]Inside sendExecuteMessage. Message TRANSACTION +[5da 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5db 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5dc 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a035035f]sendExecuteMsg trigger event TRANSACTION +[5dd 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Move state message TRANSACTION +[5de 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5df 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5e0 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]sending state message TRANSACTION +[5e1 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Received message TRANSACTION from shim +[5e2 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5e3 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a035035f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5e4 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[5e5 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[5e6 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Transaction completed. Sending COMPLETED +[5e7 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]Move state message COMPLETED +[5e8 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a035035f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5e9 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a035035f]send state message COMPLETED +[5ea 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a035035f]Received message COMPLETED from shim +[5eb 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5ec 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619]HandleMessage- COMPLETED. Notify +[5ed 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619, channelID:businesschannel +[5ee 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5ef 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[5f0 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[5f1 01-13 06:14:21.64 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 [a035035ff8e4005c1cfc1747a169a3217ecc4569a617050d4d3ac548b6668619] +[5f2 01-13 06:14:21.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53662) +[5f3 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40096 +[5f4 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228d24b0 +[5f5 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[5f6 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[5f7 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[5f8 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[5f9 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[5fa 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4232fd540, header 0xc4228d2810 +[5fb 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[5fc 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +[5fd 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[5fe 01-13 06:14:21.96 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 +[5ff 01-13 06:14:21.96 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 = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[600 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel +[601 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled +[602 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel version: 1.1.0 +[603 01-13 06:14:21.96 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.1.0,txid=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95,syscc=true,proposal=0xc4232fd540,canname=lscc:1.1.0 +[604 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[605 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[606 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[607 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]Inside sendExecuteMessage. Message TRANSACTION +[608 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[609 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[60a 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]sendExecuteMsg trigger event TRANSACTION +[60b 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message TRANSACTION +[60c 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[60d 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[60e 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message TRANSACTION +[60f 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message TRANSACTION from shim +[610 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[611 01-13 06:14:21.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cbfac003]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[612 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [cbfac003]Sending GET_STATE +[613 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message GET_STATE from shim +[614 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[615 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cbfac003]Received GET_STATE, invoking get state from ledger +[616 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[617 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003] getting state for chaincode lscc, key exp02, channel businesschannel +[618 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[619 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]No state associated with key: exp02. Sending RESPONSE with an empty payload -[5a6 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]handleGetState serial send RESPONSE -[5a7 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message RESPONSE from shim -[5a8 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5a9 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]before send -[5aa 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]after send -[5ab 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b0d13d6f]Received RESPONSE, communicated (state:ready) -[5ac 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [b0d13d6f]GetState received payload RESPONSE -[5ad 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [b0d13d6f]Sending PUT_STATE -[5a2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5ae 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message PUT_STATE from shim -[5af 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5b0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5b1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]state is ready -[5b2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]Completed PUT_STATE. Sending RESPONSE -[5b3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]enterBusyState trigger event RESPONSE -[5b4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message RESPONSE -[5b5 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5b6 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5b7 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message RESPONSE -[5b8 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message RESPONSE from shim -[5b9 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5ba 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]before send -[5bb 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b0d13d6f]after send -[5bc 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b0d13d6f]Received RESPONSE, communicated (state:ready) -[5bd 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [b0d13d6f]Received RESPONSE. Successfully updated state -[5be 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -[5bf 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Transaction completed. Sending COMPLETED -[5c0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Move state message COMPLETED -[5c1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5c2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]send state message COMPLETED -[5c3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message COMPLETED from shim -[5c4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5c5 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2]HandleMessage- COMPLETED. Notify -[5c6 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -[5c7 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5c8 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2,syscc=false,proposal=0xc42346b860,canname=exp02:1.0 -[5c9 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2256 bytes from file system -[5ca 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -[5cb 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[5cc 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[5cd 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -[5ce 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[5cf 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) -[5d0 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[5d1 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[61a 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]handleGetState serial send RESPONSE +[61b 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message RESPONSE from shim +[61c 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[61d 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]before send +[61e 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]after send +[61f 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cbfac003]Received RESPONSE, communicated (state:ready) +[620 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [cbfac003]GetState received payload RESPONSE +[621 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [cbfac003]Sending PUT_STATE +[622 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message PUT_STATE from shim +[623 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[624 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[625 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]state is ready +[626 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]Completed PUT_STATE. Sending RESPONSE +[627 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]enterBusyState trigger event RESPONSE +[628 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message RESPONSE +[629 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[62a 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[62b 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message RESPONSE +[62c 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message RESPONSE from shim +[62d 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[62e 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]before send +[62f 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cbfac003]after send +[630 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cbfac003]Received RESPONSE, communicated (state:ready) +[631 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [cbfac003]Received RESPONSE. Successfully updated state +[632 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified +[633 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Transaction completed. Sending COMPLETED +[634 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Move state message COMPLETED +[635 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[636 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]send state message COMPLETED +[637 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message COMPLETED from shim +[638 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[639 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95]HandleMessage- COMPLETED. Notify +[63a 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +[63b 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[63c 01-13 06:14:21.97 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=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95,syscc=false,proposal=0xc4232fd540,canname=exp02:1.0 +[63d 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2256 bytes from file system +[63e 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +[63f 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode +[640 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[641 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [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 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}] +[642 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] +[643 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) +[644 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[645 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=exp02:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -1565,17 +1681,17 @@ txId= locPointer=offset=70, bytesLength=12151 CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[5d2 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock -[5d3 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock -[5d4 01-05 06:36:36.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 -[5d5 01-05 06:36:36.61 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) -[5d6 01-05 06:36:36.61 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) -[5d7 01-05 06:36:36.61 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) -[5d8 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -[5d9 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -[5da 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -[5db 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -[5dc 01-05 06:36:36.61 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +[646 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock +[647 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock +[648 01-13 06:14:21.97 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +[649 01-13 06:14:21.98 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) +[64a 01-13 06:14:21.98 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) +[64b 01-13 06:14:21.98 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) +[64c 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +[64d 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +[64e 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[64f 01-13 06:14:21.98 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 +[650 01-13 06:14:21.98 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU FROM hyperledger/fabric-baseos:x86_64-0.4.2 ADD binpackage.tar /usr/local/bin LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ @@ -1584,1699 +1700,4783 @@ LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ org.hyperledger.fabric.version="1.1.0" \ org.hyperledger.fabric.base.version="0.4.2" ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -[5dd 01-05 06:36:36.62 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -[5de 01-05 06:36:36.62 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -[5df 01-05 06:36:36.62 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -[5e0 01-05 06:36:43.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[5e1 01-05 06:36:43.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[5e2 01-05 06:36:43.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -[5e3 01-05 06:36:43.59 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[5e4 01-05 06:36:44.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -[5e5 01-05 06:36:44.22 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) -[5e6 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -[5e7 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[5e8 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[5e9 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[5ea 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[5eb 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -[5ec 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -[5ed 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[5ee 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -[5ef 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -[5f0 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5f1 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5f2 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message READY -[5f3 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: READY in state established -[5f4 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b0d13d6f]Entered state ready -[5f5 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -[5f6 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message READY -[5f7 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed -[5f8 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -[5f9 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -[5fa 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -[5fb 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]Inside sendExecuteMessage. Message INIT -[5fc 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5fd 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5fe 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]sendExecuteMsg trigger event INIT -[5ff 01-05 06:36:44.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message INIT -[600 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[601 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[602 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message INIT -[603 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message PUT_STATE from shim -[604 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[605 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[606 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]state is ready -[607 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]Completed PUT_STATE. Sending RESPONSE -[608 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]enterBusyState trigger event RESPONSE -[609 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message RESPONSE -[60a 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[60b 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[60c 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message RESPONSE -[60d 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message PUT_STATE from shim -[60e 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[60f 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[610 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]state is ready -[611 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b0d13d6f]Completed PUT_STATE. Sending RESPONSE -[612 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b0d13d6f]enterBusyState trigger event RESPONSE -[613 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message RESPONSE -[614 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[615 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[616 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message RESPONSE -[617 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message COMPLETED from shim -[618 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[619 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2]HandleMessage- COMPLETED. Notify -[61a 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -[61b 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -[61c 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[61d 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[61e 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[61f 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[620 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel chaincode id: name:"lscc" -[621 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[622 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 channel id: businesschannel version: 1.1.0 -[623 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2,syscc=true,proposal=0xc42346b860,canname=escc:1.1.0 -[624 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[625 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[626 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[627 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]Inside sendExecuteMessage. Message TRANSACTION -[628 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[629 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[62a 01-05 06:36:44.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b0d13d6f]sendExecuteMsg trigger event TRANSACTION -[62b 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Move state message TRANSACTION -[62c 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[62d 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[62e 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]sending state message TRANSACTION -[62f 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Received message TRANSACTION from shim -[630 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[631 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b0d13d6f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[632 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[633 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[634 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Transaction completed. Sending COMPLETED -[635 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]Move state message COMPLETED -[636 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0d13d6f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[637 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0d13d6f]send state message COMPLETED -[638 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0d13d6f]Received message COMPLETED from shim -[639 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[63a 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2]HandleMessage- COMPLETED. Notify -[63b 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2, channelID:businesschannel -[63c 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[63d 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[63e 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[63f 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[640 01-05 06:36:44.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37170) -[641 01-05 06:36:46.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -[642 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -[643 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[644 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[645 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b1f880 env 0xc421bd5f80 txn 0 -[646 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421bd5f80 -[647 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -[648 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[649 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[64a 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[64b 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[64c 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[64d 01-05 06:36:46.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4228aa000, header channel_header:"\010\003\032\014\010\364\271\274\322\005\020\344\243\214\231\002\"\017businesschannel*@b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\315\203\260\001\265\355\225\006\346\244E1D\356\273F\341\214-\214/g\346q" -[64e 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[64f 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[650 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[651 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[652 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[653 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[654 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421bd5f80 envbytes 0xc421a56380 -[655 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a56380 -[656 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[657 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[658 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=6ec03676-07b8-4142-adc7-0114c78b2d75,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[659 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 chaindID businesschannel -[65a 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[65b 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[65c 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[65d 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ec03676]Inside sendExecuteMessage. Message TRANSACTION -[65e 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[65f 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6ec03676]sendExecuteMsg trigger event TRANSACTION -[660 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ec03676]Move state message TRANSACTION -[661 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ec03676]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[662 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[663 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ec03676]sending state message TRANSACTION -[664 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]Received message TRANSACTION from shim -[665 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ec03676]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[666 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6ec03676]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[667 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[668 01-05 06:36:46.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[669 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[66a 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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}} -[66b 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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}} -[66c 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -[66d 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[66e 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [321c274d-6fce-427c-83ca-09e3484ce7ee] -[66f 01-05 06:36:46.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[670 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [321c274d-6fce-427c-83ca-09e3484ce7ee] -[671 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[672 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4226258c0)} -[673 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[674 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]Transaction completed. Sending COMPLETED -[675 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]Move state message COMPLETED -[676 01-05 06:36:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ec03676]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[677 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ec03676]send state message COMPLETED -[678 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ec03676]Received message COMPLETED from shim -[679 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ec03676]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[67a 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ec03676-07b8-4142-adc7-0114c78b2d75]HandleMessage- COMPLETED. Notify -[67b 01-05 06:36:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6ec03676-07b8-4142-adc7-0114c78b2d75, channelID:businesschannel -[67c 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[67d 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] -[67e 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a56380 -[67f 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421bd5f80 envbytes 0xc421a56380 -[680 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b1f880 env 0xc421bd5f80 txn 0 -[681 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[682 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[683 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -[684 01-05 06:36:46.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] -[685 01-05 06:36:46.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -[686 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[687 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[688 01-05 06:36:46.36 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 -[689 01-05 06:36:46.36 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) -[68a 01-05 06:36:46.36 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 [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] marked as valid by state validator -[68b 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[68c 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[68d 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[68e 01-05 06:36:46.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -[68f 01-05 06:36:46.36 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] -[690 01-05 06:36:46.37 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{0xdf, 0x21, 0xe0, 0x7e, 0x50, 0x23, 0x3a, 0xea, 0xee, 0xc7, 0x97, 0x26, 0x76, 0x44, 0xb4, 0x45, 0x75, 0xa6, 0x75, 0x91, 0x62, 0xbf, 0x4e, 0xbe, 0xad, 0xc8, 0x29, 0x2b, 0xe8, 0xaf, 0x58, 0xa9} txOffsets= -txId=b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 locPointer=offset=70, bytesLength=3456 +[651 01-13 06:14:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +[652 01-13 06:14:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: +[653 01-13 06:14:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 +[654 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53668 +[655 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422592240 +[656 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[657 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[658 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[659 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[65a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[65b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422666820, header 0xc4225927b0 +[65c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[65d 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 +[65e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +[65f 01-13 06:14:22.70 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 +[660 01-13 06:14:22.70 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 = [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +[661 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel +[662 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel version: 1.1.0 +[663 01-13 06:14:22.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=qscc,version=1.1.0,txid=efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2,syscc=true,proposal=0xc422666820,canname=qscc:1.1.0 +[664 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[665 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[666 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[667 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]Inside sendExecuteMessage. Message TRANSACTION +[668 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[669 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[66a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]sendExecuteMsg trigger event TRANSACTION +[66b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Move state message TRANSACTION +[66c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[66d 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[66e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]sending state message TRANSACTION +[66f 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Received message TRANSACTION from shim +[670 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[671 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [efe0ebfc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[672 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[673 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Transaction completed. Sending COMPLETED +[674 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Move state message COMPLETED +[675 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[676 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]send state message COMPLETED +[677 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Received message COMPLETED from shim +[678 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[679 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2]HandleMessage- COMPLETED. Notify +[67a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2, channelID:businesschannel +[67b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[67c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[67d 01-13 06:14:22.70 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 +[67e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +[67f 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[680 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel chaincode id: name:"qscc" +[681 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[682 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2 channel id: businesschannel version: 1.1.0 +[683 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2,syscc=true,proposal=0xc422666820,canname=escc:1.1.0 +[684 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[685 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[686 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[687 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]Inside sendExecuteMessage. Message TRANSACTION +[688 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[689 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[68a 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [efe0ebfc]sendExecuteMsg trigger event TRANSACTION +[68b 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Move state message TRANSACTION +[68c 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[68d 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[68e 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]sending state message TRANSACTION +[68f 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Received message TRANSACTION from shim +[690 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[691 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [efe0ebfc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[692 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[693 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[694 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Transaction completed. Sending COMPLETED +[695 01-13 06:14:22.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]Move state message COMPLETED +[696 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efe0ebfc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[697 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efe0ebfc]send state message COMPLETED +[698 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efe0ebfc]Received message COMPLETED from shim +[699 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[69a 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2]HandleMessage- COMPLETED. Notify +[69b 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2, channelID:businesschannel +[69c 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[69d 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[69e 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[69f 01-13 06:14:22.71 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 [efe0ebfc01970df903a76b6543972050d928e5786d7ac0469a4ce62dcdee7af2] +[6a0 01-13 06:14:22.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53668) +[6a1 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53670 +[6a2 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42037d440 +[6a3 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[6a4 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[6a5 01-13 06:14:23.75 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[6a6 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[6a7 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[6a8 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4225adbd0, header 0xc42037d7d0 +[6a9 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[6aa 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 +[6ab 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +[6ac 01-13 06:14:23.76 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 +[6ad 01-13 06:14:23.76 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 = [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +[6ae 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel +[6af 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel version: 1.1.0 +[6b0 01-13 06:14:23.76 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.1.0,txid=e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1,syscc=true,proposal=0xc4225adbd0,canname=qscc:1.1.0 +[6b1 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[6b2 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6b3 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[6b4 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]Inside sendExecuteMessage. Message TRANSACTION +[6b5 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6b6 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6b7 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]sendExecuteMsg trigger event TRANSACTION +[6b8 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Move state message TRANSACTION +[6b9 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6ba 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6bb 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]sending state message TRANSACTION +[6bc 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Received message TRANSACTION from shim +[6bd 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6be 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e94f54e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6bf 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[6c0 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Transaction completed. Sending COMPLETED +[6c1 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Move state message COMPLETED +[6c2 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[6c3 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]send state message COMPLETED +[6c4 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Received message COMPLETED from shim +[6c5 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6c6 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1]HandleMessage- COMPLETED. Notify +[6c7 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1, channelID:businesschannel +[6c8 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6c9 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[6ca 01-13 06:14:23.76 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 +[6cb 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +[6cc 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[6cd 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel chaincode id: name:"qscc" +[6ce 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[6cf 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1 channel id: businesschannel version: 1.1.0 +[6d0 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1,syscc=true,proposal=0xc4225adbd0,canname=escc:1.1.0 +[6d1 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[6d2 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6d3 01-13 06:14:23.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[6d4 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]Inside sendExecuteMessage. Message TRANSACTION +[6d5 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6d6 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6d7 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e94f54e0]sendExecuteMsg trigger event TRANSACTION +[6d8 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Move state message TRANSACTION +[6d9 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6da 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6db 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]sending state message TRANSACTION +[6dc 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Received message TRANSACTION from shim +[6dd 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6de 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e94f54e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6df 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[6e0 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[6e1 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Transaction completed. Sending COMPLETED +[6e2 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]Move state message COMPLETED +[6e3 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e94f54e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[6e4 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e94f54e0]send state message COMPLETED +[6e5 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e94f54e0]Received message COMPLETED from shim +[6e6 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6e7 01-13 06:14:23.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1]HandleMessage- COMPLETED. Notify +[6e8 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1, channelID:businesschannel +[6e9 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6ea 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[6eb 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[6ec 01-13 06:14: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 [e94f54e03e917b2611a2f365ac0ef7fd5b76f25a9a3e31316ffcba6ae746adb1] +[6ed 01-13 06:14:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53670) +[6ee 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53672 +[6ef 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bbe7b0 +[6f0 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[6f1 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[6f2 01-13 06:14:24.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[6f3 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[6f4 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[6f5 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b94870, header 0xc421bbeb10 +[6f6 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[6f7 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 +[6f8 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] +[6f9 01-13 06:14:24.84 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 +[6fa 01-13 06:14:24.84 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 = [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] +[6fb 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel +[6fc 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel version: 1.1.0 +[6fd 01-13 06:14:24.84 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.1.0,txid=838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721,syscc=true,proposal=0xc421b94870,canname=qscc:1.1.0 +[6fe 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[6ff 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[700 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[701 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]Inside sendExecuteMessage. Message TRANSACTION +[702 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[703 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[704 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]sendExecuteMsg trigger event TRANSACTION +[705 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Move state message TRANSACTION +[706 01-13 06:14:24.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[707 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[708 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]sending state message TRANSACTION +[709 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Received message TRANSACTION from shim +[70a 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[70b 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [838f2496]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[70c 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[70d 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Transaction completed. Sending COMPLETED +[70e 01-13 06:14:24.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Move state message COMPLETED +[70f 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[710 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]send state message COMPLETED +[711 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Received message COMPLETED from shim +[712 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[713 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721]HandleMessage- COMPLETED. Notify +[714 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721, channelID:businesschannel +[715 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[716 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[717 01-13 06:14:24.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 +[718 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] +[719 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[71a 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel chaincode id: name:"qscc" +[71b 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[71c 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721 channel id: businesschannel version: 1.1.0 +[71d 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721,syscc=true,proposal=0xc421b94870,canname=escc:1.1.0 +[71e 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[71f 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[720 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[721 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]Inside sendExecuteMessage. Message TRANSACTION +[722 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[723 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[724 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [838f2496]sendExecuteMsg trigger event TRANSACTION +[725 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Move state message TRANSACTION +[726 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[727 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[728 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]sending state message TRANSACTION +[729 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Received message TRANSACTION from shim +[72a 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[72b 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [838f2496]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[72c 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[72d 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[72e 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Transaction completed. Sending COMPLETED +[72f 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]Move state message COMPLETED +[730 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [838f2496]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[731 01-13 06:14:24.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [838f2496]send state message COMPLETED +[732 01-13 06:14:24.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [838f2496]Received message COMPLETED from shim +[733 01-13 06:14:24.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f2496]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[734 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721]HandleMessage- COMPLETED. Notify +[735 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721, channelID:businesschannel +[736 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[737 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[738 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[739 01-13 06:14:24.88 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 [838f249608fb537948493b0243b200d85835b29c49efb734308de7084143d721] +[73a 01-13 06:14:24.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53672) +[73b 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53676 +[73c 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ec8de0 +[73d 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[73e 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[73f 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[740 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[741 01-13 06:14:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[742 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ebc820, header 0xc421ec9140 +[743 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[744 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 +[745 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +[746 01-13 06:14:25.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 +[747 01-13 06:14:25.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 = [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +[748 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel +[749 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel version: 1.1.0 +[74a 01-13 06:14:25.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.1.0,txid=9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00,syscc=true,proposal=0xc421ebc820,canname=qscc:1.1.0 +[74b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[74c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[74d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[74e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]Inside sendExecuteMessage. Message TRANSACTION +[74f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[750 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[751 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]sendExecuteMsg trigger event TRANSACTION +[752 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Move state message TRANSACTION +[753 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[754 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[755 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]sending state message TRANSACTION +[756 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Received message TRANSACTION from shim +[757 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[758 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9eec1535]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[759 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[75a 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Transaction completed. Sending COMPLETED +[75b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Move state message COMPLETED +[75c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[75d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]send state message COMPLETED +[75e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Received message COMPLETED from shim +[75f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[760 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00]HandleMessage- COMPLETED. Notify +[761 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00, channelID:businesschannel +[762 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[763 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[764 01-13 06:14:25.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 +[765 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +[766 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[767 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel chaincode id: name:"qscc" +[768 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[769 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00 channel id: businesschannel version: 1.1.0 +[76a 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00,syscc=true,proposal=0xc421ebc820,canname=escc:1.1.0 +[76b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[76c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[76d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[76e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]Inside sendExecuteMessage. Message TRANSACTION +[76f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[770 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[771 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9eec1535]sendExecuteMsg trigger event TRANSACTION +[772 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Move state message TRANSACTION +[773 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[774 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[775 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]sending state message TRANSACTION +[776 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Received message TRANSACTION from shim +[777 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[778 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9eec1535]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[779 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[77a 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[77b 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Transaction completed. Sending COMPLETED +[77c 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]Move state message COMPLETED +[77d 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9eec1535]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[77e 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9eec1535]send state message COMPLETED +[77f 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9eec1535]Received message COMPLETED from shim +[780 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[781 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00]HandleMessage- COMPLETED. Notify +[782 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00, channelID:businesschannel +[783 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[784 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[785 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[786 01-13 06:14:25.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 [9eec1535f00d6bb98d2e08abceb8fa17ac614a780e38b9aba0d683165169ae00] +[787 01-13 06:14:25.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53676) +[788 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53678 +[789 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c7a150 +[78a 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[78b 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[78c 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[78d 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[78e 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[78f 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e95540, header 0xc421c7a4b0 +[790 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[791 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d +[792 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +[793 01-13 06:14:27.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 +[794 01-13 06:14:27.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 = [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +[795 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel +[796 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel version: 1.1.0 +[797 01-13 06:14:27.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=qscc,version=1.1.0,txid=c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d,syscc=true,proposal=0xc421e95540,canname=qscc:1.1.0 +[798 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[799 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[79a 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[79b 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]Inside sendExecuteMessage. Message TRANSACTION +[79c 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[79d 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[79e 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]sendExecuteMsg trigger event TRANSACTION +[79f 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Move state message TRANSACTION +[7a0 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7a1 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7a2 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]sending state message TRANSACTION +[7a3 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Received message TRANSACTION from shim +[7a4 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7a5 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c13d44be]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7a6 01-13 06:14:27.00 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[7a7 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Transaction completed. Sending COMPLETED +[7a8 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Move state message COMPLETED +[7a9 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7aa 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]send state message COMPLETED +[7ab 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Received message COMPLETED from shim +[7ac 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7ad 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d]HandleMessage- COMPLETED. Notify +[7ae 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d, channelID:businesschannel +[7af 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7b0 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[7b1 01-13 06:14:27.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 +[7b2 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +[7b3 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[7b4 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel chaincode id: name:"qscc" +[7b5 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[7b6 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d channel id: businesschannel version: 1.1.0 +[7b7 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d,syscc=true,proposal=0xc421e95540,canname=escc:1.1.0 +[7b8 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[7b9 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7ba 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[7bb 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]Inside sendExecuteMessage. Message TRANSACTION +[7bc 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7bd 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7be 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c13d44be]sendExecuteMsg trigger event TRANSACTION +[7bf 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Move state message TRANSACTION +[7c0 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7c1 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7c2 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]sending state message TRANSACTION +[7c3 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Received message TRANSACTION from shim +[7c4 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7c5 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c13d44be]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7c6 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[7c7 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[7c8 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Transaction completed. Sending COMPLETED +[7c9 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]Move state message COMPLETED +[7ca 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c13d44be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7cb 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c13d44be]send state message COMPLETED +[7cc 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c13d44be]Received message COMPLETED from shim +[7cd 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7ce 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d]HandleMessage- COMPLETED. Notify +[7cf 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d, channelID:businesschannel +[7d0 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7d1 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[7d2 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[7d3 01-13 06:14:27.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 [c13d44be720865285a2ca5197b5bb31f228c2417a6878be07f91ff7c8e52a79d] +[7d4 01-13 06:14:27.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53678) +[7d5 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53680 +[7d6 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d18c30 +[7d7 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[7d8 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[7d9 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[7da 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[7db 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[7dc 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c8b590, header 0xc421d18f90 +[7dd 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[7de 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded +[7df 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +[7e0 01-13 06:14:28.04 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 +[7e1 01-13 06:14:28.04 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 = [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +[7e2 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel +[7e3 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel version: 1.1.0 +[7e4 01-13 06:14:28.04 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.1.0,txid=8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded,syscc=true,proposal=0xc421c8b590,canname=qscc:1.1.0 +[7e5 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[7e6 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7e7 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[7e8 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]Inside sendExecuteMessage. Message TRANSACTION +[7e9 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7ea 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7eb 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]sendExecuteMsg trigger event TRANSACTION +[7ec 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Move state message TRANSACTION +[7ed 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7ee 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7ef 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]sending state message TRANSACTION +[7f0 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Received message TRANSACTION from shim +[7f1 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7f2 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a99fdce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7f3 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[7f4 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Transaction completed. Sending COMPLETED +[7f5 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Move state message COMPLETED +[7f6 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7f7 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]send state message COMPLETED +[7f8 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Received message COMPLETED from shim +[7f9 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7fa 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded]HandleMessage- COMPLETED. Notify +[7fb 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded, channelID:businesschannel +[7fc 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7fd 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[7fe 01-13 06:14:28.04 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 +[7ff 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +[800 01-13 06:14:28.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[801 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel chaincode id: name:"qscc" +[802 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[803 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded channel id: businesschannel version: 1.1.0 +[804 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded,syscc=true,proposal=0xc421c8b590,canname=escc:1.1.0 +[805 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[806 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[807 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[808 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]Inside sendExecuteMessage. Message TRANSACTION +[809 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[80a 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[80b 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a99fdce]sendExecuteMsg trigger event TRANSACTION +[80c 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Move state message TRANSACTION +[80d 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[80e 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[80f 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]sending state message TRANSACTION +[810 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Received message TRANSACTION from shim +[811 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[812 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a99fdce]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[813 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[814 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[815 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Transaction completed. Sending COMPLETED +[816 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]Move state message COMPLETED +[817 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a99fdce]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[818 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a99fdce]send state message COMPLETED +[819 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a99fdce]Received message COMPLETED from shim +[81a 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[81b 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded]HandleMessage- COMPLETED. Notify +[81c 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded, channelID:businesschannel +[81d 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[81e 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[81f 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[820 01-13 06:14:28.05 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 [8a99fdce9c4a2fccc8be068b32c25ab328ad020b791907ff0f777749fbbdfded] +[821 01-13 06:14:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53680) +[822 01-13 06:14:29.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[823 01-13 06:14:29.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +[824 01-13 06:14:29.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[825 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53682 +[826 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4219b75c0 +[827 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[828 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[829 01-13 06:14:29.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[82a 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[82b 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[82c 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421938a50, header 0xc4219b7c50 +[82d 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[82e 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 +[82f 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +[830 01-13 06:14:29.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 +[831 01-13 06:14:29.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 = [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +[832 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel +[833 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel version: 1.1.0 +[834 01-13 06:14:29.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=qscc,version=1.1.0,txid=7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147,syscc=true,proposal=0xc421938a50,canname=qscc:1.1.0 +[835 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[836 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[837 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[838 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]Inside sendExecuteMessage. Message TRANSACTION +[839 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[83a 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[83b 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]sendExecuteMsg trigger event TRANSACTION +[83c 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Move state message TRANSACTION +[83d 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[83e 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[83f 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]sending state message TRANSACTION +[840 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Received message TRANSACTION from shim +[841 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[842 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7ec0b2bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[843 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[844 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Transaction completed. Sending COMPLETED +[845 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Move state message COMPLETED +[846 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[847 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]send state message COMPLETED +[848 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Received message COMPLETED from shim +[849 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[84a 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147]HandleMessage- COMPLETED. Notify +[84b 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147, channelID:businesschannel +[84c 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[84d 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[84e 01-13 06:14:29.09 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 +[84f 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +[850 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[851 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel chaincode id: name:"qscc" +[852 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[853 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147 channel id: businesschannel version: 1.1.0 +[854 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147,syscc=true,proposal=0xc421938a50,canname=escc:1.1.0 +[855 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[856 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[857 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[858 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]Inside sendExecuteMessage. Message TRANSACTION +[859 01-13 06:14:29.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[85a 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[85b 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7ec0b2bf]sendExecuteMsg trigger event TRANSACTION +[85c 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Move state message TRANSACTION +[85d 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[85e 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[85f 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]sending state message TRANSACTION +[860 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Received message TRANSACTION from shim +[861 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[862 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7ec0b2bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[863 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[864 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[865 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Transaction completed. Sending COMPLETED +[866 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]Move state message COMPLETED +[867 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7ec0b2bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[868 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7ec0b2bf]send state message COMPLETED +[869 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7ec0b2bf]Received message COMPLETED from shim +[86a 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[86b 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147]HandleMessage- COMPLETED. Notify +[86c 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147, channelID:businesschannel +[86d 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[86e 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[86f 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[870 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[871 01-13 06:14:29.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 [7ec0b2bfcac2fe19c36387cd21c5eacd41fa679451fb43f01cf7939da3c03147] +[872 01-13 06:14:29.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53682) +[873 01-13 06:14:29.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +[874 01-13 06:14:29.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) +[875 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +[876 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[877 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[878 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[879 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[87a 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +[87b 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +[87c 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[87d 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +[87e 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY +[87f 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[880 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[881 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message READY +[882 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: READY in state established +[883 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [cbfac003]Entered state ready +[884 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +[885 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message READY +[886 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU sending init completed +[887 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete +[888 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry +[889 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[88a 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]Inside sendExecuteMessage. Message INIT +[88b 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[88c 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[88d 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]sendExecuteMsg trigger event INIT +[88e 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message INIT +[88f 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[890 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[891 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message INIT +[892 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message PUT_STATE from shim +[893 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[894 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[895 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]state is ready +[896 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]Completed PUT_STATE. Sending RESPONSE +[897 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]enterBusyState trigger event RESPONSE +[898 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message RESPONSE +[899 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[89a 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[89b 01-13 06:14:29.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message RESPONSE +[89c 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message PUT_STATE from shim +[89d 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[89e 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[89f 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]state is ready +[8a0 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cbfac003]Completed PUT_STATE. Sending RESPONSE +[8a1 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cbfac003]enterBusyState trigger event RESPONSE +[8a2 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message RESPONSE +[8a3 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[8a4 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8a5 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message RESPONSE +[8a6 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message COMPLETED from shim +[8a7 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8a8 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95]HandleMessage- COMPLETED. Notify +[8a9 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +[8aa 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit +[8ab 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[8ac 01-13 06:14:29.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 +[8ad 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[8ae 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[8af 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel chaincode id: name:"lscc" +[8b0 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[8b1 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 channel id: businesschannel version: 1.1.0 +[8b2 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95,syscc=true,proposal=0xc4232fd540,canname=escc:1.1.0 +[8b3 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[8b4 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8b5 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[8b6 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]Inside sendExecuteMessage. Message TRANSACTION +[8b7 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8b8 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8b9 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cbfac003]sendExecuteMsg trigger event TRANSACTION +[8ba 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Move state message TRANSACTION +[8bb 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8bc 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8bd 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]sending state message TRANSACTION +[8be 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Received message TRANSACTION from shim +[8bf 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8c0 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cbfac003]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8c1 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[8c2 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[8c3 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Transaction completed. Sending COMPLETED +[8c4 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]Move state message COMPLETED +[8c5 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cbfac003]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8c6 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cbfac003]send state message COMPLETED +[8c7 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cbfac003]Received message COMPLETED from shim +[8c8 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8c9 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95]HandleMessage- COMPLETED. Notify +[8ca 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95, channelID:businesschannel +[8cb 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8cc 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8cd 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[8ce 01-13 06:14:29.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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[8cf 01-13 06:14:29.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40096) +[8d0 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53690 +[8d1 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42274c690 +[8d2 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8d3 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8d4 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[8d5 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8d6 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8d7 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4225adae0, header 0xc42274ca50 +[8d8 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[8d9 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 +[8da 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +[8db 01-13 06:14:30.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 +[8dc 01-13 06:14:30.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 = [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +[8dd 01-13 06:14:30.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel +[8de 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel version: 1.1.0 +[8df 01-13 06:14:30.15 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.1.0,txid=b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098,syscc=true,proposal=0xc4225adae0,canname=qscc:1.1.0 +[8e0 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[8e1 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8e2 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[8e3 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]Inside sendExecuteMessage. Message TRANSACTION +[8e4 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8e5 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8e6 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]sendExecuteMsg trigger event TRANSACTION +[8e7 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Move state message TRANSACTION +[8e8 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8e9 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8ea 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]sending state message TRANSACTION +[8eb 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Received message TRANSACTION from shim +[8ec 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8ed 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b8ee017c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8ee 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[8ef 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Transaction completed. Sending COMPLETED +[8f0 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Move state message COMPLETED +[8f1 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8f2 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]send state message COMPLETED +[8f3 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Received message COMPLETED from shim +[8f4 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8f5 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098]HandleMessage- COMPLETED. Notify +[8f6 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098, channelID:businesschannel +[8f7 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8f8 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[8f9 01-13 06:14:30.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 +[8fa 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +[8fb 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[8fc 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel chaincode id: name:"qscc" +[8fd 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[8fe 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098 channel id: businesschannel version: 1.1.0 +[8ff 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098,syscc=true,proposal=0xc4225adae0,canname=escc:1.1.0 +[900 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[901 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[902 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[903 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]Inside sendExecuteMessage. Message TRANSACTION +[904 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[905 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[906 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b8ee017c]sendExecuteMsg trigger event TRANSACTION +[907 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Move state message TRANSACTION +[908 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[909 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[90a 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]sending state message TRANSACTION +[90b 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Received message TRANSACTION from shim +[90c 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[90d 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b8ee017c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[90e 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[90f 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[910 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Transaction completed. Sending COMPLETED +[911 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]Move state message COMPLETED +[912 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b8ee017c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[913 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b8ee017c]send state message COMPLETED +[914 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b8ee017c]Received message COMPLETED from shim +[915 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[916 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098]HandleMessage- COMPLETED. Notify +[917 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098, channelID:businesschannel +[918 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[919 01-13 06:14:30.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[91a 01-13 06:14:30.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[91b 01-13 06:14:30.16 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 [b8ee017c39e26810372d2267e21ee81df6997b4ad49ad9e6effefe14acfe8098] +[91c 01-13 06:14:30.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53690) +[91d 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53692 +[91e 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ec9470 +[91f 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[920 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[921 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[922 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[923 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[924 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422b4e9b0, header 0xc421ec97d0 +[925 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[926 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 +[927 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +[928 01-13 06:14:31.19 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 +[929 01-13 06:14:31.19 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 = [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +[92a 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel +[92b 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel version: 1.1.0 +[92c 01-13 06:14:31.19 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.1.0,txid=119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701,syscc=true,proposal=0xc422b4e9b0,canname=qscc:1.1.0 +[92d 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[92e 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[92f 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[930 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]Inside sendExecuteMessage. Message TRANSACTION +[931 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[932 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[933 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]sendExecuteMsg trigger event TRANSACTION +[934 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Move state message TRANSACTION +[935 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[936 01-13 06:14:31.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[937 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]sending state message TRANSACTION +[938 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Received message TRANSACTION from shim +[939 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[93a 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [119ef019]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[93b 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[93c 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Transaction completed. Sending COMPLETED +[93d 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Move state message COMPLETED +[93e 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[93f 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]send state message COMPLETED +[940 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Received message COMPLETED from shim +[941 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[942 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701]HandleMessage- COMPLETED. Notify +[943 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701, channelID:businesschannel +[944 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[945 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[946 01-13 06:14:31.20 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 +[947 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +[948 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[949 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel chaincode id: name:"qscc" +[94a 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[94b 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701 channel id: businesschannel version: 1.1.0 +[94c 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701,syscc=true,proposal=0xc422b4e9b0,canname=escc:1.1.0 +[94d 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[94e 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[94f 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[950 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]Inside sendExecuteMessage. Message TRANSACTION +[951 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[952 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[953 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [119ef019]sendExecuteMsg trigger event TRANSACTION +[954 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Move state message TRANSACTION +[955 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[956 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[957 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]sending state message TRANSACTION +[958 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Received message TRANSACTION from shim +[959 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[95a 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [119ef019]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[95b 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[95c 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[95d 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Transaction completed. Sending COMPLETED +[95e 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]Move state message COMPLETED +[95f 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [119ef019]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[960 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [119ef019]send state message COMPLETED +[961 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [119ef019]Received message COMPLETED from shim +[962 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef019]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[963 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701]HandleMessage- COMPLETED. Notify +[964 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701, channelID:businesschannel +[965 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[966 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[967 01-13 06:14:31.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[968 01-13 06:14:31.21 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 [119ef01906e89a5add2681771acab7239835cfb3ebabe4b6813ce192046bb701] +[969 01-13 06:14:31.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53692) +[96a 01-13 06:14:31.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +[96b 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +[96c 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[96d 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[96e 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422bbf4a0 env 0xc422bf31d0 txn 0 +[96f 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422bf31d0 +[970 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +[971 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[972 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[973 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[974 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[975 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[976 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421836000, header channel_header:"\010\003\032\014\010\275\307\346\322\005\020\272\274\272\313\003\"\017businesschannel*@cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\363\033U\3460c\037\220\206K*\317\330E[\"\360\302\340\346@\2408N" +[977 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[978 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[979 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[97a 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[97b 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[97c 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[97d 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422bf31d0 envbytes 0xc422bd2000 +[97e 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422bd2000 +[97f 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[980 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[981 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=ead20c36-6f59-4017-a813-354e7b2f80f3,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[982 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 chaindID businesschannel +[983 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[984 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[985 01-13 06:14:31.80 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[986 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ead20c36]Inside sendExecuteMessage. Message TRANSACTION +[987 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[988 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ead20c36]sendExecuteMsg trigger event TRANSACTION +[989 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ead20c36]Move state message TRANSACTION +[98a 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ead20c36]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[98b 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[98c 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ead20c36]sending state message TRANSACTION +[98d 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]Received message TRANSACTION from shim +[98e 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ead20c36]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[98f 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ead20c36]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[990 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[991 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[992 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[993 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[994 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[995 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +[996 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[997 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [187b141a-16ca-4ff4-adca-02a631a27b7d] +[998 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[999 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [187b141a-16ca-4ff4-adca-02a631a27b7d] +[99a 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[99b 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc420396540)} +[99c 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[99d 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]Transaction completed. Sending COMPLETED +[99e 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]Move state message COMPLETED +[99f 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ead20c36]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[9a0 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ead20c36]send state message COMPLETED +[9a1 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ead20c36]Received message COMPLETED from shim +[9a2 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ead20c36]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[9a3 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ead20c36-6f59-4017-a813-354e7b2f80f3]HandleMessage- COMPLETED. Notify +[9a4 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ead20c36-6f59-4017-a813-354e7b2f80f3, channelID:businesschannel +[9a5 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[9a6 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] +[9a7 01-13 06:14:31.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422bd2000 +[9a8 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422bf31d0 envbytes 0xc422bd2000 +[9a9 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422bbf4a0 env 0xc422bf31d0 txn 0 +[9aa 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[9ab 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[9ac 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +[9ad 01-13 06:14:31.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] +[9ae 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +[9af 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[9b0 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[9b1 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[9b2 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +[9b3 01-13 06:14:31.82 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 [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] marked as valid by state validator +[9b4 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[9b5 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[9b6 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[9b7 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +[9b8 01-13 06:14:31.82 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] +[9b9 01-13 06:14:31.82 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{0xa4, 0xcc, 0x5f, 0x91, 0x4b, 0x59, 0xe, 0x67, 0x9, 0x87, 0x1a, 0xc7, 0xd0, 0xd1, 0x7, 0xe9, 0xeb, 0x7d, 0x8c, 0x8a, 0x7a, 0xaa, 0x57, 0x7b, 0xf4, 0x7, 0x55, 0xab, 0xdb, 0xb4, 0xb2, 0xd5} txOffsets= +txId=cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 locPointer=offset=70, bytesLength=3456 ] -[691 01-05 06:36:46.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=40165, bytesLength=3456] for tx ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to index -[692 01-05 06:36:46.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=40165, bytesLength=3456] for tx number:[0] ID: [b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2] to blockNumTranNum index -[693 01-05 06:36:46.37 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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -[694 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -[695 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -[696 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -[697 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -[698 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[699 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[69a 01-05 06:36:46.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[69b 01-05 06:36:46.38 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}] -[69c 01-05 06:36:46.38 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}] -[69d 01-05 06:36:46.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[69e 01-05 06:36:46.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -[69f 01-05 06:36:46.38 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 -[6a0 01-05 06:36:46.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 [3] -[6a1 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[6a2 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: b0d13d6f24857cad93d9aacd32c29dad8bcf8833ab1ba6a560a9615ecb9edef2 -[6a3 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[6a4 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[6a5 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[6a6 01-05 06:36:46.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[6a7 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[6a8 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[6a9 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[6aa 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[6ab 01-05 06:36:46.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[6ac 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -[6ad 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -[6ae 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[6af 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[6b0 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4229eee60 env 0xc4229297a0 txn 0 -[6b1 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4229297a0 -[6b2 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -[6b3 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[6b4 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[6b5 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -[6b6 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[6b7 01-05 06:36:56.05 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[6b8 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420317500, header channel_header:"\010\003\032\014\010\374\271\274\322\005\020\230\333\277\301\001\"\017businesschannel*@e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030's\347i}-\n%V:\032\343\001A\304\351!\005\243ES\273\267V" -[6b9 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[6ba 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[6bb 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[6bc 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[6bd 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -[6be 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[6bf 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4229297a0 envbytes 0xc4229fd000 -[6c0 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc4229fd000 -[6c1 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[6c2 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -[6c3 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=9629fc97-3a88-4c77-8c78-421500766ad6,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[6c4 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 chaindID businesschannel -[6c5 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[6c6 01-05 06:36:56.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6c7 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[6c8 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9629fc97]Inside sendExecuteMessage. Message TRANSACTION -[6c9 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6ca 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9629fc97]sendExecuteMsg trigger event TRANSACTION -[6cb 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9629fc97]Move state message TRANSACTION -[6cc 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9629fc97]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6cd 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6ce 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9629fc97]sending state message TRANSACTION -[6cf 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]Received message TRANSACTION from shim -[6d0 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9629fc97]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6d1 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9629fc97]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6d2 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[6d3 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[6d4 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[6d5 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[6d6 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[6d7 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -[6d8 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[6d9 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5cc1e1bd-cd61-4ee3-bab2-df858d424363] -[6da 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[6db 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [5cc1e1bd-cd61-4ee3-bab2-df858d424363] -[6dc 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[6dd 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4226258c0)} -[6de 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -[6df 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]Transaction completed. Sending COMPLETED -[6e0 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]Move state message COMPLETED -[6e1 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9629fc97]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6e2 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9629fc97]send state message COMPLETED -[6e3 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9629fc97]Received message COMPLETED from shim -[6e4 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9629fc97]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6e5 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9629fc97-3a88-4c77-8c78-421500766ad6]HandleMessage- COMPLETED. Notify -[6e6 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9629fc97-3a88-4c77-8c78-421500766ad6, channelID:businesschannel -[6e7 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6e8 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356, error Chaincode exp02 is already instantiated -[6e9 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] -[6ea 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc4229fd000 -[6eb 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4229297a0 envbytes 0xc4229fd000 -[6ec 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 returned error Chaincode exp02 is already instantiated -[6ed 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4229eee60 env 0xc4229297a0 txn 0 -[6ee 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -[6ef 01-05 06:36:56.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[6f0 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -[6f1 01-05 06:36:56.09 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] -[6f2 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -[6f3 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[6f4 01-05 06:36:56.09 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 [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -[6f5 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[6f6 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[6f7 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[6f8 01-05 06:36:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -[6f9 01-05 06:36:56.10 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] -[6fa 01-05 06:36:56.10 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{0x50, 0x1e, 0xd4, 0xf2, 0x77, 0xa3, 0x7f, 0x92, 0x94, 0x59, 0x91, 0x35, 0x4c, 0x7d, 0x8b, 0x65, 0xe0, 0xd1, 0xe4, 0xd4, 0xa, 0xd6, 0x5b, 0xd0, 0x5d, 0x6f, 0xb6, 0xd5, 0x7e, 0x7d, 0x92, 0xc5} txOffsets= -txId=e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 locPointer=offset=70, bytesLength=3459 +[9ba 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to index +[9bb 01-13 06:14:31.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3456] for tx number:[0] ID: [cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95] to blockNumTranNum index +[9bc 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] +[9bd 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +[9be 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +[9bf 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +[9c0 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +[9c1 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[9c2 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[9c3 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[9c4 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[9c5 01-13 06:14:31.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +[9c6 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[9c7 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +[9c8 01-13 06:14:31.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 [3] with [1] transactions +[9c9 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +[9ca 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[9cb 01-13 06:14:31.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: cbfac003d9019ca4d6c68dc895ad23b577b8cdea4902855549d5f27ac58b4f95 +[9cc 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[9cd 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[9ce 01-13 06:14:31.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[9cf 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[9d0 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[9d1 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[9d2 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[9d3 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[9d4 01-13 06:14:31.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[9d5 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53694 +[9d6 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422e08f90 +[9d7 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[9d8 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[9d9 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[9da 01-13 06:14:32.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[9db 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[9dc 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422c47ef0, header 0xc422e092f0 +[9dd 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[9de 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 +[9df 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +[9e0 01-13 06:14:32.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 +[9e1 01-13 06:14:32.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 = [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +[9e2 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel +[9e3 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel version: 1.1.0 +[9e4 01-13 06:14:32.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=qscc,version=1.1.0,txid=826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753,syscc=true,proposal=0xc422c47ef0,canname=qscc:1.1.0 +[9e5 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[9e6 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[9e7 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[9e8 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]Inside sendExecuteMessage. Message TRANSACTION +[9e9 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[9ea 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[9eb 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]sendExecuteMsg trigger event TRANSACTION +[9ec 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Move state message TRANSACTION +[9ed 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[9ee 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[9ef 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]sending state message TRANSACTION +[9f0 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Received message TRANSACTION from shim +[9f1 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[9f2 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [826ee634]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[9f3 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[9f4 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Transaction completed. Sending COMPLETED +[9f5 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Move state message COMPLETED +[9f6 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[9f7 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]send state message COMPLETED +[9f8 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Received message COMPLETED from shim +[9f9 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[9fa 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753]HandleMessage- COMPLETED. Notify +[9fb 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753, channelID:businesschannel +[9fc 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[9fd 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[9fe 01-13 06:14:32.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 +[9ff 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +[a00 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[a01 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel chaincode id: name:"qscc" +[a02 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[a03 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753 channel id: businesschannel version: 1.1.0 +[a04 01-13 06:14:32.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753,syscc=true,proposal=0xc422c47ef0,canname=escc:1.1.0 +[a05 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[a06 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a07 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[a08 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]Inside sendExecuteMessage. Message TRANSACTION +[a09 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a0a 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a0b 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [826ee634]sendExecuteMsg trigger event TRANSACTION +[a0c 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Move state message TRANSACTION +[a0d 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a0e 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a0f 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]sending state message TRANSACTION +[a10 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Received message TRANSACTION from shim +[a11 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a12 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [826ee634]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a13 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[a14 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[a15 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Transaction completed. Sending COMPLETED +[a16 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]Move state message COMPLETED +[a17 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [826ee634]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a18 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [826ee634]send state message COMPLETED +[a19 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [826ee634]Received message COMPLETED from shim +[a1a 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee634]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a1b 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753]HandleMessage- COMPLETED. Notify +[a1c 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753, channelID:businesschannel +[a1d 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a1e 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[a1f 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[a20 01-13 06:14:32.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 [826ee6341f6b42e5092de998630f830f7736cb691302bd99b40a1b3e6d51b753] +[a21 01-13 06:14:32.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53694) +[a22 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53696 +[a23 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422fbbe00 +[a24 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[a25 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[a26 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[a27 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[a28 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[a29 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422f83c20, header 0xc42300c180 +[a2a 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[a2b 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 +[a2c 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +[a2d 01-13 06:14:33.32 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 +[a2e 01-13 06:14:33.32 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 = [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +[a2f 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel +[a30 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel version: 1.1.0 +[a31 01-13 06:14:33.32 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.1.0,txid=0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0,syscc=true,proposal=0xc422f83c20,canname=qscc:1.1.0 +[a32 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[a33 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a34 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[a35 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]Inside sendExecuteMessage. Message TRANSACTION +[a36 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a37 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a38 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]sendExecuteMsg trigger event TRANSACTION +[a39 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Move state message TRANSACTION +[a3a 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a3b 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a3c 01-13 06:14:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]sending state message TRANSACTION +[a3d 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Received message TRANSACTION from shim +[a3e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a3f 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0b0fabf0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a40 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[a41 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Transaction completed. Sending COMPLETED +[a42 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Move state message COMPLETED +[a43 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a44 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]send state message COMPLETED +[a45 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Received message COMPLETED from shim +[a46 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a47 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0]HandleMessage- COMPLETED. Notify +[a48 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0, channelID:businesschannel +[a49 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a4a 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[a4b 01-13 06:14:33.33 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 +[a4c 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +[a4d 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[a4e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel chaincode id: name:"qscc" +[a4f 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[a50 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0 channel id: businesschannel version: 1.1.0 +[a51 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0,syscc=true,proposal=0xc422f83c20,canname=escc:1.1.0 +[a52 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[a53 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a54 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[a55 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]Inside sendExecuteMessage. Message TRANSACTION +[a56 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a57 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a58 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0b0fabf0]sendExecuteMsg trigger event TRANSACTION +[a59 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Move state message TRANSACTION +[a5a 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a5b 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a5c 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]sending state message TRANSACTION +[a5d 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Received message TRANSACTION from shim +[a5e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a5f 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0b0fabf0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a60 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[a61 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[a62 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Transaction completed. Sending COMPLETED +[a63 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]Move state message COMPLETED +[a64 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0b0fabf0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a65 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0b0fabf0]send state message COMPLETED +[a66 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0b0fabf0]Received message COMPLETED from shim +[a67 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a68 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0]HandleMessage- COMPLETED. Notify +[a69 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0, channelID:businesschannel +[a6a 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a6b 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[a6c 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[a6d 01-13 06:14:33.33 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 [0b0fabf0bbd446d7dc0895bc108bb567b116b6a9d2e8dfdf33668cb57da288c0] +[a6e 01-13 06:14:33.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53696) +[a6f 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53698 +[a70 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42334e030 +[a71 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[a72 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[a73 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[a74 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[a75 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[a76 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422ffda90, header 0xc42334e390 +[a77 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[a78 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 +[a79 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] +[a7a 01-13 06:14:34.38 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 +[a7b 01-13 06:14:34.38 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 = [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] +[a7c 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel +[a7d 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel version: 1.1.0 +[a7e 01-13 06:14:34.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=qscc,version=1.1.0,txid=f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0,syscc=true,proposal=0xc422ffda90,canname=qscc:1.1.0 +[a7f 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[a80 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[a81 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[a82 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]Inside sendExecuteMessage. Message TRANSACTION +[a83 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[a84 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[a85 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]sendExecuteMsg trigger event TRANSACTION +[a86 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Move state message TRANSACTION +[a87 01-13 06:14:34.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[a88 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[a89 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]sending state message TRANSACTION +[a8a 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Received message TRANSACTION from shim +[a8b 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[a8c 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f38f56f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[a8d 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[a8e 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Transaction completed. Sending COMPLETED +[a8f 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Move state message COMPLETED +[a90 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[a91 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]send state message COMPLETED +[a92 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Received message COMPLETED from shim +[a93 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[a94 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0]HandleMessage- COMPLETED. Notify +[a95 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0, channelID:businesschannel +[a96 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[a97 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[a98 01-13 06:14:34.39 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 +[a99 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] +[a9a 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[a9b 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel chaincode id: name:"qscc" +[a9c 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[a9d 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0 channel id: businesschannel version: 1.1.0 +[a9e 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0,syscc=true,proposal=0xc422ffda90,canname=escc:1.1.0 +[a9f 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[aa0 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[aa1 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[aa2 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]Inside sendExecuteMessage. Message TRANSACTION +[aa3 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[aa4 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[aa5 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f38f56f1]sendExecuteMsg trigger event TRANSACTION +[aa6 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Move state message TRANSACTION +[aa7 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[aa8 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[aa9 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]sending state message TRANSACTION +[aaa 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Received message TRANSACTION from shim +[aab 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[aac 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f38f56f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[aad 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[aae 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[aaf 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Transaction completed. Sending COMPLETED +[ab0 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]Move state message COMPLETED +[ab1 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f38f56f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ab2 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f38f56f1]send state message COMPLETED +[ab3 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f38f56f1]Received message COMPLETED from shim +[ab4 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[ab5 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0]HandleMessage- COMPLETED. Notify +[ab6 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0, channelID:businesschannel +[ab7 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[ab8 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[ab9 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[aba 01-13 06:14:34.39 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 [f38f56f1234ccd19d802c1e78e7252ab111a6eb98527964b7fe4e1a12bd2a8f0] +[abb 01-13 06:14:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53698) +[abc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53700 +[abd 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c60240 +[abe 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[abf 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[ac0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[ac1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[ac2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[ac3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421d79a90, header 0xc421c605a0 +[ac4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[ac5 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 +[ac6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +[ac7 01-13 06:14:35.43 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 +[ac8 01-13 06:14:35.43 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 = [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +[ac9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel +[aca 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel version: 1.1.0 +[acb 01-13 06:14:35.43 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.1.0,txid=7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179,syscc=true,proposal=0xc421d79a90,canname=qscc:1.1.0 +[acc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[acd 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[ace 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[acf 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]Inside sendExecuteMessage. Message TRANSACTION +[ad0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[ad1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[ad2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]sendExecuteMsg trigger event TRANSACTION +[ad3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Move state message TRANSACTION +[ad4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[ad5 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[ad6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]sending state message TRANSACTION +[ad7 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Received message TRANSACTION from shim +[ad8 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[ad9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7286f48c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[ada 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[adb 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Transaction completed. Sending COMPLETED +[adc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Move state message COMPLETED +[add 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ade 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]send state message COMPLETED +[adf 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Received message COMPLETED from shim +[ae0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[ae1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179]HandleMessage- COMPLETED. Notify +[ae2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179, channelID:businesschannel +[ae3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[ae4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[ae5 01-13 06:14:35.43 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 +[ae6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +[ae7 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[ae8 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel chaincode id: name:"qscc" +[ae9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[aea 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179 channel id: businesschannel version: 1.1.0 +[aeb 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179,syscc=true,proposal=0xc421d79a90,canname=escc:1.1.0 +[aec 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[aed 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[aee 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[aef 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]Inside sendExecuteMessage. Message TRANSACTION +[af0 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[af1 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[af2 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7286f48c]sendExecuteMsg trigger event TRANSACTION +[af3 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Move state message TRANSACTION +[af4 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[af5 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[af6 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]sending state message TRANSACTION +[af7 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Received message TRANSACTION from shim +[af8 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[af9 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7286f48c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[afa 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[afb 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[afc 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Transaction completed. Sending COMPLETED +[afd 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]Move state message COMPLETED +[afe 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7286f48c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[aff 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7286f48c]send state message COMPLETED +[b00 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7286f48c]Received message COMPLETED from shim +[b01 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b02 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179]HandleMessage- COMPLETED. Notify +[b03 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179, channelID:businesschannel +[b04 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b05 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[b06 01-13 06:14:35.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[b07 01-13 06:14:35.44 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 [7286f48c4436be916f1230f1a9bcbffb308e519603887c7695fc49252df02179] +[b08 01-13 06:14:35.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53700) +[b09 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53702 +[b0a 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4232c2e40 +[b0b 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[b0c 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[b0d 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[b0e 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[b0f 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[b10 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422eb6000, header 0xc4232c31a0 +[b11 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[b12 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a +[b13 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +[b14 01-13 06:14:36.50 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 +[b15 01-13 06:14:36.50 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 = [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +[b16 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel +[b17 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel version: 1.1.0 +[b18 01-13 06:14:36.50 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.1.0,txid=59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a,syscc=true,proposal=0xc422eb6000,canname=qscc:1.1.0 +[b19 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[b1a 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b1b 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[b1c 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]Inside sendExecuteMessage. Message TRANSACTION +[b1d 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b1e 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b1f 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]sendExecuteMsg trigger event TRANSACTION +[b20 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Move state message TRANSACTION +[b21 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b22 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b23 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]sending state message TRANSACTION +[b24 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Received message TRANSACTION from shim +[b25 01-13 06:14:36.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b26 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59bbdfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b27 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[b28 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Transaction completed. Sending COMPLETED +[b29 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Move state message COMPLETED +[b2a 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b2b 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]send state message COMPLETED +[b2c 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Received message COMPLETED from shim +[b2d 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b2e 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a]HandleMessage- COMPLETED. Notify +[b2f 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a, channelID:businesschannel +[b30 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b31 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[b32 01-13 06:14:36.51 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 +[b33 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +[b34 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[b35 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel chaincode id: name:"qscc" +[b36 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[b37 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a channel id: businesschannel version: 1.1.0 +[b38 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a,syscc=true,proposal=0xc422eb6000,canname=escc:1.1.0 +[b39 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[b3a 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b3b 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[b3c 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]Inside sendExecuteMessage. Message TRANSACTION +[b3d 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b3e 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b3f 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [59bbdfd8]sendExecuteMsg trigger event TRANSACTION +[b40 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Move state message TRANSACTION +[b41 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b42 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b43 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]sending state message TRANSACTION +[b44 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Received message TRANSACTION from shim +[b45 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b46 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [59bbdfd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b47 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[b48 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[b49 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Transaction completed. Sending COMPLETED +[b4a 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]Move state message COMPLETED +[b4b 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [59bbdfd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b4c 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [59bbdfd8]send state message COMPLETED +[b4d 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [59bbdfd8]Received message COMPLETED from shim +[b4e 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b4f 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a]HandleMessage- COMPLETED. Notify +[b50 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a, channelID:businesschannel +[b51 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b52 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[b53 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[b54 01-13 06:14:36.51 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 [59bbdfd89f4c1d13821496d289708326ca5b59f84feb29a708a9f841de3f806a] +[b55 01-13 06:14:36.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53702) +[b56 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53708 +[b57 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42291a1e0 +[b58 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[b59 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[b5a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[b5b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[b5c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[b5d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228ece60, header 0xc42291a540 +[b5e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[b5f 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed +[b60 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +[b61 01-13 06:14:37.55 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 +[b62 01-13 06:14:37.55 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 = [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +[b63 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel +[b64 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel version: 1.1.0 +[b65 01-13 06:14:37.55 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.1.0,txid=b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed,syscc=true,proposal=0xc4228ece60,canname=qscc:1.1.0 +[b66 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[b67 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b68 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[b69 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]Inside sendExecuteMessage. Message TRANSACTION +[b6a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b6b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b6c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]sendExecuteMsg trigger event TRANSACTION +[b6d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Move state message TRANSACTION +[b6e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b6f 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b70 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]sending state message TRANSACTION +[b71 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Received message TRANSACTION from shim +[b72 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b73 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b35a1a55]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b74 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[b75 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Transaction completed. Sending COMPLETED +[b76 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Move state message COMPLETED +[b77 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b78 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]send state message COMPLETED +[b79 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Received message COMPLETED from shim +[b7a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b7b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed]HandleMessage- COMPLETED. Notify +[b7c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed, channelID:businesschannel +[b7d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b7e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[b7f 01-13 06:14:37.55 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 +[b80 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +[b81 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[b82 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel chaincode id: name:"qscc" +[b83 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[b84 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed channel id: businesschannel version: 1.1.0 +[b85 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed,syscc=true,proposal=0xc4228ece60,canname=escc:1.1.0 +[b86 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[b87 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[b88 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[b89 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]Inside sendExecuteMessage. Message TRANSACTION +[b8a 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[b8b 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[b8c 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b35a1a55]sendExecuteMsg trigger event TRANSACTION +[b8d 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Move state message TRANSACTION +[b8e 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[b8f 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[b90 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]sending state message TRANSACTION +[b91 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Received message TRANSACTION from shim +[b92 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[b93 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b35a1a55]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[b94 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[b95 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[b96 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Transaction completed. Sending COMPLETED +[b97 01-13 06:14:37.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]Move state message COMPLETED +[b98 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b35a1a55]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[b99 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b35a1a55]send state message COMPLETED +[b9a 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b35a1a55]Received message COMPLETED from shim +[b9b 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[b9c 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed]HandleMessage- COMPLETED. Notify +[b9d 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed, channelID:businesschannel +[b9e 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[b9f 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[ba0 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[ba1 01-13 06:14:37.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 [b35a1a55802a820fbaf08ba4ebead675ae1e21ca551979ec9ea7a1711c2dbeed] +[ba2 01-13 06:14:37.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53708) +[ba3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53710 +[ba4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4236bc1b0 +[ba5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[ba6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[ba7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[ba8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[ba9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[baa 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4275dcc30, header 0xc4236bc510 +[bab 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[bac 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 +[bad 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +[bae 01-13 06:14:38.59 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 +[baf 01-13 06:14:38.59 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 = [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +[bb0 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel +[bb1 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel version: 1.1.0 +[bb2 01-13 06:14:38.59 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.1.0,txid=94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01,syscc=true,proposal=0xc4275dcc30,canname=qscc:1.1.0 +[bb3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[bb4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[bb5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[bb6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]Inside sendExecuteMessage. Message TRANSACTION +[bb7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[bb8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[bb9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]sendExecuteMsg trigger event TRANSACTION +[bba 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Move state message TRANSACTION +[bbb 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[bbc 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[bbd 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]sending state message TRANSACTION +[bbe 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Received message TRANSACTION from shim +[bbf 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[bc0 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [94979fec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[bc1 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[bc2 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Transaction completed. Sending COMPLETED +[bc3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Move state message COMPLETED +[bc4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[bc5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]send state message COMPLETED +[bc6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Received message COMPLETED from shim +[bc7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[bc8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01]HandleMessage- COMPLETED. Notify +[bc9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01, channelID:businesschannel +[bca 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[bcb 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[bcc 01-13 06:14:38.59 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 +[bcd 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +[bce 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[bcf 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel chaincode id: name:"qscc" +[bd0 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[bd1 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01 channel id: businesschannel version: 1.1.0 +[bd2 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01,syscc=true,proposal=0xc4275dcc30,canname=escc:1.1.0 +[bd3 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[bd4 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[bd5 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[bd6 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]Inside sendExecuteMessage. Message TRANSACTION +[bd7 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[bd8 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[bd9 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [94979fec]sendExecuteMsg trigger event TRANSACTION +[bda 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Move state message TRANSACTION +[bdb 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[bdc 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[bdd 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]sending state message TRANSACTION +[bde 01-13 06:14:38.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Received message TRANSACTION from shim +[bdf 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[be0 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [94979fec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[be1 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[be2 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[be3 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Transaction completed. Sending COMPLETED +[be4 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]Move state message COMPLETED +[be5 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94979fec]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[be6 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94979fec]send state message COMPLETED +[be7 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94979fec]Received message COMPLETED from shim +[be8 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[be9 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01]HandleMessage- COMPLETED. Notify +[bea 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01, channelID:businesschannel +[beb 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[bec 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[bed 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[bee 01-13 06:14:38.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 [94979fec9f5b32a1c1bf8eb98f1c94e687fefcfd11182bb78716c111a9feac01] +[bef 01-13 06:14:38.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53710) +[bf0 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +[bf1 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +[bf2 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[bf3 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[bf4 01-13 06:14:38.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42385e600 env 0xc4236bd920 txn 0 +[bf5 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4236bd920 +[bf6 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +[bf7 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[bf8 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[bf9 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +[bfa 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[bfb 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[bfc 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42386c000, header channel_header:"\010\003\032\014\010\305\307\346\322\005\020\370\262\343\277\003\"\017businesschannel*@67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030Mm\204\003\354\200\265E\027eB\306\010\223_\024\025-\013\013V\021\364\r" +[bfd 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[bfe 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[bff 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[c00 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[c01 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +[c02 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[c03 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4236bd920 envbytes 0xc42386a000 +[c04 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42386a000 +[c05 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[c06 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +[c07 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=29b6a48c-7446-4f70-84f7-5772889ea6e0,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[c08 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 chaindID businesschannel +[c09 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[c0a 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[c0b 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[c0c 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [29b6a48c]Inside sendExecuteMessage. Message TRANSACTION +[c0d 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[c0e 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [29b6a48c]sendExecuteMsg trigger event TRANSACTION +[c0f 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29b6a48c]Move state message TRANSACTION +[c10 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [29b6a48c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[c11 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[c12 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29b6a48c]sending state message TRANSACTION +[c13 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]Received message TRANSACTION from shim +[c14 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [29b6a48c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[c15 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [29b6a48c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[c16 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[c17 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[c18 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[c19 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[c1a 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[c1b 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +[c1c 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[c1d 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [669160fd-49ec-4926-896c-92bf149645ad] +[c1e 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[c1f 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [669160fd-49ec-4926-896c-92bf149645ad] +[c20 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[c21 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983ab0), deserializer:(*msp.mspManagerImpl)(0xc420396540)} +[c22 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +[c23 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]Transaction completed. Sending COMPLETED +[c24 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]Move state message COMPLETED +[c25 01-13 06:14:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [29b6a48c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[c26 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [29b6a48c]send state message COMPLETED +[c27 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [29b6a48c]Received message COMPLETED from shim +[c28 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [29b6a48c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[c29 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [29b6a48c-7446-4f70-84f7-5772889ea6e0]HandleMessage- COMPLETED. Notify +[c2a 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:29b6a48c-7446-4f70-84f7-5772889ea6e0, channelID:businesschannel +[c2b 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[c2c 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053, error Chaincode exp02 is already instantiated +[c2d 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] +[c2e 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42386a000 +[c2f 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4236bd920 envbytes 0xc42386a000 +[c30 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 returned error Chaincode exp02 is already instantiated +[c31 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42385e600 env 0xc4236bd920 txn 0 +[c32 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +[c33 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[c34 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +[c35 01-13 06:14:38.97 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] +[c36 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +[c37 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[c38 01-13 06:14:38.97 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 [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +[c39 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[c3a 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[c3b 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[c3c 01-13 06:14:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +[c3d 01-13 06:14:38.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 [4] +[c3e 01-13 06:14:38.98 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{0x72, 0x27, 0xa2, 0x8e, 0x8c, 0xf6, 0x13, 0x2, 0x8b, 0x31, 0x49, 0x73, 0x2b, 0x49, 0xd2, 0xa7, 0xd6, 0x84, 0xe2, 0xc, 0x6f, 0xb9, 0xbf, 0x63, 0xc2, 0xe7, 0x72, 0xfb, 0x60, 0x7c, 0x95, 0x54} txOffsets= +txId=67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 locPointer=offset=70, bytesLength=3461 ] -[6fb 01-05 06:36:56.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=45486, bytesLength=3459] for tx ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to index -[6fc 01-05 06:36:56.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=45486, bytesLength=3459] for tx number:[0] ID: [e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356] to blockNumTranNum index -[6fd 01-05 06:36:56.10 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=[50741], isChainEmpty=[false], lastBlockNumber=[4] -[6fe 01-05 06:36:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -[6ff 01-05 06:36:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -[700 01-05 06:36:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -[701 01-05 06:36:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -[702 01-05 06:36:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[703 01-05 06:36:56.10 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 -[704 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[705 01-05 06:36:56.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -[706 01-05 06:36:56.12 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 -[707 01-05 06:36:56.13 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 -[708 01-05 06:36:56.13 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] -[709 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[70a 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: e66f57525e7008cc3b19b75a7a01f4fbd8c9e0ed14b7ee7af236e77e6600f356 -[70b 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[70c 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[70d 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[70e 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[70f 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[710 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[711 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[712 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[713 01-05 06:36:56.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[714 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37188 -[715 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422435dd0 -[716 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[717 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[718 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[719 01-05 06:37:04.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[71a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[71b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234d56d0, header 0xc422435e00 -[71c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[71d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -[71e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[71f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[720 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[721 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel -[722 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9,syscc=true,proposal=0xc4234d56d0,canname=lscc:1.1.0 -[723 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[724 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -[725 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[726 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]Inside sendExecuteMessage. Message TRANSACTION -[727 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[728 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[729 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]sendExecuteMsg trigger event TRANSACTION -[72a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message TRANSACTION -[72b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[72c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[72d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message TRANSACTION -[72e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Received message TRANSACTION from shim -[72f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[730 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b1b7eae5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[731 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b1b7eae5]Sending GET_STATE -[732 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message GET_STATE from shim -[733 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[734 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b1b7eae5]Received GET_STATE, invoking get state from ledger -[735 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[736 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5] getting state for chaincode lscc, key exp02, channel businesschannel -[737 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[738 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Got state. Sending RESPONSE -[739 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]handleGetState serial send RESPONSE -[73a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Received message RESPONSE from shim -[73b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[73c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b1b7eae5]before send -[73d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b1b7eae5]after send -[73f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b1b7eae5]GetState received payload RESPONSE -[740 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Transaction completed. Sending COMPLETED -[73e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b1b7eae5]Received RESPONSE, communicated (state:ready) -[741 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Move state message COMPLETED -[742 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[743 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]send state message COMPLETED -[744 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message COMPLETED from shim -[745 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[746 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9]HandleMessage- COMPLETED. Notify -[747 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9, channelID:businesschannel -[748 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -[749 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[74a 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel version: 1.0 -[74b 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9,syscc=false,proposal=0xc4234d56d0,canname=exp02:1.0 -[74c 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -[74d 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[74e 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -[74f 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]Inside sendExecuteMessage. Message TRANSACTION -[750 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[751 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[752 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]sendExecuteMsg trigger event TRANSACTION -[753 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message TRANSACTION -[754 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[755 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[756 01-05 06:37:04.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message TRANSACTION -[757 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message GET_STATE from shim -[758 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[759 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b1b7eae5]Received GET_STATE, invoking get state from ledger -[75a 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[75b 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5] getting state for chaincode exp02, key a, channel businesschannel -[75c 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[75d 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Got state. Sending RESPONSE -[75e 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]handleGetState serial send RESPONSE -[75f 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message GET_STATE from shim -[760 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[761 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b1b7eae5]Received GET_STATE, invoking get state from ledger -[762 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[763 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5] getting state for chaincode exp02, key b, channel businesschannel -[764 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -[765 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Got state. Sending RESPONSE -[766 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]handleGetState serial send RESPONSE -[767 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message PUT_STATE from shim -[768 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[769 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[76a 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]state is ready -[76b 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Completed PUT_STATE. Sending RESPONSE -[76c 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]enterBusyState trigger event RESPONSE -[76d 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message RESPONSE -[76e 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[76f 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[770 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message RESPONSE -[771 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message PUT_STATE from shim -[772 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[773 01-05 06:37:04.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[774 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]state is ready -[775 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b1b7eae5]Completed PUT_STATE. Sending RESPONSE -[776 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b1b7eae5]enterBusyState trigger event RESPONSE -[777 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message RESPONSE -[778 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[779 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[77a 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message RESPONSE -[77b 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message COMPLETED from shim -[77c 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[77d 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9]HandleMessage- COMPLETED. Notify -[77e 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9, channelID:businesschannel -[77f 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[780 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[781 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[782 01-05 06:37:04.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[783 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[784 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel chaincode id: name:"exp02" -[785 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -[786 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 channel id: businesschannel version: 1.1.0 -[787 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9,syscc=true,proposal=0xc4234d56d0,canname=escc:1.1.0 -[788 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[789 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[78a 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[78b 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]Inside sendExecuteMessage. Message TRANSACTION -[78c 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[78d 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[78e 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1b7eae5]sendExecuteMsg trigger event TRANSACTION -[78f 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Move state message TRANSACTION -[790 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[791 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[792 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]sending state message TRANSACTION -[793 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Received message TRANSACTION from shim -[794 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[795 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b1b7eae5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[796 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[797 01-05 06:37:04.89 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[798 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Transaction completed. Sending COMPLETED -[799 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]Move state message COMPLETED -[79a 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7eae5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[79b 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7eae5]send state message COMPLETED -[79c 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7eae5]Received message COMPLETED from shim -[79d 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[79e 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9]HandleMessage- COMPLETED. Notify -[79f 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9, channelID:businesschannel -[7a0 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7a1 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[7a2 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[7a3 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[7a4 01-05 06:37:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37188) -[7a5 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -[7a6 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -[7a7 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[7a8 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[7a9 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422c491c0 env 0xc422855470 txn 0 -[7aa 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422855470 -[7ab 01-05 06:37:06.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -[7ac 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[7ad 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[7ae 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[7af 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[7b0 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[7b1 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c51000, header channel_header:"\010\003\032\014\010\220\272\274\322\005\020\264\201\206\230\003\"\017businesschannel*@b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\200\260'3\177\324\217\034J\321RZ6\346r\344\210m\360\211q\335\370\246" -[7b2 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[7b3 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[7b4 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[7b5 01-05 06:37:06.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[7b6 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[7b7 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[7b8 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422855470 envbytes 0xc422c2c800 -[7b9 01-05 06:37:06.96 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 = [9e337f76-5bbf-48fe-ac3a-8d474c8b37fb] -[7ba 01-05 06:37:06.96 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 -[7bb 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [9e337f76-5bbf-48fe-ac3a-8d474c8b37fb] -[7bc 01-05 06:37:06.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422c2c800 -[7bd 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7be 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[7bf 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=a4f8ddcd-2b11-49f7-83f8-28b7c3c1824b,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[7c0 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 chaindID businesschannel -[7c1 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[7c2 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7c3 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[7c4 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4f8ddcd]Inside sendExecuteMessage. Message TRANSACTION -[7c5 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7c6 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4f8ddcd]sendExecuteMsg trigger event TRANSACTION -[7c7 01-05 06:37:06.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4f8ddcd]Move state message TRANSACTION -[7c8 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a4f8ddcd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7c9 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7ca 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4f8ddcd]sending state message TRANSACTION -[7cb 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]Received message TRANSACTION from shim -[7cc 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4f8ddcd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7cd 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a4f8ddcd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7ce 01-05 06:37:06.99 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[7cf 01-05 06:37:07.01 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[7d0 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[7d1 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]Transaction completed. Sending COMPLETED -[7d2 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]Move state message COMPLETED -[7d3 01-05 06:37:07.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4f8ddcd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7d4 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4f8ddcd]send state message COMPLETED -[7d5 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4f8ddcd]Received message COMPLETED from shim -[7d6 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a4f8ddcd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7d7 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a4f8ddcd-2b11-49f7-83f8-28b7c3c1824b]HandleMessage- COMPLETED. Notify -[7d8 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a4f8ddcd-2b11-49f7-83f8-28b7c3c1824b, channelID:businesschannel -[7d9 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7da 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] -[7db 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422c2c800 -[7dc 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422855470 envbytes 0xc422c2c800 -[7dd 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422c491c0 env 0xc422855470 txn 0 -[7de 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[7df 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[7e0 01-05 06:37:07.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -[7e1 01-05 06:37:07.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] -[7e2 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -[7e3 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[7e4 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[7e5 01-05 06:37:07.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=exp02, key=a -[7e6 01-05 06:37:07.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 [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[7e7 01-05 06:37:07.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=exp02, key=b -[7e8 01-05 06:37:07.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 [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[7e9 01-05 06:37:07.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 -[7ea 01-05 06:37:07.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[7eb 01-05 06:37:07.04 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 [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] marked as valid by state validator -[7ec 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[7ed 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[7ee 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[7ef 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -[7f0 01-05 06:37:07.04 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] -[7f1 01-05 06:37:07.04 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{0x83, 0xdf, 0xfb, 0x15, 0x65, 0x3d, 0xc0, 0x3f, 0x98, 0xe5, 0xc5, 0x58, 0x5, 0x23, 0xdc, 0x1e, 0xda, 0x22, 0x39, 0x6d, 0xe1, 0x50, 0xed, 0x15, 0x20, 0xf4, 0xa8, 0x80, 0xac, 0xf, 0x5f, 0x2d} txOffsets= -txId=b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 locPointer=offset=70, bytesLength=2916 +[c3f 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to index +[c40 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3461] for tx number:[0] ID: [67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053] to blockNumTranNum index +[c41 01-13 06:14:38.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=[50742], isChainEmpty=[false], lastBlockNumber=[4] +[c42 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +[c43 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +[c44 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +[c45 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +[c46 01-13 06:14:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[c47 01-13 06:14:38.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 +[c48 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[c49 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +[c4a 01-13 06:14:38.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 [4] with [1] transactions +[c4b 01-13 06:14:38.99 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 +[c4c 01-13 06:14:38.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 [4] +[c4d 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[c4e 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 67a5c4835e79200cf2b74d8979dfd5c2a1d7eda0b5e647f4511dd9f6d6461053 +[c4f 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[c50 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[c51 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[c52 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[c53 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[c54 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[c55 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[c56 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[c57 01-13 06:14:38.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[c58 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53712 +[c59 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423a38ab0 +[c5a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[c5b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[c5c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[c5d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[c5e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[c5f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423927db0, header 0xc423a38e10 +[c60 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[c61 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa +[c62 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +[c63 01-13 06:14:39.64 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 +[c64 01-13 06:14:39.64 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 = [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +[c65 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel +[c66 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel version: 1.1.0 +[c67 01-13 06:14:39.64 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.1.0,txid=614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa,syscc=true,proposal=0xc423927db0,canname=qscc:1.1.0 +[c68 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[c69 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[c6a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[c6b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]Inside sendExecuteMessage. Message TRANSACTION +[c6c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[c6d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[c6e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]sendExecuteMsg trigger event TRANSACTION +[c6f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Move state message TRANSACTION +[c70 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[c71 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[c72 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]sending state message TRANSACTION +[c73 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Received message TRANSACTION from shim +[c74 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[c75 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [614cd3aa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[c76 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[c77 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Transaction completed. Sending COMPLETED +[c78 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Move state message COMPLETED +[c79 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[c7a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]send state message COMPLETED +[c7b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Received message COMPLETED from shim +[c7c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[c7d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa]HandleMessage- COMPLETED. Notify +[c7e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa, channelID:businesschannel +[c7f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[c80 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[c81 01-13 06:14:39.64 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 +[c82 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +[c83 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[c84 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel chaincode id: name:"qscc" +[c85 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[c86 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa channel id: businesschannel version: 1.1.0 +[c87 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa,syscc=true,proposal=0xc423927db0,canname=escc:1.1.0 +[c88 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[c89 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[c8a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[c8b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]Inside sendExecuteMessage. Message TRANSACTION +[c8c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[c8d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[c8e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [614cd3aa]sendExecuteMsg trigger event TRANSACTION +[c8f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Move state message TRANSACTION +[c90 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[c91 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[c92 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]sending state message TRANSACTION +[c93 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Received message TRANSACTION from shim +[c94 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[c95 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [614cd3aa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[c96 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[c97 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[c98 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Transaction completed. Sending COMPLETED +[c99 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]Move state message COMPLETED +[c9a 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [614cd3aa]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[c9b 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [614cd3aa]send state message COMPLETED +[c9c 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [614cd3aa]Received message COMPLETED from shim +[c9d 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[c9e 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa]HandleMessage- COMPLETED. Notify +[c9f 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa, channelID:businesschannel +[ca0 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[ca1 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[ca2 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[ca3 01-13 06:14:39.64 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 [614cd3aa6f661172802418c905d849771ac368a5c342bbfa1f257ce549933cfa] +[ca4 01-13 06:14:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53712) +[ca5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53714 +[ca6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423cd5290 +[ca7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[ca8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[ca9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[caa 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[cab 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[cac 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423cd2dc0, header 0xc423cd55f0 +[cad 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[cae 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b +[caf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +[cb0 01-13 06:14:40.68 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 +[cb1 01-13 06:14:40.68 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 = [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +[cb2 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel +[cb3 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel version: 1.1.0 +[cb4 01-13 06:14:40.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=qscc,version=1.1.0,txid=872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b,syscc=true,proposal=0xc423cd2dc0,canname=qscc:1.1.0 +[cb5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[cb6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[cb7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[cb8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]Inside sendExecuteMessage. Message TRANSACTION +[cb9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[cba 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[cbb 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]sendExecuteMsg trigger event TRANSACTION +[cbc 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Move state message TRANSACTION +[cbd 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[cbe 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[cbf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]sending state message TRANSACTION +[cc0 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Received message TRANSACTION from shim +[cc1 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[cc2 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [872b4f44]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[cc3 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[cc4 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Transaction completed. Sending COMPLETED +[cc5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Move state message COMPLETED +[cc6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[cc7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]send state message COMPLETED +[cc8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Received message COMPLETED from shim +[cc9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[cca 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b]HandleMessage- COMPLETED. Notify +[ccb 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b, channelID:businesschannel +[ccc 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[ccd 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[cce 01-13 06:14:40.68 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 +[ccf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +[cd0 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[cd1 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel chaincode id: name:"qscc" +[cd2 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[cd3 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b channel id: businesschannel version: 1.1.0 +[cd4 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b,syscc=true,proposal=0xc423cd2dc0,canname=escc:1.1.0 +[cd5 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[cd6 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[cd7 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[cd8 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]Inside sendExecuteMessage. Message TRANSACTION +[cd9 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[cda 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[cdb 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [872b4f44]sendExecuteMsg trigger event TRANSACTION +[cdc 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Move state message TRANSACTION +[cdd 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[cde 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[cdf 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]sending state message TRANSACTION +[ce0 01-13 06:14:40.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Received message TRANSACTION from shim +[ce1 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[ce2 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [872b4f44]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[ce3 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[ce4 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[ce5 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Transaction completed. Sending COMPLETED +[ce6 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]Move state message COMPLETED +[ce7 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [872b4f44]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ce8 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [872b4f44]send state message COMPLETED +[ce9 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [872b4f44]Received message COMPLETED from shim +[cea 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f44]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[ceb 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b]HandleMessage- COMPLETED. Notify +[cec 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b, channelID:businesschannel +[ced 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[cee 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[cef 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[cf0 01-13 06:14:40.69 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 [872b4f449bec05bd27c9a22096479a05c6bb8f6e509f6cb3d318396df9d7f01b] +[cf1 01-13 06:14:40.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53714) +[cf2 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53716 +[cf3 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423e7ff50 +[cf4 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[cf5 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[cf6 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[cf7 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[cf8 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[cf9 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423e7b4f0, header 0xc423ee62d0 +[cfa 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[cfb 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 +[cfc 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +[cfd 01-13 06:14:41.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 +[cfe 01-13 06:14:41.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 = [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +[cff 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel +[d00 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel version: 1.1.0 +[d01 01-13 06:14:41.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=qscc,version=1.1.0,txid=be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31,syscc=true,proposal=0xc423e7b4f0,canname=qscc:1.1.0 +[d02 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[d03 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[d04 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[d05 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]Inside sendExecuteMessage. Message TRANSACTION +[d06 01-13 06:14:41.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[d07 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[d08 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]sendExecuteMsg trigger event TRANSACTION +[d09 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Move state message TRANSACTION +[d0a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[d0b 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[d0c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]sending state message TRANSACTION +[d0d 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Received message TRANSACTION from shim +[d0e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[d0f 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be0cf7fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[d10 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[d11 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Transaction completed. Sending COMPLETED +[d12 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Move state message COMPLETED +[d13 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[d14 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]send state message COMPLETED +[d15 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Received message COMPLETED from shim +[d16 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[d17 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31]HandleMessage- COMPLETED. Notify +[d18 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31, channelID:businesschannel +[d19 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[d1a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[d1b 01-13 06:14:41.74 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 +[d1c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +[d1d 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[d1e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel chaincode id: name:"qscc" +[d1f 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[d20 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31 channel id: businesschannel version: 1.1.0 +[d21 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31,syscc=true,proposal=0xc423e7b4f0,canname=escc:1.1.0 +[d22 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[d23 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[d24 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[d25 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]Inside sendExecuteMessage. Message TRANSACTION +[d26 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[d27 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[d28 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [be0cf7fe]sendExecuteMsg trigger event TRANSACTION +[d29 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Move state message TRANSACTION +[d2a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[d2b 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[d2c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]sending state message TRANSACTION +[d2d 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Received message TRANSACTION from shim +[d2e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[d2f 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [be0cf7fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[d30 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[d31 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[d32 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Transaction completed. Sending COMPLETED +[d33 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]Move state message COMPLETED +[d34 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [be0cf7fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[d35 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [be0cf7fe]send state message COMPLETED +[d36 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [be0cf7fe]Received message COMPLETED from shim +[d37 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[d38 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31]HandleMessage- COMPLETED. Notify +[d39 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31, channelID:businesschannel +[d3a 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[d3b 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[d3c 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[d3d 01-13 06:14:41.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 [be0cf7fe84420ee6490be36c72acd6771f692b0e6090b7d5feb8c0c482730e31] +[d3e 01-13 06:14:41.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53716) +[d3f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53718 +[d40 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423f90540 +[d41 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[d42 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[d43 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[d44 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[d45 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[d46 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423f86730, header 0xc423f908a0 +[d47 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[d48 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db +[d49 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +[d4a 01-13 06:14:42.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 +[d4b 01-13 06:14:42.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 = [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +[d4c 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel +[d4d 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel version: 1.1.0 +[d4e 01-13 06:14:42.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.1.0,txid=f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db,syscc=true,proposal=0xc423f86730,canname=qscc:1.1.0 +[d4f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[d50 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[d51 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[d52 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]Inside sendExecuteMessage. Message TRANSACTION +[d53 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[d54 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[d55 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]sendExecuteMsg trigger event TRANSACTION +[d56 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Move state message TRANSACTION +[d57 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[d58 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[d59 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]sending state message TRANSACTION +[d5a 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Received message TRANSACTION from shim +[d5b 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[d5c 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f11007a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[d5d 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[d5e 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Transaction completed. Sending COMPLETED +[d5f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Move state message COMPLETED +[d60 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[d61 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]send state message COMPLETED +[d62 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Received message COMPLETED from shim +[d63 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[d64 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db]HandleMessage- COMPLETED. Notify +[d65 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db, channelID:businesschannel +[d66 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[d67 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[d68 01-13 06:14:42.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 +[d69 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +[d6a 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[d6b 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel chaincode id: name:"qscc" +[d6c 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[d6d 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db channel id: businesschannel version: 1.1.0 +[d6e 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db,syscc=true,proposal=0xc423f86730,canname=escc:1.1.0 +[d6f 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[d70 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[d71 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[d72 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]Inside sendExecuteMessage. Message TRANSACTION +[d73 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[d74 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[d75 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f11007a5]sendExecuteMsg trigger event TRANSACTION +[d76 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Move state message TRANSACTION +[d77 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[d78 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[d79 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]sending state message TRANSACTION +[d7a 01-13 06:14:42.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Received message TRANSACTION from shim +[d7b 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[d7c 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f11007a5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[d7d 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[d7e 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[d7f 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Transaction completed. Sending COMPLETED +[d80 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]Move state message COMPLETED +[d81 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f11007a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[d82 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f11007a5]send state message COMPLETED +[d83 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f11007a5]Received message COMPLETED from shim +[d84 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[d85 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db]HandleMessage- COMPLETED. Notify +[d86 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db, channelID:businesschannel +[d87 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[d88 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[d89 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[d8a 01-13 06:14:42.79 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 [f11007a58b18ed46d971d8e3cd9dc092328c209be1c9a2f6be9dbb96ddba68db] +[d8b 01-13 06:14:42.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53718) +[d8c 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53720 +[d8d 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4240cc7b0 +[d8e 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[d8f 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[d90 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[d91 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[d92 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[d93 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42406cd70, header 0xc4240ccb10 +[d94 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[d95 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 +[d96 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +[d97 01-13 06:14:43.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 +[d98 01-13 06:14:43.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 = [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +[d99 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel +[d9a 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel version: 1.1.0 +[d9b 01-13 06:14:43.82 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.1.0,txid=66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1,syscc=true,proposal=0xc42406cd70,canname=qscc:1.1.0 +[d9c 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[d9d 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[d9e 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[d9f 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]Inside sendExecuteMessage. Message TRANSACTION +[da0 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[da1 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[da2 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]sendExecuteMsg trigger event TRANSACTION +[da3 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Move state message TRANSACTION +[da4 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[da5 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[da6 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]sending state message TRANSACTION +[da7 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Received message TRANSACTION from shim +[da8 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[da9 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66275c06]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[daa 01-13 06:14:43.82 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[dab 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Transaction completed. Sending COMPLETED +[dac 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Move state message COMPLETED +[dad 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[dae 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]send state message COMPLETED +[daf 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Received message COMPLETED from shim +[db0 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[db1 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1]HandleMessage- COMPLETED. Notify +[db2 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1, channelID:businesschannel +[db3 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[db4 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[db5 01-13 06:14:43.83 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 +[db6 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +[db7 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[db8 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel chaincode id: name:"qscc" +[db9 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[dba 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1 channel id: businesschannel version: 1.1.0 +[dbb 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1,syscc=true,proposal=0xc42406cd70,canname=escc:1.1.0 +[dbc 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[dbd 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[dbe 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[dbf 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]Inside sendExecuteMessage. Message TRANSACTION +[dc0 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[dc1 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[dc2 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66275c06]sendExecuteMsg trigger event TRANSACTION +[dc3 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Move state message TRANSACTION +[dc4 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[dc5 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[dc6 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]sending state message TRANSACTION +[dc7 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Received message TRANSACTION from shim +[dc8 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[dc9 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66275c06]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[dca 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[dcb 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[dcc 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Transaction completed. Sending COMPLETED +[dcd 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]Move state message COMPLETED +[dce 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66275c06]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[dcf 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66275c06]send state message COMPLETED +[dd0 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66275c06]Received message COMPLETED from shim +[dd1 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[dd2 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1]HandleMessage- COMPLETED. Notify +[dd3 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1, channelID:businesschannel +[dd4 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[dd5 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[dd6 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[dd7 01-13 06:14:43.83 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 [66275c06090fb583fafbb23b8ff0504e7f4836cf2e1a28d569e61dcdb4ac76e1] +[dd8 01-13 06:14:43.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53720) +[dd9 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40156 +[dda 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424397470 +[ddb 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[ddc 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[ddd 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[dde 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[ddf 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[de0 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4243d46e0, header 0xc4243977d0 +[de1 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[de2 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +[de3 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[de4 01-13 06:14:44.55 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 +[de5 01-13 06:14:44.55 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 = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[de6 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel +[de7 01-13 06:14:44.55 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.1.0,txid=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421,syscc=true,proposal=0xc4243d46e0,canname=lscc:1.1.0 +[de8 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[de9 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +[dea 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[deb 01-13 06:14:44.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]Inside sendExecuteMessage. Message TRANSACTION +[dec 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[ded 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[dee 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]sendExecuteMsg trigger event TRANSACTION +[def 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message TRANSACTION +[df0 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[df1 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[df2 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message TRANSACTION +[df3 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Received message TRANSACTION from shim +[df4 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[df5 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1cbbae78]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[df6 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1cbbae78]Sending GET_STATE +[df7 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message GET_STATE from shim +[df8 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[df9 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1cbbae78]Received GET_STATE, invoking get state from ledger +[dfa 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[dfb 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78] getting state for chaincode lscc, key exp02, channel businesschannel +[dfc 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[dfd 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Got state. Sending RESPONSE +[dfe 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]handleGetState serial send RESPONSE +[dff 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Received message RESPONSE from shim +[e00 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[e01 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1cbbae78]before send +[e02 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1cbbae78]after send +[e04 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1cbbae78]GetState received payload RESPONSE +[e05 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Transaction completed. Sending COMPLETED +[e03 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1cbbae78]Received RESPONSE, communicated (state:ready) +[e06 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Move state message COMPLETED +[e07 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[e08 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]send state message COMPLETED +[e09 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message COMPLETED from shim +[e0a 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[e0b 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421]HandleMessage- COMPLETED. Notify +[e0c 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421, channelID:businesschannel +[e0d 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +[e0e 01-13 06:14:44.56 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 +[e0f 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel version: 1.0 +[e10 01-13 06:14:44.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=exp02,version=1.0,txid=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421,syscc=false,proposal=0xc4243d46e0,canname=exp02:1.0 +[e11 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +[e12 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[e13 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[e14 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]Inside sendExecuteMessage. Message TRANSACTION +[e15 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[e16 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[e17 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]sendExecuteMsg trigger event TRANSACTION +[e18 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message TRANSACTION +[e19 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[e1a 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e1b 01-13 06:14:44.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message TRANSACTION +[e1c 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message GET_STATE from shim +[e1d 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[e1e 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1cbbae78]Received GET_STATE, invoking get state from ledger +[e1f 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e20 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78] getting state for chaincode exp02, key a, channel businesschannel +[e21 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +[e22 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Got state. Sending RESPONSE +[e23 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]handleGetState serial send RESPONSE +[e24 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message GET_STATE from shim +[e25 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[e26 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1cbbae78]Received GET_STATE, invoking get state from ledger +[e27 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e28 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78] getting state for chaincode exp02, key b, channel businesschannel +[e29 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b +[e2a 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Got state. Sending RESPONSE +[e2b 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]handleGetState serial send RESPONSE +[e2c 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message PUT_STATE from shim +[e2d 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[e2e 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e2f 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]state is ready +[e30 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Completed PUT_STATE. Sending RESPONSE +[e31 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]enterBusyState trigger event RESPONSE +[e32 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message RESPONSE +[e33 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[e34 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e35 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message RESPONSE +[e36 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message PUT_STATE from shim +[e37 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[e38 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e39 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]state is ready +[e3a 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1cbbae78]Completed PUT_STATE. Sending RESPONSE +[e3b 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1cbbae78]enterBusyState trigger event RESPONSE +[e3c 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message RESPONSE +[e3d 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[e3e 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e3f 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message RESPONSE +[e40 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message COMPLETED from shim +[e41 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[e42 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421]HandleMessage- COMPLETED. Notify +[e43 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421, channelID:businesschannel +[e44 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[e45 01-13 06:14:44.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[e46 01-13 06:14:44.58 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 +[e47 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[e48 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[e49 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel chaincode id: name:"exp02" +[e4a 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +[e4b 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 channel id: businesschannel version: 1.1.0 +[e4c 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421,syscc=true,proposal=0xc4243d46e0,canname=escc:1.1.0 +[e4d 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[e4e 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[e4f 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[e50 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]Inside sendExecuteMessage. Message TRANSACTION +[e51 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[e52 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[e53 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1cbbae78]sendExecuteMsg trigger event TRANSACTION +[e54 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Move state message TRANSACTION +[e55 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[e56 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e57 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]sending state message TRANSACTION +[e58 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Received message TRANSACTION from shim +[e59 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[e5a 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1cbbae78]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[e5b 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[e5c 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[e5d 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Transaction completed. Sending COMPLETED +[e5e 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]Move state message COMPLETED +[e5f 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbbae78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[e60 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbbae78]send state message COMPLETED +[e61 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbbae78]Received message COMPLETED from shim +[e62 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[e63 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421]HandleMessage- COMPLETED. Notify +[e64 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421, channelID:businesschannel +[e65 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[e66 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[e67 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[e68 01-13 06:14:44.58 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[e69 01-13 06:14:44.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40156) +[e6a 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53730 +[e6b 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427657560 +[e6c 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[e6d 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[e6e 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[e6f 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[e70 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[e71 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424537a90, header 0xc4276578c0 +[e72 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[e73 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 +[e74 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +[e75 01-13 06:14:44.87 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 +[e76 01-13 06:14:44.87 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 = [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +[e77 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel +[e78 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel version: 1.1.0 +[e79 01-13 06:14:44.87 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.1.0,txid=9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90,syscc=true,proposal=0xc424537a90,canname=qscc:1.1.0 +[e7a 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[e7b 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[e7c 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[e7d 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]Inside sendExecuteMessage. Message TRANSACTION +[e7e 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[e7f 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[e80 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]sendExecuteMsg trigger event TRANSACTION +[e81 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Move state message TRANSACTION +[e82 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[e83 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[e84 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]sending state message TRANSACTION +[e85 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Received message TRANSACTION from shim +[e86 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[e87 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9b1dea9b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[e88 01-13 06:14:44.87 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[e89 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Transaction completed. Sending COMPLETED +[e8a 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Move state message COMPLETED +[e8b 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[e8c 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]send state message COMPLETED +[e8d 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Received message COMPLETED from shim +[e8e 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[e8f 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90]HandleMessage- COMPLETED. Notify +[e90 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90, channelID:businesschannel +[e91 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[e92 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[e93 01-13 06:14:44.88 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 +[e94 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +[e95 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[e96 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel chaincode id: name:"qscc" +[e97 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[e98 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90 channel id: businesschannel version: 1.1.0 +[e99 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90,syscc=true,proposal=0xc424537a90,canname=escc:1.1.0 +[e9a 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[e9b 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[e9c 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[e9d 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]Inside sendExecuteMessage. Message TRANSACTION +[e9e 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[e9f 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[ea0 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b1dea9b]sendExecuteMsg trigger event TRANSACTION +[ea1 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Move state message TRANSACTION +[ea2 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[ea3 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[ea4 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]sending state message TRANSACTION +[ea5 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Received message TRANSACTION from shim +[ea6 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[ea7 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9b1dea9b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[ea8 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[ea9 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[eaa 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Transaction completed. Sending COMPLETED +[eab 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]Move state message COMPLETED +[eac 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b1dea9b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ead 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b1dea9b]send state message COMPLETED +[eae 01-13 06:14:44.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b1dea9b]Received message COMPLETED from shim +[eaf 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[eb0 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90]HandleMessage- COMPLETED. Notify +[eb1 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90, channelID:businesschannel +[eb2 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[eb3 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[eb4 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[eb5 01-13 06:14:44.89 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 [9b1dea9b8e20f91ba6dabe9c0aa4cdde2a819c63fbba6d85d56e033901990b90] +[eb6 01-13 06:14:44.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53730) +[eb7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53732 +[eb8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427875a70 +[eb9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[eba 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[ebb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[ebc 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[ebd 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[ebe 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42788eb40, header 0xc427875dd0 +[ebf 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[ec0 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 +[ec1 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +[ec2 01-13 06:14:45.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 +[ec3 01-13 06:14:45.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 = [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +[ec4 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel +[ec5 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel version: 1.1.0 +[ec6 01-13 06:14:45.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.1.0,txid=99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8,syscc=true,proposal=0xc42788eb40,canname=qscc:1.1.0 +[ec7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[ec8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[ec9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[eca 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]Inside sendExecuteMessage. Message TRANSACTION +[ecb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[ecc 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[ecd 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]sendExecuteMsg trigger event TRANSACTION +[ece 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Move state message TRANSACTION +[ecf 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[ed0 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[ed1 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]sending state message TRANSACTION +[ed2 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Received message TRANSACTION from shim +[ed3 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[ed4 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [99771384]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[ed5 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[ed6 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Transaction completed. Sending COMPLETED +[ed7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Move state message COMPLETED +[ed8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ed9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]send state message COMPLETED +[eda 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Received message COMPLETED from shim +[edb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[edc 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8]HandleMessage- COMPLETED. Notify +[edd 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8, channelID:businesschannel +[ede 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[edf 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[ee0 01-13 06:14:45.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 +[ee1 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +[ee2 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[ee3 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel chaincode id: name:"qscc" +[ee4 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[ee5 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8 channel id: businesschannel version: 1.1.0 +[ee6 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8,syscc=true,proposal=0xc42788eb40,canname=escc:1.1.0 +[ee7 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[ee8 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[ee9 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[eea 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]Inside sendExecuteMessage. Message TRANSACTION +[eeb 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[eec 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[eed 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [99771384]sendExecuteMsg trigger event TRANSACTION +[eee 01-13 06:14:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Move state message TRANSACTION +[eef 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[ef0 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[ef1 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]sending state message TRANSACTION +[ef2 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Received message TRANSACTION from shim +[ef3 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[ef4 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [99771384]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[ef5 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[ef6 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[ef7 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Transaction completed. Sending COMPLETED +[ef8 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]Move state message COMPLETED +[ef9 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [99771384]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[efa 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [99771384]send state message COMPLETED +[efb 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [99771384]Received message COMPLETED from shim +[efc 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[efd 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8]HandleMessage- COMPLETED. Notify +[efe 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8, channelID:businesschannel +[eff 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[f00 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[f01 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[f02 01-13 06:14:45.93 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 [99771384da1104b7621ab6069d1eae1f9b4ade89a6ad48114184b92da08e0ec8] +[f03 01-13 06:14:45.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53732) +[f04 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +[f05 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +[f06 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[f07 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[f08 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc427852e80 env 0xc4278338f0 txn 0 +[f09 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4278338f0 +[f0a 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +[f0b 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[f0c 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[f0d 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[f0e 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[f0f 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[f10 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42794e000, header channel_header:"\010\003\032\014\010\324\307\346\322\005\020\370\345\276\210\002\"\017businesschannel*@1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5\nyfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ\nNEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3\n2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd\njTZ94VyvHhJOn4fshoU=\n-----END CERTIFICATE-----\n\022\030\022K\3625\273\372\023\241\362\337\333X\002\010C\035d\323H\206\256\344\253\233" +[f11 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[f12 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[f13 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[f14 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[f15 01-13 06:14:46.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[f16 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[f17 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4278338f0 envbytes 0xc427939c00 +[f18 01-13 06:14:46.61 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 = [5b394d9b-441a-4d3c-a60b-56108a814237] +[f19 01-13 06:14:46.61 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 +[f1a 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [5b394d9b-441a-4d3c-a60b-56108a814237] +[f1b 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc427939c00 +[f1c 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[f1d 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[f1e 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=f05c5645-71e4-4338-b804-0db2663bbcd7,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[f1f 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 chaindID businesschannel +[f20 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[f21 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[f22 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[f23 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f05c5645]Inside sendExecuteMessage. Message TRANSACTION +[f24 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[f25 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f05c5645]sendExecuteMsg trigger event TRANSACTION +[f26 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f05c5645]Move state message TRANSACTION +[f27 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f05c5645]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[f28 01-13 06:14:46.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[f29 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f05c5645]sending state message TRANSACTION +[f2a 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]Received message TRANSACTION from shim +[f2b 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f05c5645]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[f2c 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f05c5645]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[f2d 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[f2e 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[f2f 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[f30 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]Transaction completed. Sending COMPLETED +[f31 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]Move state message COMPLETED +[f32 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f05c5645]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[f33 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f05c5645]send state message COMPLETED +[f34 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f05c5645]Received message COMPLETED from shim +[f35 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f05c5645]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[f36 01-13 06:14:46.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f05c5645-71e4-4338-b804-0db2663bbcd7]HandleMessage- COMPLETED. Notify +[f37 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f05c5645-71e4-4338-b804-0db2663bbcd7, channelID:businesschannel +[f38 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[f39 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] +[f3a 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc427939c00 +[f3b 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4278338f0 envbytes 0xc427939c00 +[f3c 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc427852e80 env 0xc4278338f0 txn 0 +[f3d 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[f3e 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[f3f 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +[f40 01-13 06:14:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[f41 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +[f42 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[f43 01-13 06:14:46.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[f44 01-13 06:14:46.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=exp02, key=a +[f45 01-13 06:14:46.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 [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[f46 01-13 06:14:46.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=exp02, key=b +[f47 01-13 06:14:46.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 [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[f48 01-13 06:14:46.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 +[f49 01-13 06:14:46.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[f4a 01-13 06:14:46.67 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 [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] marked as valid by state validator +[f4b 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[f4c 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[f4d 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[f4e 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +[f4f 01-13 06:14:46.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 [5] +[f50 01-13 06:14:46.67 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{0xb9, 0x8b, 0x16, 0x3d, 0x64, 0x2e, 0xc5, 0xca, 0x4d, 0x62, 0x11, 0x26, 0x11, 0x2a, 0x6a, 0xcf, 0x95, 0xbe, 0x8c, 0x27, 0x26, 0x1b, 0xd1, 0xd0, 0x7d, 0xb5, 0xa6, 0xa6, 0xa, 0xd3, 0xa8, 0x28} txOffsets= +txId=1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 locPointer=offset=70, bytesLength=2916 ] -[7f2 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to index -[7f3 01-05 06:37:07.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50811, bytesLength=2916] for tx number:[0] ID: [b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9] to blockNumTranNum index -[7f4 01-05 06:37:07.05 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=[55522], isChainEmpty=[false], lastBlockNumber=[5] -[7f5 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -[7f6 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] -[7f7 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -[7f8 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -[7f9 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[7fa 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[7fb 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[7fc 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[7fd 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[7fe 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -[7ff 01-05 06:37:07.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[800 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[801 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[802 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: b1b7eae5b96bf89be1a02a9e94e521ae3b5350e606fe36b14e3b69c8dc5862f9 -[803 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[804 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[805 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[806 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[807 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[808 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[809 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[80a 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[80b 01-05 06:37:07.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[80c 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37202 -[80d 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422982ae0 -[80e 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[80f 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[810 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[811 01-05 06:37:14.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[812 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[813 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ee97c0, header 0xc422982b10 -[814 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[815 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 -[816 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -[817 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[818 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -[819 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel -[81a 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3,syscc=true,proposal=0xc421ee97c0,canname=lscc:1.1.0 -[81b 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[81c 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -[81d 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[81e 01-05 06:37:14.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]Inside sendExecuteMessage. Message TRANSACTION -[81f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[820 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[821 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]sendExecuteMsg trigger event TRANSACTION -[822 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Move state message TRANSACTION -[823 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[824 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[825 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]sending state message TRANSACTION -[826 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Received message TRANSACTION from shim -[827 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[828 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [539af21d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[829 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [539af21d]Sending GET_STATE -[82a 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message GET_STATE from shim -[82b 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[82c 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [539af21d]Received GET_STATE, invoking get state from ledger -[82d 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[82e 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d] getting state for chaincode lscc, key exp02, channel businesschannel -[82f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[830 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d]Got state. Sending RESPONSE -[831 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [539af21d]handleGetState serial send RESPONSE -[832 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Received message RESPONSE from shim -[833 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[834 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [539af21d]before send -[835 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [539af21d]after send -[836 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [539af21d]Received RESPONSE, communicated (state:ready) -[837 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [539af21d]GetState received payload RESPONSE -[838 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Transaction completed. Sending COMPLETED -[839 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Move state message COMPLETED -[83a 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[83b 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]send state message COMPLETED -[83c 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message COMPLETED from shim -[83d 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[83e 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3]HandleMessage- COMPLETED. Notify -[83f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3, channelID:businesschannel -[840 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -[841 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[842 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel version: 1.0 -[843 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3,syscc=false,proposal=0xc421ee97c0,canname=exp02:1.0 -[844 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -[845 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[846 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -[847 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]Inside sendExecuteMessage. Message TRANSACTION -[848 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[849 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[84a 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]sendExecuteMsg trigger event TRANSACTION -[84b 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Move state message TRANSACTION -[84c 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[84d 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[84e 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]sending state message TRANSACTION -[84f 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message GET_STATE from shim -[850 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[851 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [539af21d]Received GET_STATE, invoking get state from ledger -[852 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[853 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d] getting state for chaincode exp02, key a, channel businesschannel -[854 01-05 06:37:14.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[855 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [539af21d]Got state. Sending RESPONSE -[856 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [539af21d]handleGetState serial send RESPONSE -[857 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message COMPLETED from shim -[858 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[859 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3]HandleMessage- COMPLETED. Notify -[85a 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3, channelID:businesschannel -[85b 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[85c 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[85d 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[85e 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -[85f 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[860 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel chaincode id: name:"exp02" -[861 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -[862 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3 channel id: businesschannel version: 1.1.0 -[863 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3,syscc=true,proposal=0xc421ee97c0,canname=escc:1.1.0 -[864 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[865 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[866 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[867 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]Inside sendExecuteMessage. Message TRANSACTION -[868 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[869 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[86a 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [539af21d]sendExecuteMsg trigger event TRANSACTION -[86b 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Move state message TRANSACTION -[86c 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[86d 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[86e 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]sending state message TRANSACTION -[86f 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Received message TRANSACTION from shim -[870 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[871 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [539af21d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[872 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[873 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[874 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Transaction completed. Sending COMPLETED -[875 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]Move state message COMPLETED -[876 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [539af21d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[877 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [539af21d]send state message COMPLETED -[878 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [539af21d]Received message COMPLETED from shim -[879 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[87a 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3]HandleMessage- COMPLETED. Notify -[87b 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3, channelID:businesschannel -[87c 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[87d 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[87e 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[87f 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [539af21d635a2c0d37f0db9f3b3b8799b9c874c6e1b26b13b8cefa0d0ed753a3] -[880 01-05 06:37:14.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37202) -[881 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37206 -[882 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42349dbf0 -[883 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[884 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[885 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[886 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[887 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[888 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422601810, header 0xc42349dc20 -[889 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[88a 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e -[88b 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -[88c 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[88d 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -[88e 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel -[88f 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel version: 1.1.0 -[890 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e,syscc=true,proposal=0xc422601810,canname=lscc:1.1.0 -[891 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[892 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[893 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[894 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]Inside sendExecuteMessage. Message TRANSACTION -[895 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[896 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[897 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]sendExecuteMsg trigger event TRANSACTION -[898 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Move state message TRANSACTION -[899 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[89a 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[89b 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]sending state message TRANSACTION -[89c 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Received message TRANSACTION from shim -[89d 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[89e 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [849bd9b5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[89f 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [849bd9b5]Sending GET_STATE -[8a0 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Received message GET_STATE from shim -[8a1 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[8a2 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [849bd9b5]Received GET_STATE, invoking get state from ledger -[8a3 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8a4 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [849bd9b5] getting state for chaincode lscc, key exp02, channel businesschannel -[8a5 01-05 06:37:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[8a6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [849bd9b5]Got state. Sending RESPONSE -[8a7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [849bd9b5]handleGetState serial send RESPONSE -[8a8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Received message RESPONSE from shim -[8a9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[8aa 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [849bd9b5]before send -[8ab 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [849bd9b5]after send -[8ac 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [849bd9b5]Received RESPONSE, communicated (state:ready) -[8ad 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [849bd9b5]GetState received payload RESPONSE -[8ae 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Transaction completed. Sending COMPLETED -[8af 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Move state message COMPLETED -[8b0 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8b1 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]send state message COMPLETED -[8b2 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Received message COMPLETED from shim -[8b3 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8b4 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e]HandleMessage- COMPLETED. Notify -[8b5 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e, channelID:businesschannel -[8b6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8b7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[8b8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[8b9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -[8ba 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[8bb 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel chaincode id: name:"lscc" -[8bc 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[8bd 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e channel id: businesschannel version: 1.1.0 -[8be 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e,syscc=true,proposal=0xc422601810,canname=escc:1.1.0 -[8bf 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[8c0 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8c1 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[8c2 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]Inside sendExecuteMessage. Message TRANSACTION -[8c3 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8c4 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8c5 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [849bd9b5]sendExecuteMsg trigger event TRANSACTION -[8c6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Move state message TRANSACTION -[8c7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8c8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8c9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]sending state message TRANSACTION -[8ca 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Received message TRANSACTION from shim -[8cb 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8cc 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [849bd9b5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8cd 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[8ce 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[8cf 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Transaction completed. Sending COMPLETED -[8d0 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]Move state message COMPLETED -[8d1 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [849bd9b5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8d2 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [849bd9b5]send state message COMPLETED -[8d3 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [849bd9b5]Received message COMPLETED from shim -[8d4 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8d5 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e]HandleMessage- COMPLETED. Notify -[8d6 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e, channelID:businesschannel -[8d7 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8d8 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8d9 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[8da 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [849bd9b5b76961d0316d8f2a0f67b94887a67e72674ae9cbeb10b71bc416877e] -[8db 01-05 06:37:15.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37206) -[8dc 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37208 -[8dd 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422854a20 -[8de 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8df 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8e0 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[8e1 01-05 06:37:15.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8e2 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8e3 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422601e50, header 0xc422854a50 -[8e4 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[8e5 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 -[8e6 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -[8e7 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8e8 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -[8e9 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel -[8ea 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel version: 1.1.0 -[8eb 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229,syscc=true,proposal=0xc422601e50,canname=lscc:1.1.0 -[8ec 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[8ed 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8ee 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[8ef 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]Inside sendExecuteMessage. Message TRANSACTION -[8f0 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8f1 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8f2 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]sendExecuteMsg trigger event TRANSACTION -[8f3 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Move state message TRANSACTION -[8f4 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8f5 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8f6 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]sending state message TRANSACTION -[8f7 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Received message TRANSACTION from shim -[8f8 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8f9 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cde09275]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8fa 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cde09275]Sending GET_STATE -[8fb 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Received message GET_STATE from shim -[8fc 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[8fd 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cde09275]Received GET_STATE, invoking get state from ledger -[8fe 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cde09275] getting state for chaincode lscc, key exp02, channel businesschannel -[8ff 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[900 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cde09275]Got state. Sending RESPONSE -[901 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cde09275]handleGetState serial send RESPONSE -[902 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Received message RESPONSE from shim -[903 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[904 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cde09275]before send -[905 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cde09275]after send -[906 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cde09275]Received RESPONSE, communicated (state:ready) -[907 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cde09275]GetState received payload RESPONSE -[908 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Transaction completed. Sending COMPLETED -[909 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Move state message COMPLETED -[90a 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[90b 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]send state message COMPLETED -[90c 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[90d 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Received message COMPLETED from shim -[90e 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[90f 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229]HandleMessage- COMPLETED. Notify -[910 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229, channelID:businesschannel -[911 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[912 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[913 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[914 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -[915 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[916 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel chaincode id: name:"lscc" -[917 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[918 01-05 06:37:15.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229 channel id: businesschannel version: 1.1.0 -[919 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229,syscc=true,proposal=0xc422601e50,canname=escc:1.1.0 -[91a 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[91b 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[91c 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[91d 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]Inside sendExecuteMessage. Message TRANSACTION -[91e 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[91f 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[920 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cde09275]sendExecuteMsg trigger event TRANSACTION -[921 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Move state message TRANSACTION -[922 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[923 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[924 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]sending state message TRANSACTION -[925 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Received message TRANSACTION from shim -[926 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[927 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cde09275]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[928 01-05 06:37:15.31 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[929 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[92a 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Transaction completed. Sending COMPLETED -[92b 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]Move state message COMPLETED -[92c 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cde09275]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[92d 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cde09275]send state message COMPLETED -[92e 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cde09275]Received message COMPLETED from shim -[92f 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[930 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229]HandleMessage- COMPLETED. Notify -[931 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229, channelID:businesschannel -[932 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[933 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[934 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[935 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cde09275e8f219918f9a54bda8e697f5b06388ef9268622dd045fbc439f81229] -[936 01-05 06:37:15.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37208) -[937 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37210 -[938 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225acc30 -[939 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[93a 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[93b 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[93c 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[93d 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[93e 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202f30e0, header 0xc4225acc60 -[93f 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[940 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a -[941 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -[942 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[943 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -[944 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel -[945 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel version: 1.1.0 -[946 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a,syscc=true,proposal=0xc4202f30e0,canname=lscc:1.1.0 -[947 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[948 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[949 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[94a 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]Inside sendExecuteMessage. Message TRANSACTION -[94b 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[94c 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[94d 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]sendExecuteMsg trigger event TRANSACTION -[94e 01-05 06:37:15.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Move state message TRANSACTION -[94f 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[950 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[951 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]sending state message TRANSACTION -[952 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Received message TRANSACTION from shim -[953 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[954 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b89a09fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[955 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b89a09fd]Sending GET_STATE -[956 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Received message GET_STATE from shim -[957 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[958 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b89a09fd]Received GET_STATE, invoking get state from ledger -[959 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[95a 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b89a09fd] getting state for chaincode lscc, key exp02, channel businesschannel -[95b 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[95c 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b89a09fd]Got state. Sending RESPONSE -[95d 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b89a09fd]handleGetState serial send RESPONSE -[95e 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Received message RESPONSE from shim -[95f 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[960 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b89a09fd]before send -[961 01-05 06:37:15.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b89a09fd]after send -[962 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b89a09fd]Received RESPONSE, communicated (state:ready) -[963 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b89a09fd]GetState received payload RESPONSE -[964 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Transaction completed. Sending COMPLETED -[965 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Move state message COMPLETED -[966 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[967 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]send state message COMPLETED -[968 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Received message COMPLETED from shim -[969 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[96a 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a]HandleMessage- COMPLETED. Notify -[96b 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a, channelID:businesschannel -[96c 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[96d 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[96e 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[96f 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -[970 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[971 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel chaincode id: name:"lscc" -[972 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[973 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a channel id: businesschannel version: 1.1.0 -[974 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a,syscc=true,proposal=0xc4202f30e0,canname=escc:1.1.0 -[975 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[976 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[977 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[978 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]Inside sendExecuteMessage. Message TRANSACTION -[979 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[97a 01-05 06:37:15.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[97b 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b89a09fd]sendExecuteMsg trigger event TRANSACTION -[97c 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Move state message TRANSACTION -[97d 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[97e 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[97f 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]sending state message TRANSACTION -[980 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Received message TRANSACTION from shim -[981 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[982 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b89a09fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[983 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[984 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[985 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Transaction completed. Sending COMPLETED -[986 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]Move state message COMPLETED -[987 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b89a09fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[988 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b89a09fd]send state message COMPLETED -[989 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b89a09fd]Received message COMPLETED from shim -[98a 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[98b 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a]HandleMessage- COMPLETED. Notify -[98c 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a, channelID:businesschannel -[98d 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[98e 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[98f 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[990 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b89a09fdb473c04ca1cf04e2ec81b19a6635443b1dc911101835246a5a79793a] -[991 01-05 06:37:15.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37210) -[992 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37212 -[993 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225adb30 -[994 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[995 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[996 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[997 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[998 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[999 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202f3630, header 0xc4225adb60 -[99a 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[99b 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 -[99c 01-05 06:37:15.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -[99d 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[99e 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -[99f 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel -[9a0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel version: 1.1.0 -[9a1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4,syscc=true,proposal=0xc4202f3630,canname=lscc:1.1.0 -[9a2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[9a3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[9a4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[9a5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]Inside sendExecuteMessage. Message TRANSACTION -[9a6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[9a7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[9a8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]sendExecuteMsg trigger event TRANSACTION -[9a9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Move state message TRANSACTION -[9aa 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9ab 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9ac 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]sending state message TRANSACTION -[9ad 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Received message TRANSACTION from shim -[9ae 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9af 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ed5509d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9b0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Transaction completed. Sending COMPLETED -[9b1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Move state message COMPLETED -[9b2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[9b3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]send state message COMPLETED -[9b4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Received message COMPLETED from shim -[9b5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[9b6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4]HandleMessage- COMPLETED. Notify -[9b7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4, channelID:businesschannel -[9b8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[9b9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[9ba 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[9bb 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -[9bc 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[9bd 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel chaincode id: name:"lscc" -[9be 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[9bf 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4 channel id: businesschannel version: 1.1.0 -[9c0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4,syscc=true,proposal=0xc4202f3630,canname=escc:1.1.0 -[9c1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[9c2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[9c3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[9c4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]Inside sendExecuteMessage. Message TRANSACTION -[9c5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[9c6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[9c7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8ed5509d]sendExecuteMsg trigger event TRANSACTION -[9c8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Move state message TRANSACTION -[9c9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9ca 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9cb 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]sending state message TRANSACTION -[9cc 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Received message TRANSACTION from shim -[9cd 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9ce 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8ed5509d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9cf 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[9d0 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[9d1 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Transaction completed. Sending COMPLETED -[9d2 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]Move state message COMPLETED -[9d3 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ed5509d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[9d4 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ed5509d]send state message COMPLETED -[9d5 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8ed5509d]Received message COMPLETED from shim -[9d6 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[9d7 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4]HandleMessage- COMPLETED. Notify -[9d8 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4, channelID:businesschannel -[9d9 01-05 06:37:15.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[9da 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[9db 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[9dc 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8ed5509d49ea9e932cf42f6b3b4366fadc5e23a6d9b9683674127996efa3a2c4] -[9dd 01-05 06:37:15.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37212) -[9de 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37214 -[9df 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224834d0 -[9e0 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[9e1 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[9e2 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[9e3 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[9e4 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[9e5 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218b6230, header 0xc422483500 -[9e6 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[9e7 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 -[9e8 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -[9e9 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[9ea 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -[9eb 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel -[9ec 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel version: 1.1.0 -[9ed 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900,syscc=true,proposal=0xc4218b6230,canname=lscc:1.1.0 -[9ee 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[9ef 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[9f0 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[9f1 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]Inside sendExecuteMessage. Message TRANSACTION -[9f2 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[9f3 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[9f4 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]sendExecuteMsg trigger event TRANSACTION -[9f5 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Move state message TRANSACTION -[9f6 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9f7 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9f8 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]sending state message TRANSACTION -[9f9 01-05 06:37:16.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message TRANSACTION from shim -[9fa 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9fb 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [970638c2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9fc 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [970638c2]Sending GET_STATE_BY_RANGE -[9fd 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message GET_STATE_BY_RANGE from shim -[9fe 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[9ff 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -[a00 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -[a01 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a02 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -[a03 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[a04 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -[a05 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [970638c2]handleGetStateByRange serial send RESPONSE -[a06 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message RESPONSE from shim -[a07 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[a08 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]before send -[a09 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]after send -[a0a 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [970638c2]Received RESPONSE, communicated (state:ready) -[a0b 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [970638c2]Received RESPONSE. Successfully got range -[a0c 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [970638c2]Sending QUERY_STATE_CLOSE -[a0d 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message QUERY_STATE_CLOSE from shim -[a0e 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[a0f 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -[a10 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -[a11 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a12 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -[a13 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [970638c2]handleQueryStateClose serial send RESPONSE -[a14 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message RESPONSE from shim -[a15 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[a16 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]before send -[a17 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [970638c2]after send -[a18 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [970638c2]Received RESPONSE, communicated (state:ready) -[a19 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [970638c2]Received RESPONSE. Successfully got range -[a1a 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Transaction completed. Sending COMPLETED -[a1b 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Move state message COMPLETED -[a1c 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a1d 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]send state message COMPLETED -[a1e 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message COMPLETED from shim -[a1f 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a20 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900]HandleMessage- COMPLETED. Notify -[a21 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900, channelID:businesschannel -[a22 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a23 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[a24 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[a25 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -[a26 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[a27 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel chaincode id: name:"lscc" -[a28 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[a29 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900 channel id: businesschannel version: 1.1.0 -[a2a 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900,syscc=true,proposal=0xc4218b6230,canname=escc:1.1.0 -[a2b 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[a2c 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a2d 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[a2e 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]Inside sendExecuteMessage. Message TRANSACTION -[a2f 01-05 06:37:16.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[a30 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[a31 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [970638c2]sendExecuteMsg trigger event TRANSACTION -[a32 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Move state message TRANSACTION -[a33 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a34 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a35 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]sending state message TRANSACTION -[a36 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Received message TRANSACTION from shim -[a37 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a38 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [970638c2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a39 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[a3a 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[a3b 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Transaction completed. Sending COMPLETED -[a3c 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]Move state message COMPLETED -[a3d 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [970638c2]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a3e 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [970638c2]send state message COMPLETED -[a3f 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [970638c2]Received message COMPLETED from shim -[a40 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a41 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900]HandleMessage- COMPLETED. Notify -[a42 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900, channelID:businesschannel -[a43 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a44 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[a45 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[a46 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [970638c2a71d92794fdcb626df8f9fe40e877108982db069b5cc327942829900] -[a47 01-05 06:37:16.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37214) -[a48 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -[a49 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -[a4a 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[a4b 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[a4c 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421b70980 env 0xc420327020 txn 0 -[a4d 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420327020 -[a4e 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -[a4f 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[a50 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[a51 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -[a52 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[a53 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[a54 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c33800, header channel_header:"\010\003\032\013\010\232\272\274\322\005\020\330\355\362u\"\017businesschannel*@ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030by\\\237\344\367a\252\366\345\303\346\207\266B\371G\256SM>\024`\232" -[a55 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[a56 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[a57 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[a58 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[a59 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -[a5a 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[a5b 01-05 06:37:16.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc420327020 envbytes 0xc422f48800 -[a5c 01-05 06:37:16.33 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 = [7b875325-ee4f-4973-bc47-e57276a77bb2] -[a5d 01-05 06:37:16.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 -[a5e 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [7b875325-ee4f-4973-bc47-e57276a77bb2] -[a5f 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f48800 -[a60 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[a61 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -[a62 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=48bcee46-86dc-4e95-990c-894684d66476,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[a63 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 chaindID businesschannel -[a64 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[a65 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a66 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[a67 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48bcee46]Inside sendExecuteMessage. Message TRANSACTION -[a68 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[a69 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48bcee46]sendExecuteMsg trigger event TRANSACTION -[a6a 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48bcee46]Move state message TRANSACTION -[a6b 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48bcee46]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a6c 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a6d 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48bcee46]sending state message TRANSACTION -[a6e 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]Received message TRANSACTION from shim -[a6f 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48bcee46]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a70 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [48bcee46]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a71 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[a72 01-05 06:37:16.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[a73 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[a74 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]Transaction completed. Sending COMPLETED -[a75 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]Move state message COMPLETED -[a76 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48bcee46]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a77 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48bcee46]send state message COMPLETED -[a78 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48bcee46]Received message COMPLETED from shim -[a79 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48bcee46]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a7a 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48bcee46-86dc-4e95-990c-894684d66476]HandleMessage- COMPLETED. Notify -[a7b 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48bcee46-86dc-4e95-990c-894684d66476, channelID:businesschannel -[a7c 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a7d 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] -[a7e 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f48800 -[a7f 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc420327020 envbytes 0xc422f48800 -[a80 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421b70980 env 0xc420327020 txn 0 -[a81 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[a82 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[a83 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -[a84 01-05 06:37:16.37 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] -[a85 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -[a86 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[a87 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[a88 01-05 06:37:16.37 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 -[a89 01-05 06:37:16.37 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} -[a8a 01-05 06:37:16.37 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 -[a8b 01-05 06:37:16.37 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} -[a8c 01-05 06:37:16.37 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 -[a8d 01-05 06:37:16.37 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} -[a8e 01-05 06:37:16.37 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 [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] marked as valid by state validator -[a8f 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[a90 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[a91 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[a92 01-05 06:37:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -[a93 01-05 06:37:16.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 [6] -[a94 01-05 06:37:16.45 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{0x9a, 0x78, 0xe0, 0x9f, 0x42, 0x1, 0x65, 0x9c, 0x44, 0xcd, 0xd3, 0xa5, 0xfc, 0xea, 0xf7, 0xf2, 0x5f, 0x56, 0x6e, 0x95, 0x3b, 0xf2, 0xbf, 0x58, 0x84, 0xe1, 0xf3, 0xa5, 0xa2, 0x15, 0xc5, 0x51} txOffsets= -txId=ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 locPointer=offset=70, bytesLength=2921 +[f51 01-13 06:14:46.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=50812, bytesLength=2916] for tx ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to index +[f52 01-13 06:14:46.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=50812, bytesLength=2916] for tx number:[0] ID: [1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421] to blockNumTranNum index +[f53 01-13 06:14:46.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=[55522], isChainEmpty=[false], lastBlockNumber=[5] +[f54 01-13 06:14:46.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +[f55 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +[f56 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +[f57 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +[f58 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[f59 01-13 06:14:46.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 +[f5a 01-13 06:14:46.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}] +[f5b 01-13 06:14:46.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}] +[f5c 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[f5d 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +[f5e 01-13 06:14:46.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 [5] with [1] transactions +[f5f 01-13 06:14:46.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 [5] +[f60 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[f61 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 1cbbae78f7a40774f1c3f1cf4c0bd3cf24b4b9ece81cf7ce3461cfe042f36421 +[f62 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[f63 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[f64 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[f65 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[f66 01-13 06:14:46.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[f67 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[f68 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[f69 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[f6a 01-13 06:14:46.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[f6b 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53734 +[f6c 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427b55320 +[f6d 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[f6e 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[f6f 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[f70 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[f71 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[f72 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc427b4cf00, header 0xc427b55680 +[f73 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[f74 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a +[f75 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +[f76 01-13 06:14:46.97 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 +[f77 01-13 06:14:46.97 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 = [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +[f78 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel +[f79 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel version: 1.1.0 +[f7a 01-13 06:14:46.97 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.1.0,txid=b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a,syscc=true,proposal=0xc427b4cf00,canname=qscc:1.1.0 +[f7b 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[f7c 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[f7d 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[f7e 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]Inside sendExecuteMessage. Message TRANSACTION +[f7f 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[f80 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[f81 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]sendExecuteMsg trigger event TRANSACTION +[f82 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Move state message TRANSACTION +[f83 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[f84 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[f85 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]sending state message TRANSACTION +[f86 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Received message TRANSACTION from shim +[f87 01-13 06:14:46.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[f88 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b07053bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[f89 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[f8a 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Transaction completed. Sending COMPLETED +[f8b 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Move state message COMPLETED +[f8c 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[f8d 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]send state message COMPLETED +[f8e 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Received message COMPLETED from shim +[f8f 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[f90 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a]HandleMessage- COMPLETED. Notify +[f91 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a, channelID:businesschannel +[f92 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[f93 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[f94 01-13 06:14:46.98 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 +[f95 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +[f96 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[f97 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel chaincode id: name:"qscc" +[f98 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[f99 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a channel id: businesschannel version: 1.1.0 +[f9a 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a,syscc=true,proposal=0xc427b4cf00,canname=escc:1.1.0 +[f9b 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[f9c 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[f9d 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[f9e 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]Inside sendExecuteMessage. Message TRANSACTION +[f9f 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[fa0 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[fa1 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b07053bf]sendExecuteMsg trigger event TRANSACTION +[fa2 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Move state message TRANSACTION +[fa3 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[fa4 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[fa5 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]sending state message TRANSACTION +[fa6 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Received message TRANSACTION from shim +[fa7 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[fa8 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b07053bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[fa9 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[faa 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[fab 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Transaction completed. Sending COMPLETED +[fac 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]Move state message COMPLETED +[fad 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b07053bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[fae 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b07053bf]send state message COMPLETED +[faf 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b07053bf]Received message COMPLETED from shim +[fb0 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[fb1 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a]HandleMessage- COMPLETED. Notify +[fb2 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a, channelID:businesschannel +[fb3 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[fb4 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[fb5 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[fb6 01-13 06:14:46.98 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 [b07053bfbee95b1ffc2fbe53c9aeec13ccf141687080d97a40ad03dc452b695a] +[fb7 01-13 06:14:46.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53734) +[fb8 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53736 +[fb9 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427c59500 +[fba 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[fbb 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[fbc 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[fbd 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[fbe 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[fbf 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc427b73ef0, header 0xc427c59860 +[fc0 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[fc1 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb +[fc2 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +[fc3 01-13 06:14:48.02 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 +[fc4 01-13 06:14:48.02 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 = [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +[fc5 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel +[fc6 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel version: 1.1.0 +[fc7 01-13 06:14:48.02 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.1.0,txid=2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb,syscc=true,proposal=0xc427b73ef0,canname=qscc:1.1.0 +[fc8 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[fc9 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[fca 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[fcb 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]Inside sendExecuteMessage. Message TRANSACTION +[fcc 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[fcd 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[fce 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]sendExecuteMsg trigger event TRANSACTION +[fcf 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Move state message TRANSACTION +[fd0 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[fd1 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[fd2 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]sending state message TRANSACTION +[fd3 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Received message TRANSACTION from shim +[fd4 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[fd5 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2f9fccd2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[fd6 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[fd7 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Transaction completed. Sending COMPLETED +[fd8 01-13 06:14:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Move state message COMPLETED +[fd9 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[fda 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]send state message COMPLETED +[fdb 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Received message COMPLETED from shim +[fdc 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[fdd 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb]HandleMessage- COMPLETED. Notify +[fde 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb, channelID:businesschannel +[fdf 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[fe0 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[fe1 01-13 06:14:48.03 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 +[fe2 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +[fe3 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[fe4 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel chaincode id: name:"qscc" +[fe5 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[fe6 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb channel id: businesschannel version: 1.1.0 +[fe7 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb,syscc=true,proposal=0xc427b73ef0,canname=escc:1.1.0 +[fe8 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[fe9 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[fea 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[feb 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]Inside sendExecuteMessage. Message TRANSACTION +[fec 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[fed 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[fee 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2f9fccd2]sendExecuteMsg trigger event TRANSACTION +[fef 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Move state message TRANSACTION +[ff0 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[ff1 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[ff2 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]sending state message TRANSACTION +[ff3 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Received message TRANSACTION from shim +[ff4 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[ff5 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2f9fccd2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[ff6 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[ff7 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[ff8 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Transaction completed. Sending COMPLETED +[ff9 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]Move state message COMPLETED +[ffa 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f9fccd2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[ffb 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f9fccd2]send state message COMPLETED +[ffc 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f9fccd2]Received message COMPLETED from shim +[ffd 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[ffe 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb]HandleMessage- COMPLETED. Notify +[fff 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb, channelID:businesschannel +[1000 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1001 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1002 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1003 01-13 06:14:48.03 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 [2f9fccd2a1a7a94fbc101b700f72e8cc1132cde758438931480fbb10437b8fcb] +[1004 01-13 06:14:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53736) +[1005 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53738 +[1006 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc427e97200 +[1007 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1008 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1009 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[100a 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[100b 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[100c 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc427e49cc0, header 0xc427e97560 +[100d 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[100e 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 +[100f 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] +[1010 01-13 06:14:49.07 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 +[1011 01-13 06:14:49.07 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 = [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] +[1012 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel +[1013 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel version: 1.1.0 +[1014 01-13 06:14:49.07 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.1.0,txid=e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60,syscc=true,proposal=0xc427e49cc0,canname=qscc:1.1.0 +[1015 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1016 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1017 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[1018 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]Inside sendExecuteMessage. Message TRANSACTION +[1019 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[101a 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[101b 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]sendExecuteMsg trigger event TRANSACTION +[101c 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Move state message TRANSACTION +[101d 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[101e 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[101f 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]sending state message TRANSACTION +[1020 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Received message TRANSACTION from shim +[1021 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1022 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1b0ebc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1023 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1024 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Transaction completed. Sending COMPLETED +[1025 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Move state message COMPLETED +[1026 01-13 06:14:49.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1027 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]send state message COMPLETED +[1028 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Received message COMPLETED from shim +[1029 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[102a 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60]HandleMessage- COMPLETED. Notify +[102b 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60, channelID:businesschannel +[102c 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[102d 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[102e 01-13 06:14:49.08 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 +[102f 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] +[1030 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1031 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel chaincode id: name:"qscc" +[1032 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1033 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60 channel id: businesschannel version: 1.1.0 +[1034 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60,syscc=true,proposal=0xc427e49cc0,canname=escc:1.1.0 +[1035 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1036 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1037 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1038 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]Inside sendExecuteMessage. Message TRANSACTION +[1039 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[103a 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[103b 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e1b0ebc7]sendExecuteMsg trigger event TRANSACTION +[103c 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Move state message TRANSACTION +[103d 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[103e 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[103f 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]sending state message TRANSACTION +[1040 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Received message TRANSACTION from shim +[1041 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1042 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e1b0ebc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1043 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1044 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1045 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Transaction completed. Sending COMPLETED +[1046 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]Move state message COMPLETED +[1047 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1b0ebc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1048 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1b0ebc7]send state message COMPLETED +[1049 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1b0ebc7]Received message COMPLETED from shim +[104a 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[104b 01-13 06:14:49.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60]HandleMessage- COMPLETED. Notify +[104c 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60, channelID:businesschannel +[104d 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[104e 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[104f 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1050 01-13 06:14:49.09 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 [e1b0ebc7d21e3e918158e1eddf3a924e045892b9a7feb168c50bcca478a27a60] +[1051 01-13 06:14:49.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53738) +[1052 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53740 +[1053 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428121620 +[1054 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1055 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1056 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1057 01-13 06:14:50.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1058 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1059 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428134c80, header 0xc428121980 +[105a 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[105b 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 +[105c 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] +[105d 01-13 06:14:50.17 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 +[105e 01-13 06:14:50.17 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 = [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] +[105f 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel +[1060 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel version: 1.1.0 +[1061 01-13 06:14:50.17 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.1.0,txid=93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20,syscc=true,proposal=0xc428134c80,canname=qscc:1.1.0 +[1062 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1063 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1064 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[1065 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]Inside sendExecuteMessage. Message TRANSACTION +[1066 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1067 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1068 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]sendExecuteMsg trigger event TRANSACTION +[1069 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Move state message TRANSACTION +[106a 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[106b 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[106c 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]sending state message TRANSACTION +[106d 01-13 06:14:50.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Received message TRANSACTION from shim +[106e 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[106f 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [93872715]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1070 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1071 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Transaction completed. Sending COMPLETED +[1072 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Move state message COMPLETED +[1073 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1074 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]send state message COMPLETED +[1075 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Received message COMPLETED from shim +[1076 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1077 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20]HandleMessage- COMPLETED. Notify +[1078 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20, channelID:businesschannel +[1079 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[107a 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[107b 01-13 06:14:50.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 +[107c 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] +[107d 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[107e 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel chaincode id: name:"qscc" +[107f 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1080 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20 channel id: businesschannel version: 1.1.0 +[1081 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20,syscc=true,proposal=0xc428134c80,canname=escc:1.1.0 +[1082 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1083 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1084 01-13 06:14:50.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1085 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]Inside sendExecuteMessage. Message TRANSACTION +[1086 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1087 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1088 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93872715]sendExecuteMsg trigger event TRANSACTION +[1089 01-13 06:14:50.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Move state message TRANSACTION +[108a 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[108b 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[108c 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]sending state message TRANSACTION +[108d 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Received message TRANSACTION from shim +[108e 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[108f 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [93872715]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1090 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1091 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1092 01-13 06:14:50.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Transaction completed. Sending COMPLETED +[1093 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]Move state message COMPLETED +[1094 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93872715]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1095 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93872715]send state message COMPLETED +[1096 01-13 06:14:50.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93872715]Received message COMPLETED from shim +[1097 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1098 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20]HandleMessage- COMPLETED. Notify +[1099 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20, channelID:businesschannel +[109a 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[109b 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[109c 01-13 06:14:50.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[109d 01-13 06:14:50.23 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 [93872715214afb2ea9dd0890545071f663c5ee32035dae4df1d053123ba47f20] +[109e 01-13 06:14:50.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53740) +[109f 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53742 +[10a0 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4283f6030 +[10a1 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[10a2 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[10a3 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[10a4 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[10a5 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[10a6 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4282672c0, header 0xc4283f6390 +[10a7 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[10a8 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c +[10a9 01-13 06:14:51.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +[10aa 01-13 06:14:51.27 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 +[10ab 01-13 06:14:51.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 = [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +[10ac 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel +[10ad 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel version: 1.1.0 +[10ae 01-13 06:14:51.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=qscc,version=1.1.0,txid=13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c,syscc=true,proposal=0xc4282672c0,canname=qscc:1.1.0 +[10af 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[10b0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[10b1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[10b2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]Inside sendExecuteMessage. Message TRANSACTION +[10b3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[10b4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[10b5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]sendExecuteMsg trigger event TRANSACTION +[10b6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Move state message TRANSACTION +[10b7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[10b8 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[10b9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]sending state message TRANSACTION +[10ba 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Received message TRANSACTION from shim +[10bb 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[10bc 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [13645931]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[10bd 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[10be 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Transaction completed. Sending COMPLETED +[10bf 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Move state message COMPLETED +[10c0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[10c1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]send state message COMPLETED +[10c2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Received message COMPLETED from shim +[10c3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[10c4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c]HandleMessage- COMPLETED. Notify +[10c5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c, channelID:businesschannel +[10c6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[10c7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[10c8 01-13 06:14:51.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 +[10c9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +[10ca 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[10cb 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel chaincode id: name:"qscc" +[10cc 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[10cd 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c channel id: businesschannel version: 1.1.0 +[10ce 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c,syscc=true,proposal=0xc4282672c0,canname=escc:1.1.0 +[10cf 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[10d0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[10d1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[10d2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]Inside sendExecuteMessage. Message TRANSACTION +[10d3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[10d4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[10d5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13645931]sendExecuteMsg trigger event TRANSACTION +[10d6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Move state message TRANSACTION +[10d7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[10d8 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[10d9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]sending state message TRANSACTION +[10da 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Received message TRANSACTION from shim +[10db 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[10dc 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [13645931]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[10dd 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[10de 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[10df 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Transaction completed. Sending COMPLETED +[10e0 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]Move state message COMPLETED +[10e1 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13645931]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[10e2 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13645931]send state message COMPLETED +[10e3 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13645931]Received message COMPLETED from shim +[10e4 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[10e5 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c]HandleMessage- COMPLETED. Notify +[10e6 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c, channelID:businesschannel +[10e7 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[10e8 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[10e9 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[10ea 01-13 06:14:51.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 [13645931272179dcf845ca0e66b21ce51af6a2efbb050dbba56b608b32ab4d0c] +[10eb 01-13 06:14:51.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53742) +[10ec 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40184 +[10ed 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4283bb0b0 +[10ee 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[10ef 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[10f0 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[10f1 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[10f2 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[10f3 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4283b6960, header 0xc4283bb410 +[10f4 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[10f5 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 +[10f6 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +[10f7 01-13 06:14:52.22 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 +[10f8 01-13 06:14:52.22 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 = [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +[10f9 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel +[10fa 01-13 06:14:52.22 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.1.0,txid=92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2,syscc=true,proposal=0xc4283b6960,canname=lscc:1.1.0 +[10fb 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[10fc 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry +[10fd 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[10fe 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]Inside sendExecuteMessage. Message TRANSACTION +[10ff 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1100 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1101 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]sendExecuteMsg trigger event TRANSACTION +[1102 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Move state message TRANSACTION +[1103 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1104 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1105 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]sending state message TRANSACTION +[1106 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Received message TRANSACTION from shim +[1107 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1108 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [92c989e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1109 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [92c989e0]Sending GET_STATE +[110a 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message GET_STATE from shim +[110b 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[110c 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [92c989e0]Received GET_STATE, invoking get state from ledger +[110d 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[110e 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0] getting state for chaincode lscc, key exp02, channel businesschannel +[110f 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[1110 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0]Got state. Sending RESPONSE +[1111 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [92c989e0]handleGetState serial send RESPONSE +[1112 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Received message RESPONSE from shim +[1113 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[1114 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [92c989e0]before send +[1115 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [92c989e0]after send +[1116 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [92c989e0]Received RESPONSE, communicated (state:ready) +[1117 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [92c989e0]GetState received payload RESPONSE +[1118 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Transaction completed. Sending COMPLETED +[1119 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Move state message COMPLETED +[111a 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[111b 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]send state message COMPLETED +[111c 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message COMPLETED from shim +[111d 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[111e 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2]HandleMessage- COMPLETED. Notify +[111f 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2, channelID:businesschannel +[1120 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1121 01-13 06:14:52.22 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 +[1122 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel version: 1.0 +[1123 01-13 06:14:52.22 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=92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2,syscc=false,proposal=0xc4283b6960,canname=exp02:1.0 +[1124 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +[1125 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1126 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[1127 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]Inside sendExecuteMessage. Message TRANSACTION +[1128 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1129 01-13 06:14:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[112a 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]sendExecuteMsg trigger event TRANSACTION +[112b 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Move state message TRANSACTION +[112c 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[112d 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[112e 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]sending state message TRANSACTION +[112f 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message GET_STATE from shim +[1130 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[1131 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [92c989e0]Received GET_STATE, invoking get state from ledger +[1132 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1133 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0] getting state for chaincode exp02, key a, channel businesschannel +[1134 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +[1135 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [92c989e0]Got state. Sending RESPONSE +[1136 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [92c989e0]handleGetState serial send RESPONSE +[1137 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message COMPLETED from shim +[1138 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1139 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2]HandleMessage- COMPLETED. Notify +[113a 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2, channelID:businesschannel +[113b 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[113c 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[113d 01-13 06:14:52.23 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 +[113e 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +[113f 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1140 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel chaincode id: name:"exp02" +[1141 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +[1142 01-13 06:14:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2 channel id: businesschannel version: 1.1.0 +[1143 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2,syscc=true,proposal=0xc4283b6960,canname=escc:1.1.0 +[1144 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1145 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1146 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1147 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]Inside sendExecuteMessage. Message TRANSACTION +[1148 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1149 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[114a 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [92c989e0]sendExecuteMsg trigger event TRANSACTION +[114b 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Move state message TRANSACTION +[114c 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[114d 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[114e 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]sending state message TRANSACTION +[114f 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Received message TRANSACTION from shim +[1150 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1151 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [92c989e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1152 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1153 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1154 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Transaction completed. Sending COMPLETED +[1155 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]Move state message COMPLETED +[1156 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92c989e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1157 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92c989e0]send state message COMPLETED +[1158 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [92c989e0]Received message COMPLETED from shim +[1159 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[115a 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2]HandleMessage- COMPLETED. Notify +[115b 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2, channelID:businesschannel +[115c 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[115d 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[115e 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[115f 01-13 06:14:52.24 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 [92c989e06afb46f7ce86b0d2272dc4f9c7a699a1c18efc99e289a8bce78051a2] +[1160 01-13 06:14:52.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40184) +[1161 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53754 +[1162 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428552de0 +[1163 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1164 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1165 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1166 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1167 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1168 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42847d950, header 0xc428553140 +[1169 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[116a 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c +[116b 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +[116c 01-13 06:14:52.32 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 +[116d 01-13 06:14:52.32 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 = [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +[116e 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel +[116f 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel version: 1.1.0 +[1170 01-13 06:14:52.32 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.1.0,txid=5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c,syscc=true,proposal=0xc42847d950,canname=qscc:1.1.0 +[1171 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1172 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1173 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[1174 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]Inside sendExecuteMessage. Message TRANSACTION +[1175 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1176 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1177 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]sendExecuteMsg trigger event TRANSACTION +[1178 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Move state message TRANSACTION +[1179 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[117a 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[117b 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]sending state message TRANSACTION +[117c 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Received message TRANSACTION from shim +[117d 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[117e 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c267e82]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[117f 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1180 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Transaction completed. Sending COMPLETED +[1181 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Move state message COMPLETED +[1182 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1183 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]send state message COMPLETED +[1184 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Received message COMPLETED from shim +[1185 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1186 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c]HandleMessage- COMPLETED. Notify +[1187 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c, channelID:businesschannel +[1188 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1189 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[118a 01-13 06:14:52.32 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 +[118b 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +[118c 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[118d 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel chaincode id: name:"qscc" +[118e 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[118f 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c channel id: businesschannel version: 1.1.0 +[1190 01-13 06:14:52.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c,syscc=true,proposal=0xc42847d950,canname=escc:1.1.0 +[1191 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1192 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1193 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1194 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]Inside sendExecuteMessage. Message TRANSACTION +[1195 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1196 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1197 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c267e82]sendExecuteMsg trigger event TRANSACTION +[1198 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Move state message TRANSACTION +[1199 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[119a 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[119b 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]sending state message TRANSACTION +[119c 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Received message TRANSACTION from shim +[119d 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[119e 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c267e82]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[119f 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[11a0 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[11a1 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Transaction completed. Sending COMPLETED +[11a2 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]Move state message COMPLETED +[11a3 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c267e82]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[11a4 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c267e82]send state message COMPLETED +[11a5 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c267e82]Received message COMPLETED from shim +[11a6 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e82]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[11a7 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c]HandleMessage- COMPLETED. Notify +[11a8 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c, channelID:businesschannel +[11a9 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[11aa 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[11ab 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[11ac 01-13 06:14:52.33 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 [5c267e825fa586969d37e02853eb767d481c91fe023125b35d4e87d0d55a9d0c] +[11ad 01-13 06:14:52.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53754) +[11ae 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40190 +[11af 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428703050 +[11b0 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[11b1 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[11b2 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[11b3 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[11b4 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[11b5 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4286abb80, header 0xc4287033b0 +[11b6 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[11b7 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 +[11b8 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +[11b9 01-13 06:14:52.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 +[11ba 01-13 06:14:52.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 = [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +[11bb 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel +[11bc 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel version: 1.1.0 +[11bd 01-13 06:14:52.82 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.1.0,txid=e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071,syscc=true,proposal=0xc4286abb80,canname=lscc:1.1.0 +[11be 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[11bf 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[11c0 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[11c1 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]Inside sendExecuteMessage. Message TRANSACTION +[11c2 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[11c3 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[11c4 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]sendExecuteMsg trigger event TRANSACTION +[11c5 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Move state message TRANSACTION +[11c6 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[11c7 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[11c8 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]sending state message TRANSACTION +[11c9 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Received message TRANSACTION from shim +[11ca 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[11cb 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e8eb0fbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[11cc 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e8eb0fbd]Sending GET_STATE +[11cd 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Received message GET_STATE from shim +[11ce 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[11cf 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [e8eb0fbd]Received GET_STATE, invoking get state from ledger +[11d1 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e8eb0fbd] getting state for chaincode lscc, key exp02, channel businesschannel +[11d2 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[11d3 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e8eb0fbd]Got state. Sending RESPONSE +[11d4 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [e8eb0fbd]handleGetState serial send RESPONSE +[11d5 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Received message RESPONSE from shim +[11d6 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[11d7 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e8eb0fbd]before send +[11d8 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [e8eb0fbd]after send +[11d9 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [e8eb0fbd]Received RESPONSE, communicated (state:ready) +[11da 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e8eb0fbd]GetState received payload RESPONSE +[11db 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Transaction completed. Sending COMPLETED +[11dc 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Move state message COMPLETED +[11dd 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[11de 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]send state message COMPLETED +[11d0 01-13 06:14:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[11df 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Received message COMPLETED from shim +[11e0 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[11e1 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071]HandleMessage- COMPLETED. Notify +[11e2 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071, channelID:businesschannel +[11e3 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[11e4 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[11e5 01-13 06:14:52.83 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 +[11e6 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +[11e7 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[11e8 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel chaincode id: name:"lscc" +[11e9 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[11ea 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071 channel id: businesschannel version: 1.1.0 +[11eb 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071,syscc=true,proposal=0xc4286abb80,canname=escc:1.1.0 +[11ec 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[11ed 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[11ee 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[11ef 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]Inside sendExecuteMessage. Message TRANSACTION +[11f0 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[11f1 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[11f2 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e8eb0fbd]sendExecuteMsg trigger event TRANSACTION +[11f3 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Move state message TRANSACTION +[11f4 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[11f5 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[11f6 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]sending state message TRANSACTION +[11f7 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Received message TRANSACTION from shim +[11f8 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[11f9 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e8eb0fbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[11fa 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[11fb 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[11fc 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Transaction completed. Sending COMPLETED +[11fd 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]Move state message COMPLETED +[11fe 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e8eb0fbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[11ff 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e8eb0fbd]send state message COMPLETED +[1200 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e8eb0fbd]Received message COMPLETED from shim +[1201 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1202 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071]HandleMessage- COMPLETED. Notify +[1203 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071, channelID:businesschannel +[1204 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1205 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1206 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1207 01-13 06:14:52.83 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 [e8eb0fbd4b9a742b76e59847d2cb424d503f8f9751b8e4354b332070cbed5071] +[1208 01-13 06:14:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40190) +[1209 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40192 +[120a 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4287a6540 +[120b 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[120c 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[120d 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[120e 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[120f 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1210 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4287925a0, header 0xc4287a68a0 +[1211 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[1212 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c +[1213 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +[1214 01-13 06:14:53.01 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 +[1215 01-13 06:14:53.01 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 = [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +[1216 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel +[1217 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel version: 1.1.0 +[1218 01-13 06:14:53.01 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.1.0,txid=5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c,syscc=true,proposal=0xc4287925a0,canname=lscc:1.1.0 +[1219 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[121a 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[121b 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[121c 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]Inside sendExecuteMessage. Message TRANSACTION +[121d 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[121e 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[121f 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]sendExecuteMsg trigger event TRANSACTION +[1220 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Move state message TRANSACTION +[1221 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1222 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1223 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]sending state message TRANSACTION +[1224 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Received message TRANSACTION from shim +[1225 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1226 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5960cf49]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1227 01-13 06:14:53.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5960cf49]Sending GET_STATE +[1228 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Received message GET_STATE from shim +[1229 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[122a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [5960cf49]Received GET_STATE, invoking get state from ledger +[122b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[122c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5960cf49] getting state for chaincode lscc, key exp02, channel businesschannel +[122d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[122e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5960cf49]Got state. Sending RESPONSE +[122f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [5960cf49]handleGetState serial send RESPONSE +[1230 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Received message RESPONSE from shim +[1231 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[1232 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5960cf49]before send +[1233 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5960cf49]after send +[1234 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [5960cf49]Received RESPONSE, communicated (state:ready) +[1235 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5960cf49]GetState received payload RESPONSE +[1236 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Transaction completed. Sending COMPLETED +[1237 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Move state message COMPLETED +[1238 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1239 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]send state message COMPLETED +[123a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Received message COMPLETED from shim +[123b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[123c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c]HandleMessage- COMPLETED. Notify +[123d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c, channelID:businesschannel +[123e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[123f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[1240 01-13 06:14:53.02 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 +[1241 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +[1242 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1243 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel chaincode id: name:"lscc" +[1244 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[1245 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c channel id: businesschannel version: 1.1.0 +[1246 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c,syscc=true,proposal=0xc4287925a0,canname=escc:1.1.0 +[1247 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1248 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1249 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[124a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]Inside sendExecuteMessage. Message TRANSACTION +[124b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[124c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[124d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5960cf49]sendExecuteMsg trigger event TRANSACTION +[124e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Move state message TRANSACTION +[124f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1250 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1251 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]sending state message TRANSACTION +[1252 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Received message TRANSACTION from shim +[1253 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1254 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5960cf49]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1255 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1256 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1257 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Transaction completed. Sending COMPLETED +[1258 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]Move state message COMPLETED +[1259 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5960cf49]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[125a 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5960cf49]send state message COMPLETED +[125b 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5960cf49]Received message COMPLETED from shim +[125c 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf49]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[125d 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c]HandleMessage- COMPLETED. Notify +[125e 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c, channelID:businesschannel +[125f 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1260 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1261 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1262 01-13 06:14:53.02 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 [5960cf491b4e3631bdbc527326347cf416104c76992c2addf030a3a3f35fb41c] +[1263 01-13 06:14:53.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40192) +[1264 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40194 +[1265 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4287a75c0 +[1266 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1267 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1268 01-13 06:14:53.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1269 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[126a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[126b 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428792be0, header 0xc4287a7920 +[126c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[126d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 +[126e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +[126f 01-13 06:14:53.22 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 +[1270 01-13 06:14:53.22 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 = [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +[1271 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel +[1272 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel version: 1.1.0 +[1273 01-13 06:14:53.22 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.1.0,txid=f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808,syscc=true,proposal=0xc428792be0,canname=lscc:1.1.0 +[1274 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[1275 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1276 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[1277 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]Inside sendExecuteMessage. Message TRANSACTION +[1278 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1279 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[127a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]sendExecuteMsg trigger event TRANSACTION +[127b 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Move state message TRANSACTION +[127c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[127d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[127e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]sending state message TRANSACTION +[127f 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Received message TRANSACTION from shim +[1280 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1281 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9aacedc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1282 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9aacedc]Sending GET_STATE +[1283 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Received message GET_STATE from shim +[1284 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[1285 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f9aacedc]Received GET_STATE, invoking get state from ledger +[1286 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1287 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9aacedc] getting state for chaincode lscc, key exp02, channel businesschannel +[1288 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[1289 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9aacedc]Got state. Sending RESPONSE +[128a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f9aacedc]handleGetState serial send RESPONSE +[128b 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Received message RESPONSE from shim +[128c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[128d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9aacedc]before send +[128e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9aacedc]after send +[128f 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f9aacedc]Received RESPONSE, communicated (state:ready) +[1290 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9aacedc]GetState received payload RESPONSE +[1291 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Transaction completed. Sending COMPLETED +[1292 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Move state message COMPLETED +[1293 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1294 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]send state message COMPLETED +[1295 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Received message COMPLETED from shim +[1296 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1297 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808]HandleMessage- COMPLETED. Notify +[1298 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808, channelID:businesschannel +[1299 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[129a 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[129b 01-13 06:14:53.22 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 +[129c 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +[129d 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[129e 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel chaincode id: name:"lscc" +[129f 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[12a0 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808 channel id: businesschannel version: 1.1.0 +[12a1 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808,syscc=true,proposal=0xc428792be0,canname=escc:1.1.0 +[12a2 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[12a3 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[12a4 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[12a5 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]Inside sendExecuteMessage. Message TRANSACTION +[12a6 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[12a7 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[12a8 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9aacedc]sendExecuteMsg trigger event TRANSACTION +[12a9 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Move state message TRANSACTION +[12aa 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[12ab 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[12ac 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]sending state message TRANSACTION +[12ad 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Received message TRANSACTION from shim +[12ae 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[12af 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9aacedc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[12b0 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[12b1 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[12b2 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Transaction completed. Sending COMPLETED +[12b3 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]Move state message COMPLETED +[12b4 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9aacedc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[12b5 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9aacedc]send state message COMPLETED +[12b6 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9aacedc]Received message COMPLETED from shim +[12b7 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[12b8 01-13 06:14:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808]HandleMessage- COMPLETED. Notify +[12b9 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808, channelID:businesschannel +[12ba 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[12bb 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[12bc 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[12bd 01-13 06:14:53.23 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 [f9aacedc4912b5f2c38f5dd2513f17c29054c93d95de226d78001dbdae3f8808] +[12be 01-13 06:14:53.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40194) +[12bf 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53764 +[12c0 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4288eeae0 +[12c1 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[12c2 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[12c3 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[12c4 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[12c5 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[12c6 01-13 06:14:53.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4288ec730, header 0xc4288eee40 +[12c7 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[12c8 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 +[12c9 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +[12ca 01-13 06:14:53.38 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 +[12cb 01-13 06:14:53.38 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 = [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +[12cc 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel +[12cd 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel version: 1.1.0 +[12ce 01-13 06:14:53.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=qscc,version=1.1.0,txid=f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419,syscc=true,proposal=0xc4288ec730,canname=qscc:1.1.0 +[12cf 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[12d0 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[12d1 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[12d2 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]Inside sendExecuteMessage. Message TRANSACTION +[12d3 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[12d4 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[12d5 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]sendExecuteMsg trigger event TRANSACTION +[12d6 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Move state message TRANSACTION +[12d7 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[12d8 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[12d9 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]sending state message TRANSACTION +[12da 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Received message TRANSACTION from shim +[12db 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[12dc 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f70f9992]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[12dd 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[12de 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Transaction completed. Sending COMPLETED +[12df 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Move state message COMPLETED +[12e0 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[12e1 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]send state message COMPLETED +[12e2 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Received message COMPLETED from shim +[12e3 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[12e4 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419]HandleMessage- COMPLETED. Notify +[12e5 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419, channelID:businesschannel +[12e6 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[12e7 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[12e8 01-13 06:14:53.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 +[12e9 01-13 06:14:53.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +[12ea 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[12eb 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel chaincode id: name:"qscc" +[12ec 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[12ed 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419 channel id: businesschannel version: 1.1.0 +[12ee 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419,syscc=true,proposal=0xc4288ec730,canname=escc:1.1.0 +[12ef 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[12f0 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[12f1 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[12f2 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]Inside sendExecuteMessage. Message TRANSACTION +[12f3 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[12f4 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[12f5 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f70f9992]sendExecuteMsg trigger event TRANSACTION +[12f6 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Move state message TRANSACTION +[12f7 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[12f8 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[12f9 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]sending state message TRANSACTION +[12fa 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Received message TRANSACTION from shim +[12fb 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[12fc 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f70f9992]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[12fd 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[12fe 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[12ff 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Transaction completed. Sending COMPLETED +[1300 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]Move state message COMPLETED +[1301 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f70f9992]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1302 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f70f9992]send state message COMPLETED +[1303 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f70f9992]Received message COMPLETED from shim +[1304 01-13 06:14:53.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f9992]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1306 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419]HandleMessage- COMPLETED. Notify +[1307 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419, channelID:businesschannel +[1305 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40198 +[1309 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428809200 +[1308 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[130a 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[130c 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[130b 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[130d 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[130e 01-13 06:14:53.40 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 [f70f99926543464fe89b7234ef734f625adf28624708ffdd58e4bd48c6f65419] +[130f 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53764) +[1310 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1311 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1312 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1313 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4288ecaa0, header 0xc4288efb90 +[1314 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[1315 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 +[1316 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +[1317 01-13 06:14:53.40 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 +[1318 01-13 06:14:53.40 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 = [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +[1319 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel +[131a 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel version: 1.1.0 +[131b 01-13 06:14:53.40 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.1.0,txid=44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866,syscc=true,proposal=0xc4288ecaa0,canname=lscc:1.1.0 +[131c 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[131d 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[131e 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[131f 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]Inside sendExecuteMessage. Message TRANSACTION +[1320 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1321 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1322 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]sendExecuteMsg trigger event TRANSACTION +[1323 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Move state message TRANSACTION +[1324 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1325 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1326 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]sending state message TRANSACTION +[1327 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Received message TRANSACTION from shim +[1328 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1329 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [44a27630]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[132a 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Transaction completed. Sending COMPLETED +[132b 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Move state message COMPLETED +[132c 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[132d 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]send state message COMPLETED +[132e 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Received message COMPLETED from shim +[132f 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1330 01-13 06:14:53.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866]HandleMessage- COMPLETED. Notify +[1331 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866, channelID:businesschannel +[1332 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1333 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[1334 01-13 06:14:53.41 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 +[1335 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +[1336 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1337 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel chaincode id: name:"lscc" +[1338 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[1339 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866 channel id: businesschannel version: 1.1.0 +[133a 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866,syscc=true,proposal=0xc4288ecaa0,canname=escc:1.1.0 +[133b 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[133c 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[133d 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[133e 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]Inside sendExecuteMessage. Message TRANSACTION +[133f 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1340 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1341 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44a27630]sendExecuteMsg trigger event TRANSACTION +[1342 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Move state message TRANSACTION +[1343 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1344 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1345 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]sending state message TRANSACTION +[1346 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Received message TRANSACTION from shim +[1347 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1348 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [44a27630]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1349 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[134a 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[134b 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Transaction completed. Sending COMPLETED +[134c 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]Move state message COMPLETED +[134d 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a27630]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[134e 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a27630]send state message COMPLETED +[134f 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a27630]Received message COMPLETED from shim +[1350 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1351 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866]HandleMessage- COMPLETED. Notify +[1352 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866, channelID:businesschannel +[1353 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1354 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1355 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1356 01-13 06:14:53.41 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 [44a27630237f402984abfbf422298655d34230578ff5af4a360cd76118abd866] +[1357 01-13 06:14:53.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40198) +[1358 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40200 +[1359 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428809e30 +[135a 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[135b 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[135c 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[135d 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[135e 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[135f 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428814be0, header 0xc428a041b0 +[1360 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[1361 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 +[1362 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +[1363 01-13 06:14:53.57 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 +[1364 01-13 06:14:53.57 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 = [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +[1365 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel +[1366 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel version: 1.1.0 +[1367 01-13 06:14:53.57 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.1.0,txid=84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327,syscc=true,proposal=0xc428814be0,canname=lscc:1.1.0 +[1368 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 +[1369 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[136a 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 +[136b 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]Inside sendExecuteMessage. Message TRANSACTION +[136c 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[136d 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[136e 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]sendExecuteMsg trigger event TRANSACTION +[136f 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Move state message TRANSACTION +[1370 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1371 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1372 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]sending state message TRANSACTION +[1373 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message TRANSACTION from shim +[1374 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1375 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [84081219]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1376 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [84081219]Sending GET_STATE_BY_RANGE +[1377 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message GET_STATE_BY_RANGE from shim +[1378 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +[1379 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +[137a 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +[137b 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[137c 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +[137d 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +[137e 01-13 06:14:53.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +[137f 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [84081219]handleGetStateByRange serial send RESPONSE +[1380 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message RESPONSE from shim +[1381 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[1382 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]before send +[1383 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]after send +[1384 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [84081219]Received RESPONSE, communicated (state:ready) +[1385 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [84081219]Received RESPONSE. Successfully got range +[1386 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [84081219]Sending QUERY_STATE_CLOSE +[1387 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message QUERY_STATE_CLOSE from shim +[1388 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +[1389 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +[138a 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +[138b 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[138c 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +[138d 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [84081219]handleQueryStateClose serial send RESPONSE +[138e 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message RESPONSE from shim +[138f 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[1390 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]before send +[1391 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [84081219]after send +[1392 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [84081219]Received RESPONSE, communicated (state:ready) +[1393 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [84081219]Received RESPONSE. Successfully got range +[1394 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Transaction completed. Sending COMPLETED +[1395 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Move state message COMPLETED +[1396 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1397 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]send state message COMPLETED +[1398 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message COMPLETED from shim +[1399 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[139a 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327]HandleMessage- COMPLETED. Notify +[139b 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327, channelID:businesschannel +[139c 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[139d 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[139e 01-13 06:14:53.58 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 +[139f 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +[13a0 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[13a1 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel chaincode id: name:"lscc" +[13a2 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[13a3 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327 channel id: businesschannel version: 1.1.0 +[13a4 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327,syscc=true,proposal=0xc428814be0,canname=escc:1.1.0 +[13a5 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[13a6 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[13a7 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[13a8 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]Inside sendExecuteMessage. Message TRANSACTION +[13a9 01-13 06:14:53.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[13aa 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[13ab 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [84081219]sendExecuteMsg trigger event TRANSACTION +[13ac 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Move state message TRANSACTION +[13ad 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[13ae 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[13af 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]sending state message TRANSACTION +[13b0 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Received message TRANSACTION from shim +[13b1 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[13b2 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [84081219]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[13b3 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[13b4 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[13b5 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Transaction completed. Sending COMPLETED +[13b6 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]Move state message COMPLETED +[13b7 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84081219]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[13b8 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84081219]send state message COMPLETED +[13b9 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84081219]Received message COMPLETED from shim +[13ba 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[13bb 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327]HandleMessage- COMPLETED. Notify +[13bc 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327, channelID:businesschannel +[13bd 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[13be 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[13bf 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[13c0 01-13 06:14:53.59 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 [84081219f74126165f73415e7056e77e703106bcc541bb3f4133ed7008c42327] +[13c1 01-13 06:14:53.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40200) +[13c2 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40202 +[13c3 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428aee420 +[13c4 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[13c5 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[13c6 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[13c7 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[13c8 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[13c9 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4288ede50, header 0xc428aee780 +[13ca 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[13cb 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 +[13cc 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +[13cd 01-13 06:14:53.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 +[13ce 01-13 06:14:53.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 = [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +[13cf 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel +[13d0 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel version: 1.1.0 +[13d1 01-13 06:14:53.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.1.0,txid=7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6,syscc=true,proposal=0xc4288ede50,canname=qscc:1.1.0 +[13d2 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[13d3 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[13d4 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[13d5 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]Inside sendExecuteMessage. Message TRANSACTION +[13d6 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[13d7 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[13d8 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]sendExecuteMsg trigger event TRANSACTION +[13d9 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Move state message TRANSACTION +[13da 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[13db 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[13dc 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]sending state message TRANSACTION +[13dd 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Received message TRANSACTION from shim +[13de 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[13df 01-13 06:14:53.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74713044]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[13e0 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[13e1 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Transaction completed. Sending COMPLETED +[13e2 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Move state message COMPLETED +[13e3 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[13e4 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]send state message COMPLETED +[13e5 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Received message COMPLETED from shim +[13e6 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[13e7 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6]HandleMessage- COMPLETED. Notify +[13e8 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6, channelID:businesschannel +[13e9 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[13ea 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[13eb 01-13 06:14:53.93 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 +[13ec 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +[13ed 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[13ee 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel chaincode id: name:"qscc" +[13ef 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[13f0 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6 channel id: businesschannel version: 1.1.0 +[13f1 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6,syscc=true,proposal=0xc4288ede50,canname=escc:1.1.0 +[13f2 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[13f3 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[13f4 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[13f5 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]Inside sendExecuteMessage. Message TRANSACTION +[13f6 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[13f7 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[13f8 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74713044]sendExecuteMsg trigger event TRANSACTION +[13f9 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Move state message TRANSACTION +[13fa 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[13fb 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[13fc 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]sending state message TRANSACTION +[13fd 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Received message TRANSACTION from shim +[13fe 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[13ff 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74713044]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1400 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1401 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1402 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Transaction completed. Sending COMPLETED +[1403 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]Move state message COMPLETED +[1404 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74713044]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1405 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74713044]send state message COMPLETED +[1406 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74713044]Received message COMPLETED from shim +[1407 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [74713044]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1408 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6]HandleMessage- COMPLETED. Notify +[1409 01-13 06:14:53.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6, channelID:businesschannel +[140a 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[140b 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[140c 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[140d 01-13 06:14:53.94 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 [7471304431b6eee78e5314c9c667647afbc3394166faa9fbee6012b4a173e8c6] +[140e 01-13 06:14:53.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40202) +[140f 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.8:40204 +[1410 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428aef650 +[1411 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1412 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1413 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1414 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1415 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1416 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428b2c500, header 0xc428aef9b0 +[1417 01-13 06:14:54.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[1418 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 +[1419 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +[141a 01-13 06:14:54.08 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 +[141b 01-13 06:14:54.08 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 = [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +[141c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel +[141d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel version: 1.1.0 +[141e 01-13 06:14:54.08 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.1.0,txid=552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27,syscc=true,proposal=0xc428b2c500,canname=qscc:1.1.0 +[141f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1420 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1421 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[1422 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]Inside sendExecuteMessage. Message TRANSACTION +[1423 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1424 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1425 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]sendExecuteMsg trigger event TRANSACTION +[1426 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Move state message TRANSACTION +[1427 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1428 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1429 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]sending state message TRANSACTION +[142a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Received message TRANSACTION from shim +[142b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[142c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [552d0ffd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[142d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +[142e 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[142f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[26080] +[1430 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[29442], Going to peek [8] bytes +[1431 01-13 06:14:54.08 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=[26080], bytesOffset=[26082]} +[1432 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Transaction completed. Sending COMPLETED +[1433 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Move state message COMPLETED +[1434 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1435 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]send state message COMPLETED +[1436 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Received message COMPLETED from shim +[1437 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1438 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27]HandleMessage- COMPLETED. Notify +[1439 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27, channelID:businesschannel +[143a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[143b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[143c 01-13 06:14:54.08 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 +[143d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +[143e 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[143f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel chaincode id: name:"qscc" +[1440 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1441 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27 channel id: businesschannel version: 1.1.0 +[1442 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27,syscc=true,proposal=0xc428b2c500,canname=escc:1.1.0 +[1443 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1444 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1445 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1446 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]Inside sendExecuteMessage. Message TRANSACTION +[1447 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1448 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1449 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [552d0ffd]sendExecuteMsg trigger event TRANSACTION +[144a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Move state message TRANSACTION +[144b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[144c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[144d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]sending state message TRANSACTION +[144e 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Received message TRANSACTION from shim +[144f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1450 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [552d0ffd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1451 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1452 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1453 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Transaction completed. Sending COMPLETED +[1454 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]Move state message COMPLETED +[1455 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [552d0ffd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1456 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [552d0ffd]send state message COMPLETED +[1457 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [552d0ffd]Received message COMPLETED from shim +[1458 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1459 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27]HandleMessage- COMPLETED. Notify +[145a 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27, channelID:businesschannel +[145b 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[145c 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[145d 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[145e 01-13 06:14:54.08 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 [552d0ffd75d7636a963a4ec914d2ca50cdcc093b95b4a5993d146de77bd69b27] +[145f 01-13 06:14:54.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.8:40204) +[1460 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +[1461 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[1462 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[1463 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +[1464 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc428accc60 env 0xc428abf620 txn 0 +[1465 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc428abf620 +[1466 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +[1467 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1468 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1469 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} +[146a 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[146b 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[146c 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc428adb000, header channel_header:"\010\003\032\013\010\334\307\346\322\005\020\273\317\240'\"\017businesschannel*@66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl\n3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF\nmC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O\nAqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL\nR0L5Jr8878bLU6IcEA==\n-----END CERTIFICATE-----\n\022\030C-dN~\000\035\023\351\0015\010\320\333\006\220\263\351'\204\3176\257\305" +[146d 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[146e 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[146f 01-13 06:14:54.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[1470 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[1471 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +[1472 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[1473 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc428abf620 envbytes 0xc428c3c000 +[1474 01-13 06:14:54.15 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 = [dd706bcd-37ff-4bb8-9581-10ff1b431084] +[1475 01-13 06:14:54.15 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 +[1476 01-13 06:14:54.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [dd706bcd-37ff-4bb8-9581-10ff1b431084] +[1477 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc428c3c000 +[1478 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[1479 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +[147a 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=191cd131-a388-4521-b263-64748aa5a2d5,syscc=true,proposal=0x0,canname=vscc:1.1.0 +[147b 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 chaindID businesschannel +[147c 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 +[147d 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[147e 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 +[147f 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [191cd131]Inside sendExecuteMessage. Message TRANSACTION +[1480 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1481 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [191cd131]sendExecuteMsg trigger event TRANSACTION +[1482 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [191cd131]Move state message TRANSACTION +[1483 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [191cd131]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1484 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1485 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [191cd131]sending state message TRANSACTION +[1486 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]Received message TRANSACTION from shim +[1487 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [191cd131]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1488 01-13 06:14:54.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [191cd131]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1489 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[148a 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[148b 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[148c 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]Transaction completed. Sending COMPLETED +[148d 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]Move state message COMPLETED +[148e 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [191cd131]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[148f 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [191cd131]send state message COMPLETED +[1490 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [191cd131]Received message COMPLETED from shim +[1491 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [191cd131]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1492 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [191cd131-a388-4521-b263-64748aa5a2d5]HandleMessage- COMPLETED. Notify +[1493 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:191cd131-a388-4521-b263-64748aa5a2d5, channelID:businesschannel +[1494 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1495 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] +[1496 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc428c3c000 +[1497 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc428abf620 envbytes 0xc428c3c000 +[1498 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc428accc60 env 0xc428abf620 txn 0 +[1499 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[149a 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[149b 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +[149c 01-13 06:14:54.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] +[149d 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +[149e 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[149f 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[14a0 01-13 06:14:54.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=exp02, key=a +[14a1 01-13 06:14:54.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 [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +[14a2 01-13 06:14:54.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=exp02, key=b +[14a3 01-13 06:14:54.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 [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +[14a4 01-13 06:14:54.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 +[14a5 01-13 06:14:54.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{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[14a6 01-13 06:14:54.17 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 [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] marked as valid by state validator +[14a7 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[14a8 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[14a9 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[14aa 01-13 06:14:54.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +[14ab 01-13 06:14:54.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 [6] +[14ac 01-13 06:14:54.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xd4, 0x63, 0x99, 0xb0, 0x49, 0xde, 0xf, 0x83, 0x91, 0xb3, 0xcd, 0x3a, 0x8d, 0xe2, 0xff, 0x12, 0xab, 0xd4, 0x9, 0xfb, 0xa, 0x2e, 0xbf, 0xe4, 0x27, 0x57, 0x1b, 0xa8, 0xcb, 0x38, 0x84, 0x51} txOffsets= +txId=66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 locPointer=offset=70, bytesLength=2919 ] -[a95 01-05 06:37:16.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to index -[a96 01-05 06:37:16.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55592, bytesLength=2921] for tx number:[0] ID: [ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272] to blockNumTranNum index -[a97 01-05 06:37:16.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=[60308], isChainEmpty=[false], lastBlockNumber=[6] -[a98 01-05 06:37:16.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -[a99 01-05 06:37:16.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -[a9a 01-05 06:37:16.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -[a9b 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -[a9c 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[a9d 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[a9e 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[a9f 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[aa0 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[aa1 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -[aa2 01-05 06:37:16.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 [6] with [1] transactions -[aa3 01-05 06:37:16.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 [6] -[aa4 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[aa5 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ae58fe9df9c8e8a778245dc8a8a0d1fe67e581eac2510deb1e833a722ee6b272 -[aa6 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[aa7 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[aa8 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[aa9 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[aaa 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[aab 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[aac 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[aad 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[aae 01-05 06:37:16.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[aaf 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37216 -[ab0 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421990840 -[ab1 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[ab2 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[ab3 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[ab4 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[ab5 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[ab6 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b92a50, header 0xc421990870 -[ab7 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[ab8 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 -[ab9 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -[aba 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[abb 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -[abc 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel -[abd 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel version: 1.1.0 -[abe 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773,syscc=true,proposal=0xc421b92a50,canname=qscc:1.1.0 -[abf 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -[ac0 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[ac1 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[ac2 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]Inside sendExecuteMessage. Message TRANSACTION -[ac3 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[ac4 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[ac5 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]sendExecuteMsg trigger event TRANSACTION -[ac6 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Move state message TRANSACTION -[ac7 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[ac8 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[ac9 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]sending state message TRANSACTION -[aca 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Received message TRANSACTION from shim -[acb 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[acc 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1ab908ca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[acd 01-05 06:37:16.90 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[ace 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Transaction completed. Sending COMPLETED -[acf 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Move state message COMPLETED -[ad0 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[ad1 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]send state message COMPLETED -[ad2 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Received message COMPLETED from shim -[ad3 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[ad4 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773]HandleMessage- COMPLETED. Notify -[ad5 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773, channelID:businesschannel -[ad6 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[ad7 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[ad8 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[ad9 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -[ada 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[adb 01-05 06:37:16.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel chaincode id: name:"qscc" -[adc 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[add 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773 channel id: businesschannel version: 1.1.0 -[ade 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773,syscc=true,proposal=0xc421b92a50,canname=escc:1.1.0 -[adf 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[ae0 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[ae1 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[ae2 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]Inside sendExecuteMessage. Message TRANSACTION -[ae3 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[ae4 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[ae5 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ab908ca]sendExecuteMsg trigger event TRANSACTION -[ae6 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Move state message TRANSACTION -[ae7 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[ae8 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[ae9 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]sending state message TRANSACTION -[aea 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Received message TRANSACTION from shim -[aeb 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[aec 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1ab908ca]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[aed 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[aee 01-05 06:37:16.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[aef 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Transaction completed. Sending COMPLETED -[af0 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]Move state message COMPLETED -[af1 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ab908ca]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[af2 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ab908ca]send state message COMPLETED -[af3 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ab908ca]Received message COMPLETED from shim -[af4 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908ca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[af5 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773]HandleMessage- COMPLETED. Notify -[af6 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773, channelID:businesschannel -[af7 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[af8 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[af9 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[afa 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1ab908caadfee46e32a862127019b72c0544026b3f35a9684e6cb848bc290773] -[afb 01-05 06:37:16.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37216) -[afc 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:37218 -[afd 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421991d10 -[afe 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[aff 01-05 06:37:17.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[b00 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[b01 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[b02 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[b03 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b92f00, header 0xc421991d40 -[b04 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[b05 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 -[b06 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -[b07 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[b08 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -[b09 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel -[b0a 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel version: 1.1.0 -[b0b 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.1.0,txid=9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68,syscc=true,proposal=0xc421b92f00,canname=qscc:1.1.0 -[b0c 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -[b0d 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[b0e 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[b0f 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]Inside sendExecuteMessage. Message TRANSACTION -[b10 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[b11 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[b12 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]sendExecuteMsg trigger event TRANSACTION -[b13 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Move state message TRANSACTION -[b14 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[b15 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[b16 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]sending state message TRANSACTION -[b17 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Received message TRANSACTION from shim -[b18 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[b19 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9023090a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[b1a 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[b1b 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[b1c 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[26079] -[b1d 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34229], Going to peek [8] bytes -[b1e 01-05 06:37:17.13 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=[26079], bytesOffset=[26081]} -[b1f 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Transaction completed. Sending COMPLETED -[b20 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Move state message COMPLETED -[b21 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[b22 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]send state message COMPLETED -[b23 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Received message COMPLETED from shim -[b24 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[b25 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68]HandleMessage- COMPLETED. Notify -[b26 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68, channelID:businesschannel -[b27 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[b28 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[b29 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[b2a 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -[b2b 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[b2c 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel chaincode id: name:"qscc" -[b2d 01-05 06:37:17.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[b2e 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68 channel id: businesschannel version: 1.1.0 -[b2f 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68,syscc=true,proposal=0xc421b92f00,canname=escc:1.1.0 -[b30 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[b31 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[b32 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[b33 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]Inside sendExecuteMessage. Message TRANSACTION -[b34 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[b35 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[b36 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9023090a]sendExecuteMsg trigger event TRANSACTION -[b37 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Move state message TRANSACTION -[b38 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[b39 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[b3a 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]sending state message TRANSACTION -[b3b 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Received message TRANSACTION from shim -[b3c 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[b3d 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9023090a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[b3e 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[b3f 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[b40 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Transaction completed. Sending COMPLETED -[b41 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]Move state message COMPLETED -[b42 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9023090a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[b43 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9023090a]send state message COMPLETED -[b44 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9023090a]Received message COMPLETED from shim -[b45 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[b46 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68]HandleMessage- COMPLETED. Notify -[b47 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68, channelID:businesschannel -[b48 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[b49 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[b4a 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[b4b 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [9023090ad5485a4b037292e5521fc65fc6e8c794b95a204643c09c1756db2c68] -[b4c 01-05 06:37:17.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:37218) -[b4d 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -[b4f 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[b50 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[b51 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422a8ee20 env 0xc4235ffd10 txn 0 -[b52 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4235ffd10 -[b53 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -[b54 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[b55 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[b56 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -[b57 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[b58 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[b59 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421eba000, header channel_header:"\010\001\032\006\010\247\272\274\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030\245\240\021\335\013\270L~\202\024\036\265\027\211\r\365\366\020\271%\272\272\220\205" -[b5a 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[b5b 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b5c 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[b5d 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b5e 01-05 06:37:27.84 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b5f 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[b60 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[b61 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[b62 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[b4e 01-05 06:37:27.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -[b63 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b64 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[b65 01-05 06:37:27.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[b66 01-05 06:37:27.86 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 -[b67 01-05 06:37:27.86 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 -[b68 01-05 06:37:27.86 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 -[b69 01-05 06:37:27.86 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 -[b6a 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b6b 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b6c 01-05 06:37:27.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[b6d 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[b6e 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[b6f 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[b70 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[b71 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -[b72 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[b73 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[b74 01-05 06:37:27.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[b75 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[b76 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[b77 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[b78 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[b79 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b7a 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b7b 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b7c 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b7d 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b7e 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b7f 01-05 06:37:27.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[b80 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b81 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b82 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b83 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b84 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b85 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b86 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b87 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b88 01-05 06:37:27.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b89 01-05 06:37:27.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[b8a 01-05 06:37:27.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[b8b 01-05 06:37:27.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[b8c 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b8d 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b8e 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b8f 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[b90 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[b91 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[b92 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[b93 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[b94 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[b95 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[b96 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[b97 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[b98 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[b99 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[b9a 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[b9b 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[b9c 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[b9d 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[b9e 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[b9f 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[ba0 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[ba1 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[ba2 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[ba3 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[ba4 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[ba5 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[ba6 01-05 06:37:27.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[ba7 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[ba8 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[ba9 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[baa 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bab 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[bac 01-05 06:37:27.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[bad 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[bae 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[baf 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[bb0 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bb1 01-05 06:37:28.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[bb2 01-05 06:37:28.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[bb3 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[bb4 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[bb5 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[bb6 01-05 06:37:28.04 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 -[bb7 01-05 06:37:28.04 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 -[bb8 01-05 06:37:28.04 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 -[bb9 01-05 06:37:28.04 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 -[bba 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[bbb 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[bbc 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[bbd 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[bbe 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[bbf 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[bc0 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[bc1 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[bc2 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[bc3 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[bc4 01-05 06:37:28.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[bc5 01-05 06:37:28.04 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 -[bc6 01-05 06:37:28.04 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 -[bc7 01-05 06:37:28.06 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 -[bc8 01-05 06:37:28.06 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 -[bc9 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[bca 01-05 06:37:28.06 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 -[bcb 01-05 06:37:28.06 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 -[bcc 01-05 06:37:28.06 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 -[bcd 01-05 06:37:28.06 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 -[bce 01-05 06:37:28.06 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 -[bcf 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[bd0 01-05 06:37:28.06 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 -[bd1 01-05 06:37:28.06 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 -[bd2 01-05 06:37:28.06 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 -[bd3 01-05 06:37:28.06 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 -[bd4 01-05 06:37:28.06 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 -[bd5 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[bd6 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[bd7 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[bd8 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[bd9 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[bda 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[bdb 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[bdc 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[bdd 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[bde 01-05 06:37:28.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[bdf 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[be0 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[be1 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[be2 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[be3 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[be4 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[be5 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[be6 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[be7 01-05 06:37:28.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[be8 01-05 06:37:28.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[be9 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[bea 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[beb 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -[bec 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[bed 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[bee 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[bef 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422a8ee20 env 0xc4235ffd10 txn 0 -[bf0 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[bf1 01-05 06:37:28.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[bf2 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[bf3 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -[bf4 01-05 06:37:28.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] -[bf5 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -[bf6 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[bf7 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[bf8 01-05 06:37:28.16 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] -[bf9 01-05 06:37:28.16 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{} -[bfa 01-05 06:37:28.16 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 -[bfb 01-05 06:37:28.16 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 = [] -[bfc 01-05 06:37:28.16 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[bfd 01-05 06:37:28.16 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" > -[bfe 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[bff 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[c00 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[c01 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[c02 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[c03 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c04 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[c05 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[c06 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[c07 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[c08 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[c09 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[c0a 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c0b 01-05 06:37:28.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c0c 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c0d 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[c0e 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[c0f 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c10 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[c11 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[c12 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c13 01-05 06:37:28.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c14 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[c15 01-05 06:37:28.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[c16 01-05 06:37:28.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[c17 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[c18 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c19 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c1a 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[c1b 01-05 06:37:28.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[c1c 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[c1d 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[c1e 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c1f 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c20 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[c21 01-05 06:37:28.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[c22 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[c23 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[c24 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[c25 01-05 06:37:28.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[c26 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[c27 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[c28 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[c29 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[c2a 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[c2b 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[c2c 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[c2d 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[c2e 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[c2f 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[c30 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[c31 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[c32 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[c33 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[c34 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[c35 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[c36 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[c37 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[c38 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[c39 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[c3a 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[c3b 01-05 06:37:28.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[c3c 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[c3d 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[c3e 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[c3f 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[c40 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[c41 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[c42 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[c43 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[c44 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[c45 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[c46 01-05 06:37:28.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[c47 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[c48 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[c49 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[c4a 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[c4b 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[c4c 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[c4d 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[c4e 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[c4f 01-05 06:37:28.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[c50 01-05 06:37:28.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 -[c51 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -[c52 01-05 06:37:28.32 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 [] -[c53 01-05 06:37:28.32 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 -[c54 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[c55 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[c56 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[c57 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -[c58 01-05 06:37:28.32 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] -[c59 01-05 06:37:28.32 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{0x25, 0x2, 0x88, 0xde, 0xa2, 0xc5, 0x57, 0xef, 0x42, 0xbb, 0xf4, 0x5a, 0xb6, 0x65, 0x98, 0x25, 0xa8, 0x7d, 0x74, 0x5c, 0x5c, 0xae, 0x1c, 0x57, 0x50, 0xab, 0xda, 0x17, 0x56, 0x2c, 0x9f, 0x61} txOffsets= -txId= locPointer=offset=71, bytesLength=19401 +[14ad 01-13 06:14:54.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=55592, bytesLength=2919] for tx ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to index +[14ae 01-13 06:14:54.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=55592, bytesLength=2919] for tx number:[0] ID: [66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13] to blockNumTranNum index +[14af 01-13 06:14:54.20 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=[60306], isChainEmpty=[false], lastBlockNumber=[6] +[14b0 01-13 06:14:54.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +[14b1 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +[14b2 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +[14b3 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +[14b4 01-13 06:14:54.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[14b5 01-13 06:14:54.23 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 +[14b6 01-13 06:14:54.23 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}] +[14b7 01-13 06:14:54.23 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}] +[14b8 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[14b9 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +[14ba 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +[14bb 01-13 06:14:54.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 [6] +[14bc 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[14bd 01-13 06:14:54.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 66980797608b003acae00dd06f65436723d3734ad7c00f7d699b03dc34606a13 +[14be 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[14bf 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[14c0 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[14c1 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[14c2 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[14c3 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[14c4 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[14c5 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[14c6 01-13 06:14:54.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[14c7 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53774 +[14c8 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428d738f0 +[14c9 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[14ca 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[14cb 01-13 06:14:54.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[14cc 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[14cd 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[14ce 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428d37c70, header 0xc428d73c50 +[14cf 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[14d0 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 +[14d1 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +[14d2 01-13 06:14:54.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 +[14d3 01-13 06:14:54.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 = [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +[14d4 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel +[14d5 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel version: 1.1.0 +[14d6 01-13 06:14:54.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=qscc,version=1.1.0,txid=427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549,syscc=true,proposal=0xc428d37c70,canname=qscc:1.1.0 +[14d7 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[14d8 01-13 06:14:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[14d9 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[14da 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]Inside sendExecuteMessage. Message TRANSACTION +[14db 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[14dc 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[14dd 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]sendExecuteMsg trigger event TRANSACTION +[14de 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Move state message TRANSACTION +[14df 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[14e0 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[14e1 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]sending state message TRANSACTION +[14e2 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Received message TRANSACTION from shim +[14e3 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[14e4 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [427322b1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[14e5 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[14e6 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Transaction completed. Sending COMPLETED +[14e7 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Move state message COMPLETED +[14e8 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[14e9 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]send state message COMPLETED +[14ea 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Received message COMPLETED from shim +[14eb 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[14ec 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549]HandleMessage- COMPLETED. Notify +[14ed 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549, channelID:businesschannel +[14ee 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[14ef 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[14f0 01-13 06:14:54.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 +[14f1 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +[14f2 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[14f3 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel chaincode id: name:"qscc" +[14f4 01-13 06:14:54.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[14f5 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549 channel id: businesschannel version: 1.1.0 +[14f6 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549,syscc=true,proposal=0xc428d37c70,canname=escc:1.1.0 +[14f7 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[14f8 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[14f9 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[14fa 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]Inside sendExecuteMessage. Message TRANSACTION +[14fb 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[14fc 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[14fd 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [427322b1]sendExecuteMsg trigger event TRANSACTION +[14fe 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Move state message TRANSACTION +[14ff 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1500 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1501 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]sending state message TRANSACTION +[1502 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Received message TRANSACTION from shim +[1503 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1504 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [427322b1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1505 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1506 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1507 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Transaction completed. Sending COMPLETED +[1508 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]Move state message COMPLETED +[1509 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [427322b1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[150a 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [427322b1]send state message COMPLETED +[150b 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [427322b1]Received message COMPLETED from shim +[150c 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[150d 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549]HandleMessage- COMPLETED. Notify +[150e 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549, channelID:businesschannel +[150f 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1510 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1511 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1512 01-13 06:14:54.50 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 [427322b1adc76a3292733c90adbf829504d20b6fae9a6fc5eeb5fc5eda0e0549] +[1513 01-13 06:14:54.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53774) +[1514 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53788 +[1515 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4233fe7e0 +[1516 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1517 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1518 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1519 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[151a 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[151b 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423423900, header 0xc4233feb40 +[151c 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[151d 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 +[151e 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +[151f 01-13 06:14:55.55 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 +[1520 01-13 06:14:55.55 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 = [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +[1521 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel +[1522 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel version: 1.1.0 +[1523 01-13 06:14:55.55 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.1.0,txid=664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17,syscc=true,proposal=0xc423423900,canname=qscc:1.1.0 +[1524 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1525 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1526 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[1527 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]Inside sendExecuteMessage. Message TRANSACTION +[1528 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1529 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[152a 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]sendExecuteMsg trigger event TRANSACTION +[152b 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Move state message TRANSACTION +[152c 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[152d 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[152e 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]sending state message TRANSACTION +[152f 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Received message TRANSACTION from shim +[1530 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1531 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664f9d27]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1532 01-13 06:14:55.55 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1533 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Transaction completed. Sending COMPLETED +[1534 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Move state message COMPLETED +[1535 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1536 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]send state message COMPLETED +[1537 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Received message COMPLETED from shim +[1538 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1539 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17]HandleMessage- COMPLETED. Notify +[153a 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17, channelID:businesschannel +[153b 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[153c 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[153d 01-13 06:14:55.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 +[153e 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +[153f 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1540 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel chaincode id: name:"qscc" +[1541 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1542 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17 channel id: businesschannel version: 1.1.0 +[1543 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17,syscc=true,proposal=0xc423423900,canname=escc:1.1.0 +[1544 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1545 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1546 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1547 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]Inside sendExecuteMessage. Message TRANSACTION +[1548 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1549 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[154a 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664f9d27]sendExecuteMsg trigger event TRANSACTION +[154b 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Move state message TRANSACTION +[154c 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[154d 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[154e 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]sending state message TRANSACTION +[154f 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Received message TRANSACTION from shim +[1550 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1551 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664f9d27]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1552 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1553 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1554 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Transaction completed. Sending COMPLETED +[1555 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]Move state message COMPLETED +[1556 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664f9d27]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1557 01-13 06:14:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664f9d27]send state message COMPLETED +[1558 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664f9d27]Received message COMPLETED from shim +[1559 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d27]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[155a 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17]HandleMessage- COMPLETED. Notify +[155b 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17, channelID:businesschannel +[155c 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[155d 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[155e 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[155f 01-13 06:14:55.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 [664f9d2718b148067366365171f981dc2219fc4997db5f301d2553e8350c7d17] +[1560 01-13 06:14:55.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53788) +[1561 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53804 +[1562 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42306f470 +[1563 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1564 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1565 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1566 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1567 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1568 01-13 06:14:56.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422ffd450, header 0xc42306f7d0 +[1569 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[156a 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 +[156b 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +[156c 01-13 06:14:56.64 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 +[156d 01-13 06:14:56.64 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 = [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +[156e 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel +[156f 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel version: 1.1.0 +[1570 01-13 06:14:56.64 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.1.0,txid=1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4,syscc=true,proposal=0xc422ffd450,canname=qscc:1.1.0 +[1571 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1572 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1573 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[1574 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]Inside sendExecuteMessage. Message TRANSACTION +[1575 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1576 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1577 01-13 06:14:56.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]sendExecuteMsg trigger event TRANSACTION +[1578 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Move state message TRANSACTION +[1579 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[157a 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[157b 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]sending state message TRANSACTION +[157c 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Received message TRANSACTION from shim +[157d 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[157e 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1d69deaf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[157f 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1580 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Transaction completed. Sending COMPLETED +[1581 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Move state message COMPLETED +[1582 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1583 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]send state message COMPLETED +[1584 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Received message COMPLETED from shim +[1585 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1586 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4]HandleMessage- COMPLETED. Notify +[1587 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4, channelID:businesschannel +[1588 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1589 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[158a 01-13 06:14:56.65 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 +[158b 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +[158c 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[158d 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel chaincode id: name:"qscc" +[158e 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[158f 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4 channel id: businesschannel version: 1.1.0 +[1590 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4,syscc=true,proposal=0xc422ffd450,canname=escc:1.1.0 +[1591 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1592 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1593 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1594 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]Inside sendExecuteMessage. Message TRANSACTION +[1595 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1596 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1597 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d69deaf]sendExecuteMsg trigger event TRANSACTION +[1598 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Move state message TRANSACTION +[1599 01-13 06:14:56.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[159a 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[159b 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]sending state message TRANSACTION +[159c 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Received message TRANSACTION from shim +[159d 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[159e 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1d69deaf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[159f 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[15a0 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[15a1 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Transaction completed. Sending COMPLETED +[15a2 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]Move state message COMPLETED +[15a3 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d69deaf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[15a4 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d69deaf]send state message COMPLETED +[15a5 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d69deaf]Received message COMPLETED from shim +[15a6 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deaf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[15a7 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4]HandleMessage- COMPLETED. Notify +[15a8 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4, channelID:businesschannel +[15a9 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[15aa 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[15ab 01-13 06:14:56.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[15ac 01-13 06:14:56.67 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 [1d69deafcf9025d5c28df3a0d1e28d5d458357a2432453f0f962c3811321c5d4] +[15ad 01-13 06:14:56.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53804) +[15ae 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53806 +[15af 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422da5bf0 +[15b0 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[15b1 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[15b2 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[15b3 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[15b4 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[15b5 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422d67e50, header 0xc422da5f50 +[15b6 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[15b7 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e +[15b8 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +[15b9 01-13 06:14:57.71 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 +[15ba 01-13 06:14:57.71 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 = [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +[15bb 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel +[15bc 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel version: 1.1.0 +[15bd 01-13 06:14:57.71 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.1.0,txid=f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e,syscc=true,proposal=0xc422d67e50,canname=qscc:1.1.0 +[15be 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[15bf 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[15c0 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[15c1 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]Inside sendExecuteMessage. Message TRANSACTION +[15c2 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[15c3 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[15c4 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]sendExecuteMsg trigger event TRANSACTION +[15c5 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Move state message TRANSACTION +[15c6 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[15c7 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[15c8 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]sending state message TRANSACTION +[15c9 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Received message TRANSACTION from shim +[15ca 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[15cb 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f5975568]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[15cc 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[15cd 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Transaction completed. Sending COMPLETED +[15ce 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Move state message COMPLETED +[15cf 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[15d0 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]send state message COMPLETED +[15d1 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Received message COMPLETED from shim +[15d2 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[15d3 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e]HandleMessage- COMPLETED. Notify +[15d4 01-13 06:14:57.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e, channelID:businesschannel +[15d5 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[15d6 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[15d7 01-13 06:14:57.72 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 +[15d8 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +[15d9 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[15da 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel chaincode id: name:"qscc" +[15db 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[15dc 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e channel id: businesschannel version: 1.1.0 +[15dd 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e,syscc=true,proposal=0xc422d67e50,canname=escc:1.1.0 +[15de 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[15df 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[15e0 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[15e1 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]Inside sendExecuteMessage. Message TRANSACTION +[15e2 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[15e3 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[15e4 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5975568]sendExecuteMsg trigger event TRANSACTION +[15e5 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Move state message TRANSACTION +[15e6 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[15e7 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[15e8 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]sending state message TRANSACTION +[15e9 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Received message TRANSACTION from shim +[15ea 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[15eb 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f5975568]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[15ec 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[15ed 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[15ee 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Transaction completed. Sending COMPLETED +[15ef 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]Move state message COMPLETED +[15f0 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5975568]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[15f1 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5975568]send state message COMPLETED +[15f2 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5975568]Received message COMPLETED from shim +[15f3 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f5975568]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[15f4 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e]HandleMessage- COMPLETED. Notify +[15f5 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e, channelID:businesschannel +[15f6 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[15f7 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[15f8 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[15f9 01-13 06:14:57.72 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 [f597556821059b2854498eba9d254638ea10bc7b381483c44c5ee2a148f6402e] +[15fa 01-13 06:14:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53806) +[15fb 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53808 +[15fc 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422d42d50 +[15fd 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[15fe 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[15ff 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[1600 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1601 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1602 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422cb11d0, header 0xc422d430b0 +[1603 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[1604 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 +[1605 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +[1606 01-13 06:14:58.76 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 +[1607 01-13 06:14:58.76 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 = [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +[1608 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel +[1609 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel version: 1.1.0 +[160a 01-13 06:14:58.76 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.1.0,txid=ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087,syscc=true,proposal=0xc422cb11d0,canname=qscc:1.1.0 +[160b 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[160c 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[160d 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[160e 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]Inside sendExecuteMessage. Message TRANSACTION +[160f 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1610 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1611 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]sendExecuteMsg trigger event TRANSACTION +[1612 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Move state message TRANSACTION +[1613 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1614 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1615 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]sending state message TRANSACTION +[1616 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Received message TRANSACTION from shim +[1617 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1618 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ece50b1e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1619 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[161a 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Transaction completed. Sending COMPLETED +[161b 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Move state message COMPLETED +[161c 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[161d 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]send state message COMPLETED +[161e 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Received message COMPLETED from shim +[161f 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1620 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087]HandleMessage- COMPLETED. Notify +[1621 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087, channelID:businesschannel +[1622 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1623 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[1624 01-13 06:14:58.76 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 +[1625 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +[1626 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1627 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel chaincode id: name:"qscc" +[1628 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1629 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087 channel id: businesschannel version: 1.1.0 +[162a 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087,syscc=true,proposal=0xc422cb11d0,canname=escc:1.1.0 +[162b 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[162c 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[162d 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[162e 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]Inside sendExecuteMessage. Message TRANSACTION +[162f 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1630 01-13 06:14:58.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1631 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ece50b1e]sendExecuteMsg trigger event TRANSACTION +[1632 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Move state message TRANSACTION +[1633 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1634 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1635 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]sending state message TRANSACTION +[1636 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Received message TRANSACTION from shim +[1637 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1638 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ece50b1e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1639 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[163a 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[163b 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Transaction completed. Sending COMPLETED +[163c 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]Move state message COMPLETED +[163d 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ece50b1e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[163e 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ece50b1e]send state message COMPLETED +[163f 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ece50b1e]Received message COMPLETED from shim +[1640 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1641 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087]HandleMessage- COMPLETED. Notify +[1642 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087, channelID:businesschannel +[1643 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1644 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1645 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1646 01-13 06:14:58.77 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 [ece50b1eb6264a20c9c156c1f09b7bb21a1c759dbcbcc08c5030990db4241087] +[1647 01-13 06:14:58.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53808) +[1648 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53810 +[1649 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422ade9f0 +[164a 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[164b 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[164c 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[164d 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[164e 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[164f 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ebdb30, header 0xc422adede0 +[1650 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[1651 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd +[1652 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +[1653 01-13 06:14:59.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 +[1654 01-13 06:14:59.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 = [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +[1655 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel +[1656 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel version: 1.1.0 +[1657 01-13 06:14:59.80 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.1.0,txid=4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd,syscc=true,proposal=0xc421ebdb30,canname=qscc:1.1.0 +[1658 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[1659 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[165a 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[165b 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]Inside sendExecuteMessage. Message TRANSACTION +[165c 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[165d 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[165e 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]sendExecuteMsg trigger event TRANSACTION +[165f 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Move state message TRANSACTION +[1660 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1661 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1662 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]sending state message TRANSACTION +[1663 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Received message TRANSACTION from shim +[1664 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1665 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4aec073b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1666 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1667 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Transaction completed. Sending COMPLETED +[1668 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Move state message COMPLETED +[1669 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[166a 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]send state message COMPLETED +[166b 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Received message COMPLETED from shim +[166c 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[166d 01-13 06:14:59.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd]HandleMessage- COMPLETED. Notify +[166e 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd, channelID:businesschannel +[166f 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1670 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[1671 01-13 06:14:59.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 +[1672 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +[1673 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1674 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel chaincode id: name:"qscc" +[1675 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1676 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd channel id: businesschannel version: 1.1.0 +[1677 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd,syscc=true,proposal=0xc421ebdb30,canname=escc:1.1.0 +[1678 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1679 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[167a 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[167b 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]Inside sendExecuteMessage. Message TRANSACTION +[167c 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[167d 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[167e 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4aec073b]sendExecuteMsg trigger event TRANSACTION +[167f 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Move state message TRANSACTION +[1680 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1681 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1682 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]sending state message TRANSACTION +[1683 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Received message TRANSACTION from shim +[1684 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1685 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4aec073b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1686 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1687 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1688 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Transaction completed. Sending COMPLETED +[1689 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]Move state message COMPLETED +[168a 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aec073b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[168b 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aec073b]send state message COMPLETED +[168c 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4aec073b]Received message COMPLETED from shim +[168d 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[168e 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd]HandleMessage- COMPLETED. Notify +[168f 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd, channelID:businesschannel +[1690 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1691 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[1692 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[1693 01-13 06:14:59.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 [4aec073b52c23034bbb4fb0a6151866ea253db97d82cc00e8deb2613dd0038cd] +[1694 01-13 06:14:59.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53810) +[1695 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53822 +[1696 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421aafe30 +[1697 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1698 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1699 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[169a 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[169b 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[169c 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421979590, header 0xc4219f6210 +[169d 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[169e 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a +[169f 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +[16a0 01-13 06:15:00.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 +[16a1 01-13 06:15:00.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 = [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +[16a2 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel +[16a3 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel version: 1.1.0 +[16a4 01-13 06:15:00.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.1.0,txid=10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a,syscc=true,proposal=0xc421979590,canname=qscc:1.1.0 +[16a5 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[16a6 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[16a7 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[16a8 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]Inside sendExecuteMessage. Message TRANSACTION +[16a9 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[16aa 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[16ab 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]sendExecuteMsg trigger event TRANSACTION +[16ac 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Move state message TRANSACTION +[16ad 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[16ae 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[16af 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]sending state message TRANSACTION +[16b0 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Received message TRANSACTION from shim +[16b1 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[16b2 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10630ec3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[16b3 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[16b4 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Transaction completed. Sending COMPLETED +[16b5 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Move state message COMPLETED +[16b6 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[16b7 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]send state message COMPLETED +[16b8 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Received message COMPLETED from shim +[16b9 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[16ba 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a]HandleMessage- COMPLETED. Notify +[16bb 01-13 06:15:00.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a, channelID:businesschannel +[16bc 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[16bd 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[16be 01-13 06:15:00.93 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 +[16bf 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +[16c0 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[16c1 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel chaincode id: name:"qscc" +[16c2 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[16c3 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a channel id: businesschannel version: 1.1.0 +[16c4 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a,syscc=true,proposal=0xc421979590,canname=escc:1.1.0 +[16c5 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[16c6 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[16c7 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[16c8 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]Inside sendExecuteMessage. Message TRANSACTION +[16c9 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[16ca 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[16cb 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10630ec3]sendExecuteMsg trigger event TRANSACTION +[16cc 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Move state message TRANSACTION +[16cd 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[16ce 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[16cf 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]sending state message TRANSACTION +[16d0 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Received message TRANSACTION from shim +[16d1 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[16d2 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10630ec3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[16d3 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[16d4 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[16d5 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Transaction completed. Sending COMPLETED +[16d6 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]Move state message COMPLETED +[16d7 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10630ec3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[16d8 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10630ec3]send state message COMPLETED +[16d9 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10630ec3]Received message COMPLETED from shim +[16da 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[16db 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a]HandleMessage- COMPLETED. Notify +[16dc 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a, channelID:businesschannel +[16dd 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[16de 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[16df 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[16e0 01-13 06:15:00.93 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 [10630ec354a6bfde910021dbe9fdecc3c52b4df66c0b48faf9e79d7ec172457a] +[16e1 01-13 06:15:00.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53822) +[16e2 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53828 +[16e3 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421868750 +[16e4 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[16e5 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[16e6 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[16e7 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[16e8 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[16e9 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4203ca550, header 0xc421868ab0 +[16ea 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[16eb 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 +[16ec 01-13 06:15:01.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +[16ed 01-13 06:15:01.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 +[16ee 01-13 06:15:01.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 = [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +[16ef 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel +[16f0 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel version: 1.1.0 +[16f1 01-13 06:15:01.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=qscc,version=1.1.0,txid=0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265,syscc=true,proposal=0xc4203ca550,canname=qscc:1.1.0 +[16f2 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[16f3 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[16f4 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[16f5 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]Inside sendExecuteMessage. Message TRANSACTION +[16f6 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[16f7 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[16f8 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]sendExecuteMsg trigger event TRANSACTION +[16f9 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Move state message TRANSACTION +[16fa 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[16fb 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[16fc 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]sending state message TRANSACTION +[16fd 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Received message TRANSACTION from shim +[16fe 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[16ff 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c104c34]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1700 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1701 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Transaction completed. Sending COMPLETED +[1702 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Move state message COMPLETED +[1703 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1704 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]send state message COMPLETED +[1705 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Received message COMPLETED from shim +[1706 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1707 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265]HandleMessage- COMPLETED. Notify +[1708 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265, channelID:businesschannel +[1709 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[170a 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[170b 01-13 06:15:01.98 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 +[170c 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +[170d 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[170e 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel chaincode id: name:"qscc" +[170f 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1710 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265 channel id: businesschannel version: 1.1.0 +[1711 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265,syscc=true,proposal=0xc4203ca550,canname=escc:1.1.0 +[1712 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[1713 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1714 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[1715 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]Inside sendExecuteMessage. Message TRANSACTION +[1716 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1717 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1718 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c104c34]sendExecuteMsg trigger event TRANSACTION +[1719 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Move state message TRANSACTION +[171a 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[171b 01-13 06:15:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[171c 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]sending state message TRANSACTION +[171d 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Received message TRANSACTION from shim +[171e 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[171f 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c104c34]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1720 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1721 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1722 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Transaction completed. Sending COMPLETED +[1723 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]Move state message COMPLETED +[1724 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c104c34]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[1725 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c104c34]send state message COMPLETED +[1726 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c104c34]Received message COMPLETED from shim +[1727 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[1728 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265]HandleMessage- COMPLETED. Notify +[1729 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265, channelID:businesschannel +[172a 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[172b 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[172c 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[172d 01-13 06:15:01.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 [0c104c34a5c342be674bdf901586ebb8d76fd8542d99dd156b5a918c2aa9f265] +[172e 01-13 06:15:01.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53828) +[172f 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] +[1730 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] +[1731 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[1732 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[1733 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4203bb2a0 env 0xc42037c1e0 txn 0 +[1734 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42037c1e0 +[1735 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +[1736 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[1737 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1738 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} +[1739 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[173a 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[173b 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422770a80, header channel_header:"\010\001\032\006\010\346\307\346\322\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR\noyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY\nV9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3\nSOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X\n-----END CERTIFICATE-----\n\022\030b\221\305@\260\200O%\007\375$\343\177\251\204J\236\240\343+\321\201m\250" +[173c 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel +[173d 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[173e 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[173f 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1740 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[1741 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[1742 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1743 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1744 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1745 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1746 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[1747 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1748 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[1749 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[174a 01-13 06:15:02.09 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 +[174b 01-13 06:15:02.09 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 +[174c 01-13 06:15:02.09 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 +[174d 01-13 06:15:02.09 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 +[174e 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[174f 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1750 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1751 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1752 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +[1753 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +[1754 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[1755 01-13 06:15:02.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +[1756 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[1757 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[1758 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +[1759 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +[175a 01-13 06:15:02.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +[175b 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[175c 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[175d 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[175e 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[175f 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[1760 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1761 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1762 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1763 01-13 06:15:02.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1764 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1765 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1766 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1767 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1768 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1769 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[176a 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[176b 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +[176c 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +[176d 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +[176e 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[176f 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1770 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1771 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[1772 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1773 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1774 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1775 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1776 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[1777 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[1778 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[1779 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[177a 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[177b 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[177c 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[177d 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[177e 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[177f 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1780 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[1781 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[1782 01-13 06:15:02.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[1783 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1784 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1785 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1786 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1787 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[1788 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[1789 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[178a 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[178b 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[178c 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[178d 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +[178e 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +[178f 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1790 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1791 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1792 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1793 01-13 06:15:02.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[1794 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[1795 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1796 01-13 06:15:02.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[1797 01-13 06:15:02.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 +[1798 01-13 06:15:02.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 +[1799 01-13 06:15:02.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 +[179a 01-13 06:15:02.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 +[179b 01-13 06:15:02.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 +[179c 01-13 06:15:02.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 +[179d 01-13 06:15:02.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 +[179e 01-13 06:15:02.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 +[179f 01-13 06:15:02.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 +[17a0 01-13 06:15:02.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 +[17a1 01-13 06:15:02.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 +[17a2 01-13 06:15:02.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 +[17a3 01-13 06:15:02.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 +[17a4 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[17a5 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[17a6 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[17a7 01-13 06:15:02.17 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 +[17a8 01-13 06:15:02.17 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 +[17a9 01-13 06:15:02.17 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 +[17aa 01-13 06:15:02.17 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 +[17ab 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[17ac 01-13 06:15:02.17 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 +[17ad 01-13 06:15:02.17 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 +[17ae 01-13 06:15:02.17 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 +[17af 01-13 06:15:02.17 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 +[17b0 01-13 06:15:02.17 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 +[17b1 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[17b2 01-13 06:15:02.17 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 +[17b3 01-13 06:15:02.17 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 +[17b4 01-13 06:15:02.17 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 +[17b5 01-13 06:15:02.17 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 +[17b6 01-13 06:15:02.17 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 +[17b7 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[17b8 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[17b9 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[17ba 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[17bb 01-13 06:15:02.17 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[17bc 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[17bd 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[17be 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[17bf 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[17c0 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[17c1 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[17c2 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[17c3 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[17c4 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[17c5 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[17c6 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[17c7 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[17c8 01-13 06:15:02.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[17c9 01-13 06:15:02.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources +[17ca 01-13 06:15:02.20 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[17cb 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[17cc 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[17cd 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[17ce 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[17cf 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +[17d0 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[17d1 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4203bb2a0 env 0xc42037c1e0 txn 0 +[17d2 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[17d3 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[17d4 01-13 06:15:02.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[17d5 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +[17d6 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[17d7 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +[17d8 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[17d9 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[17da 01-13 06:15:02.22 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] +[17db 01-13 06:15:02.22 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{} +[17dc 01-13 06:15:02.22 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 +[17dd 01-13 06:15:02.22 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 = [] +[17de 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[17df 01-13 06:15:02.22 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" > +[17e0 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[17e1 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[17e2 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[17e3 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[17e4 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[17e5 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[17e6 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[17e7 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[17e8 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[17e9 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[17ea 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[17eb 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[17ec 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[17ed 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[17ee 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[17ef 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[17f0 01-13 06:15:02.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[17f1 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[17f2 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[17f3 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[17f4 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[17f5 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[17f6 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[17f7 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[17f8 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[17f9 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[17fa 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[17fb 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[17fc 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +[17fd 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +[17fe 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[17ff 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1800 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1801 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1802 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[1803 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[1804 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1805 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[1806 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[1807 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[1808 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[1809 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[180a 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[180b 01-13 06:15:02.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[180c 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[180d 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[180e 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[180f 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[1810 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[1811 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1812 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[1813 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[1814 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1815 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1816 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1817 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[1818 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1819 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[181a 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[181b 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[181c 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[181d 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[181e 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[181f 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1820 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1821 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[1822 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[1823 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[1824 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[1825 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[1826 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1827 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1828 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1829 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[182a 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[182b 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[182c 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[182d 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[182e 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[182f 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[1830 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[1831 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[1832 01-13 06:15:02.24 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 +[1833 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] +[1834 01-13 06:15:02.24 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 [] +[1835 01-13 06:15:02.24 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 +[1836 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[1837 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[1838 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[1839 01-13 06:15:02.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage +[183a 01-13 06:15:02.30 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] +[183b 01-13 06:15:02.30 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org2.example.com:7051, PKIid:[136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48] isn't responsive: rpc error: code = Unavailable desc = transport is closing +[183c 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48]] +[183d 01-13 06:15:02.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org2.example.com:7051, InternalEndpoint: , PKI-ID: [136 15 139 213 162 211 206 203 169 40 136 46 156 116 237 213 74 152 55 60 168 120 228 91 41 99 15 85 26 15 162 48], Metadata: [] +[183e 01-13 06:15:02.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +[183f 01-13 06:15:02.33 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{0x6f, 0xd, 0xbc, 0x7, 0xe, 0x4f, 0xa4, 0xd8, 0xdf, 0xeb, 0x8e, 0xce, 0x2d, 0xc6, 0xf, 0xd7, 0x81, 0x88, 0xe, 0xae, 0x85, 0x91, 0x2d, 0xe0, 0x7c, 0x68, 0xd3, 0x3e, 0xf, 0xde, 0xc4, 0xc4} txOffsets= +txId= locPointer=offset=71, bytesLength=19402 ] -[c5a 01-05 06:37:28.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=60379, bytesLength=19401] for tx ID: [] to index -[c5b 01-05 06:37:28.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=60379, bytesLength=19401] for tx number:[0] ID: [] to blockNumTranNum index -[c5c 01-05 06:37:28.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] -[c5d 01-05 06:37:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] -[c5e 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -[c5f 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -[c60 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -[c61 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[c62 01-05 06:37:28.33 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 -[c63 01-05 06:37:28.33 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}] -[c64 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[c65 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -[c66 01-05 06:37:28.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 [7] with [1] transactions -[c67 01-05 06:37:28.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 -[c68 01-05 06:37:28.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 [7] -[c69 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[c6a 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[c6b 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[c6c 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[c6d 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[c6e 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[c6f 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[c70 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[c71 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[c72 01-05 06:37:28.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[1840 01-13 06:15:02.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=60377, bytesLength=19402] for tx ID: [] to index +[1841 01-13 06:15:02.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=60377, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index +[1842 01-13 06:15:02.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=[81574], isChainEmpty=[false], lastBlockNumber=[7] +[1843 01-13 06:15:02.38 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] +[1844 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +[1845 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +[1846 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +[1847 01-13 06:15:02.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[1848 01-13 06:15:02.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 +[1849 01-13 06:15:02.39 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}] +[184a 01-13 06:15:02.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[184b 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database +[184c 01-13 06:15:02.42 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 +[184d 01-13 06:15:02.42 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 +[184e 01-13 06:15:02.42 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] +[184f 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[1850 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[1851 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[1852 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[1853 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[1854 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[1855 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[1856 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[1857 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[1858 01-13 06:15:02.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[1859 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53850 +[185a 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4287a6930 +[185b 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[185c 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[185d 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[185e 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[185f 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1860 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428e9d400, header 0xc4287a6c90 +[1861 01-13 06:15:03.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[1862 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd +[1863 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +[1864 01-13 06:15:03.03 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 +[1865 01-13 06:15:03.03 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 = [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +[1866 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel +[1867 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel version: 1.1.0 +[1868 01-13 06:15:03.03 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.1.0,txid=664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd,syscc=true,proposal=0xc428e9d400,canname=qscc:1.1.0 +[1869 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[186a 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[186b 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[186c 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]Inside sendExecuteMessage. Message TRANSACTION +[186d 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[186e 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[186f 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]sendExecuteMsg trigger event TRANSACTION +[1870 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Move state message TRANSACTION +[1871 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1872 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1873 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]sending state message TRANSACTION +[1874 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Received message TRANSACTION from shim +[1875 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1876 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664b8a22]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1877 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[1878 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Transaction completed. Sending COMPLETED +[1879 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Move state message COMPLETED +[187a 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[187b 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]send state message COMPLETED +[187c 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Received message COMPLETED from shim +[187d 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[187e 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd]HandleMessage- COMPLETED. Notify +[187f 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd, channelID:businesschannel +[1880 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[1881 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[1882 01-13 06:15:03.03 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 +[1883 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +[1884 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[1885 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel chaincode id: name:"qscc" +[1886 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[1887 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd channel id: businesschannel version: 1.1.0 +[1888 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd,syscc=true,proposal=0xc428e9d400,canname=escc:1.1.0 +[1889 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[188a 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[188b 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[188c 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]Inside sendExecuteMessage. Message TRANSACTION +[188d 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[188e 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[188f 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [664b8a22]sendExecuteMsg trigger event TRANSACTION +[1890 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Move state message TRANSACTION +[1891 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1892 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1893 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]sending state message TRANSACTION +[1894 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Received message TRANSACTION from shim +[1895 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1896 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [664b8a22]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1897 01-13 06:15:03.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[1898 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[1899 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Transaction completed. Sending COMPLETED +[189a 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]Move state message COMPLETED +[189b 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [664b8a22]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[189c 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [664b8a22]send state message COMPLETED +[189d 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [664b8a22]Received message COMPLETED from shim +[189e 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a22]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[189f 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd]HandleMessage- COMPLETED. Notify +[18a0 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd, channelID:businesschannel +[18a1 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[18a2 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[18a3 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[18a4 01-13 06:15:03.04 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 [664b8a229d4d3af8dfd0f4870f59c01100ab79b7e5abc6660c8167b55c81eafd] +[18a5 01-13 06:15:03.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53850) +[18a6 01-13 06:15:04.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.9:53852 +[18a7 01-13 06:15:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4285520f0 +[18a8 01-13 06:15:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[18a9 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[18aa 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} +[18ab 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[18ac 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[18ad 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428793630, header 0xc428552450 +[18ae 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[18af 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU processing txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 +[18b0 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +[18b1 01-13 06:15:04.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 +[18b2 01-13 06:15:04.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 = [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +[18b3 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel +[18b4 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel version: 1.1.0 +[18b5 01-13 06:15:04.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=qscc,version=1.1.0,txid=1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636,syscc=true,proposal=0xc428793630,canname=qscc:1.1.0 +[18b6 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 +[18b7 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[18b8 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 +[18b9 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]Inside sendExecuteMessage. Message TRANSACTION +[18ba 01-13 06:15:04.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[18bb 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[18bc 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]sendExecuteMsg trigger event TRANSACTION +[18bd 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Move state message TRANSACTION +[18be 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[18bf 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[18c0 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]sending state message TRANSACTION +[18c1 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Received message TRANSACTION from shim +[18c2 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[18c3 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c2ac0eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[18c4 01-13 06:15:04.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[18c5 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Transaction completed. Sending COMPLETED +[18c6 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Move state message COMPLETED +[18c7 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[18c8 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]send state message COMPLETED +[18c9 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Received message COMPLETED from shim +[18ca 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[18cb 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636]HandleMessage- COMPLETED. Notify +[18cc 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636, channelID:businesschannel +[18cd 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[18ce 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[18cf 01-13 06:15:04.11 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 +[18d0 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +[18d1 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit +[18d2 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel chaincode id: name:"qscc" +[18d3 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[18d4 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636 channel id: businesschannel version: 1.1.0 +[18d5 01-13 06:15:04.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636,syscc=true,proposal=0xc428793630,canname=escc:1.1.0 +[18d6 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 +[18d7 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry +[18d8 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 +[18d9 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]Inside sendExecuteMessage. Message TRANSACTION +[18da 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[18db 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[18dc 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c2ac0eb]sendExecuteMsg trigger event TRANSACTION +[18dd 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Move state message TRANSACTION +[18de 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[18df 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[18e0 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]sending state message TRANSACTION +[18e1 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Received message TRANSACTION from shim +[18e2 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[18e3 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c2ac0eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[18e4 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[18e5 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[18e6 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Transaction completed. Sending COMPLETED +[18e7 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]Move state message COMPLETED +[18e8 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c2ac0eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[18e9 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c2ac0eb]send state message COMPLETED +[18ea 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c2ac0eb]Received message COMPLETED from shim +[18eb 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[18ec 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636]HandleMessage- COMPLETED. Notify +[18ed 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636, channelID:businesschannel +[18ee 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit +[18ef 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[18f0 01-13 06:15:04.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit +[18f1 01-13 06:15:04.12 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 [1c2ac0eb5ab298ab6961787cc3cf5208dd88372ed9b77f0199df5e164d727636] +[18f2 01-13 06:15:04.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.9:53852) diff --git a/hyperledger_fabric/v1.0.2/Makefile b/hyperledger_fabric/v1.0.2/Makefile index 5daaac60..4a7bb23c 100644 --- a/hyperledger_fabric/v1.0.2/Makefile +++ b/hyperledger_fabric/v1.0.2/Makefile @@ -50,7 +50,7 @@ ready: # create/join channel, install/instantiate cc #make update_anchors make test_cc_install - make test_cc_instantiate + #make test_cc_instantiate #make test_cc_invoke_query #make test_lscc # test lscc operations diff --git a/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh b/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh index e32bfb7a..e47fff42 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh @@ -28,7 +28,7 @@ chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_C echo_b "LSCC Get cc bytes" chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' -echo_b "LSCC Get all chaincodes installed on the channel" +echo_b "LSCC Get all chaincodes installed on the peer" chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' echo_b "LSCC Get all chaincodes instantiated on the channel" diff --git a/hyperledger_fabric/v1.0.2/scripts/variables.sh b/hyperledger_fabric/v1.0.2/scripts/variables.sh index 369bc61d..ad779343 100644 --- a/hyperledger_fabric/v1.0.2/scripts/variables.sh +++ b/hyperledger_fabric/v1.0.2/scripts/variables.sh @@ -42,6 +42,7 @@ ORG2_PEER1_URL="peer1.org2.example.com:7051" # Chaincode related CC_02_NAME="exp02" CC_02_PATH="examples/chaincode/go/chaincode_example02" +CC_02_PATH="examples/chaincode/go/fabcar2" CC_INIT_VERSION=1.0 CC_UPGRADE_VERSION=1.1 diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_1.block index cb2d224558e97598d76cb1ff1492e25d147781bf..642b7250b1b3e9285f06531cc979a9f76fed651e 100644 GIT binary patch delta 801 zcmV++1K#|pYpZKs3PuP45+Gdk$-=h6r6a|lnEUHs2Egfc!>(x8K%v7E6ag9_ z{5rS&X5e-=fQ#Pdtq?>TJVOnf3m6(*WphZU_-Hzc5`$d|fL#i-Tne`a3L6Lk8U_fb z`sA@*6$2WXe33YPrPl&or@Xmc7LAFG)63 zBn$y6k|isX`6VZl<|H8kDh88yC4rMOB}2W224x=eVUPT_C^v%Fhv3(0OE)hikIMn| z2mun~1`3x33i<^K3QuxmWpZV5O;b=3>$B@F?gC|0rlb!~7g@)FHNPaC@uc2LEh&Pz z#UFhVM=(VKApn%zp~HR}v~xtuert0;!LlI);^NsB=;7G_WL~3T!+QcCMWK5ZI*7@h1cx!V3uus`*B)Q3IGZKhFn$N delta 782 zcmV+p1M&Q;YpH8q3PuP45+Iw}M`4R~5?Q$&5Vx$D2C-A$eVp{k^M(!2x?Ts@kMtTK z?tl_zyQ93&^a_uW?s`coaUph`un8KIm6$2V*jt?@QiLXYd!!(xUDKbK)eG-4E(RPs%__K`z(g~B54QZ2J4K@KPlOGOm zlLihTle!LUla3B7vnCH(3X@YLB$L(|K$9ROCbJ3}8VZw%BrcO6BxM0AliVavlL8Mc zlddI8lQSiIlj9^OlLZeUlN}}`6B3>f3epb>$p#7=2m%@g2!WxQvv?*a0~#PZj$28w ztheu|fqA}#vTu0A_b-+^Xll5dGWjzu` zFhl|%DxwxIuy_IE=>Q}XmBU}q0`;~FJN9%GC~(^yhY#+S0w8t!`!@lHVcCp+aN`Jx zYJzyqQYC^u_JO|=0~j_>aDW=v4GQH365<95mj<)iF8>05PG0ilQhBf z_2gpanc)_J5=JmY0w52ZboFHG6$|7sK%3K*^3?s#6#y^+`pR*BSFY)F!+HWBAf?Ll zwqm&FiM%!u&CNijI_T9g59=A925|!~xN$m#3h4$40tf*T;sy$r1`7HG3JOnhWMy(? za!pfE66*!C>@MvBWGp3AhbGWUn;SmS?v~2${R2;>M;_{Mmxfe=Rk61-gsxm^nFTne`a3L6Lk8U_fd z`sA@*6$2PYhe1b)~^r$;s%12)wA5{Ha-R72lXyoTAsv7$Qp7X8NpAV~0* zetVpKjwSBmHt2(C;C9=5s<@d|9%G;OCU=3?-U{gk3IYfMvkfl=17yw4Of`b9d{3AM z<4_-N@O#Y9s*f|wQ8f}qFhl|%FpDv-=dhi*GfS!8_n7$CPkC?BB=;Y%^-v%NvopK! p0w6L4+F-N26M?$V?*kEAW`?--M#=fha`2R1v}+vcTK@_F3IJXuJ;MM1 delta 752 zcmVDPaPT{ z--hlOJ!)z;+w`Q%A!JMKaFu2w>F^$bN_+4!=Bbw_61-gsxm^nFTne`a3L6Lk8U_f1 zp_#E>6$2P<`t#LYkHDQrCKy_RYN@>U`fK;r?kw@Miv!dNla&o=lU@xr0V5k0Wy=<88efB zBtDbzBz=>`C2o^#C0CPICPeU4 zuVGRLr_gAMCN6t%C%M&qLO00zNi=nJZ zqq@q=@lwhfH>aJcO4=b^IYSagFhl|%IC@rLW_K6^^)G1?5@)g(c8TIpF{I$L*ncHh zIBw9-{sJI)9ZSU?a9e0A^6&{tZ*0WBPTYMG*3(D`!_q#aWSB`3M=(VKApqlQy4ALE zVqR?&SVrmfn=Q@1XObv3Ual#BCqAjcv8@6i8!m4;Yu!Zb+r+e?t=DI(QBebQUke#3 z)x6OP@FbCJL{Um+|Mk-J^nHdMMbpQw)JRtfdU{^uK4`hx|uN0ds#%o z-x4kK1=J|Tt=}#tLYb8R(B_#6>IMn|2m%u0vkxx=17)jj%?u)=P%2Vsez~qB0oarFVU2314^a6X6$!l8u8ymf=rQ+8v-CqxUrAw iRBgVIx?m)W?(bbiqd-tC^{y@n)U5;fvJ7Sl015zeU_|!- diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_3.block index f0afee3a35256c5471fca42a96bc945ec59c2061..91dcec569e29215ca08b07a1ea80dcd67b4adefa 100644 GIT binary patch delta 649 zcmaE&@mQmt%Z-CsNZ~l+ec5vj&ub6Lzu$ePB*yVg#kD|jfj3ff&zxSv_@>WaN+IO) zzWfDQg%!zms&YcnfomO?CNnDWCzTdw=A{-FCubz)<)!9mIV2h;8=53pCYh#~S*95!nOYpkl2MB3#vSs^600}Z)h^m# zvGd*LO9I}@cq1+ZtTE_tsa&}EJ+l;U*~yCRvlKR&bg(`Bw_x(oS5X4aY)kYcLc(69 z)L%?i(5?-a-|=VR=G*K_to14B)pr}0`Ee<(IW@ER@6+q0Njzd#vvZ$ry?d~g$!OLh zCWScJGCl5nG0Q|3v}@@s326B*_v`nA-$^@_VosJHb8KEFv*P%b%A)F>_KfP5r=x^V^t)+Bk z*~b50>X)>+ZtmdaX3qRGdE2X$O^o7!>nc-Iq9;AL)WYIe@kiwZ#G2T01EF_QS0?sN zSH7>;8`!n6G}kI}t>fl3oKqj{zjrZ~Ng;EVV+~{Z`-w$4H#+q1O*$cYBE`^l&Y1;M zyxtwY`N`ae>lGUp69<#fF`}s|*Lxi+m2)P@$ zGAS}Nv@P-4VgGc!imcW~mM!0v)<0G}d2`K_=gJ>`h`mS@vnoK?ada2G88(UvV*TF#rHPnH0Zo%S+ACaxgPCNwu`JG&MIiPqr{mG%-#xHA+lL zO|eWhN=Y*}H#4^|NJ}@XDxNqO1 z=Y}&Z1Q{3FY;ZpEer`+pf<5t{H@|0=!Yw;lk$skeMt8qb-`&n5(WiGTo#ySy(O2(# z?vL_`o|`NSB7}PW25-L2uEbg|$M3&z|Lqrh!#_uBdi)hymGLN_wY11`gymJ}n z&ZM?4-n8<=FWx%sTpd39S#Jz49L_i)Tg#-tWhNTgAGOi@n9;)3vxO4-;x9g#!(*u$ z`gq9-VYSdRVFsJqdAXT0k1zDL%$fDXsWgy9(b44g=UYb2Yum(cP8V`BaA8sib$|0` zuh(t+HW8_twf7HflHM9AE$zJVx8H^)z?oX z>+Z0!^R|nYyOP_R!}W@di;06t=<()$US{T0<_QrGthWx{^D|1}MHVBaCMSBh(w6xVx6uG#Edxg5+=JRJLf zJ-Ngx@M-q_Hby1>q|)Ndywu|2>OXHPzHKB?YKu<4!qd3EQvd&Ne7^ zH3Uhuu?OzC@Z*=>E3Z}R=I1xRXO_Y(J6Vx^mV*7Ng56t}{o`1rv!UC*OMSBA=Z`mX z+g)W#QZ}!WZm%)he4AaFwf=vq?BY9L)VN|NtXxvMW4piFsB<+`d6rs?vW9@s&h%1keh)ElY;s|r5FE1S5{Ao zuYNeIUw&nNt9!1O>Z6#CYtjqUH}7j=QV@K*>%PC~s&)H!9{jzy>22rhXFVGBylYpj zcJ@6W|A$>6S?b2-E?!RNbU(q@QWL{FCJEJd1ljx)DctXUr_6qH#K&#Q22{hsEwsHg7a}m>Z>P(=>JRJpny7 zmbrPN7hG;NuyDO(<6`1q+T6#>%AC@3qe{(izzd(o)?h-IAN z`E$+^#+zONUPoZT0j;wPNPq!6XNkHcZ!3$ZgxWiy4>FDtlj XvQWY)O)L6QpZ)Vf#!qcr3|tHV^FS6e delta 652 zcmaE?@kFDZ%Z-CYNa6eAGu~=5;wvU{etBtB$f~<1uAC_^=aBUZhYhN?ewfKgDSTjh z*?fARTl@l>X(vSfJY@T`vZa;pd?+cibTa#e7dFm`1o+!o(*%!1^m5!}EH9IH!zOJb6 zOj{-e4?m0lPinrD^-Z#rKU^C-?eps|BF3BcNVF|Kvm@l%v{!}`j$`cC`B^T_-;#3Bxf_)Eo>XOD{xUR=3aL#e;y z?8MqnuKO}VxKEUEy<+2H;$RYbymUtW$$nr^f(%Uaxri*002ty6tMsR diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_5.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/businesschannel_5.block index 5934933c48bfc0b45efd28df22ceb9ee39e59157..a75aa841a66cd45c6c507c296ac2847e0ea9ea00 100644 GIT binary patch delta 656 zcmX@9a!jS3%Z-CoNMYJUvsY`yt_W-})0X>Xa$~9j1rAfO^hs44UNsx z%neP_3=$2^jFSyh(o&5Kj8jw0EG-k05{=S~QwJUcaaO6RVROFN-CA`*Ve@-tDcrJ?71{L^(thhq*WGimgYluZ)%zKFN4&1A z=d`(}`<2~+`A1W9%;e4a?8VIW(o=s|#hv{xX|EfR61OGD%y_%OyGLeQjS?kP_|qGo z@G&V^9n609mTT4vZNcZazaLq*CDGu8W^?bGn58;TCapis#Vq7z;KHPkvCCV%>AkJ` zEw@SEbxhZ3fKE zm9p_qcGlW-7wh}4`XMAHcgEzwdUmyv16mt1OV2SIJ!Mj0&Fk738pd|egzwJ%hU`~e z*|7?oH;m+YWzD`!(b$`7&GnLvi;05?YF)~OeI2~@+v;v!yt-x4|HOo@SK=7~+7bfO zAl5Ou*2}ONE;;J`*UxVA&xY{AFG69(3>Q`gJW_c6YppYKE$IaVIA%zHJ3i-C&)0J?G!VgLXD delta 659 zcmX@6a#E$9%Z-CoNMY{!|C#;*TOG9*Us9~vm&MNe*2LEH#%GO-*E$@pByzr#QrOfJ zK6Qmrp?aUxn~mQdE6rVZowc~r+=8v4LMQO;-S_oE3&ptRiE&*P<(kdTmCL~_#lx|E z;mk{{0(1U-?qgKqPbw|W%u6jUPR>Zo%S+ACaO zvP`rzGcz@|OfgM0G)YWNF|{;Lwlq&mGBq|yGBGi-G_^D`NlHphHcQ&LLylSEQ+t6~ zV9L_0_Vl^M_S4vyS-lK7ulHMoZhprsg7$0l7*d=&VN|8n*; zTP6k9V+rb4XCx(m3TzHP{`aBaWD`F2d(IZOL)+Arzn;5)wUC>E3zLHTuieFqlWjQI zcp_SAuSjQ{Tkx-uf0eKBocPL_jB^-8m=vOC9xtv>b%-=$mXw(NS)(xQV^sY^VTmTM zQ15~{KMeQhNZsP)dd4R7c=LTeX6CG#8x?K?MuC>_Mhj}(pO$KN}-khQ*X^OeK~DW znC$0NsC`qNTA$hq=W)L?;V!*)&9mls*HMM{pM;k1RdO({y1)H8lLD93$?sK((HmBo f3R#JoC~Gy8S6b67N+~e2 z?VG5(vsM4&;oVbfn|UTRd%ew1ZTI!|nL1Hp)r{TALW{+?7Km|O5#^fA&Xvo-EXBj| z;n$N(tO9pdUt7(n#Gh1JoSBzeT%4Sdn3tEDqvc>|ZefsOW@Tn-X_91WVQ6lWW@-ZD zB%7L97^Wr~7^az8m{_Km7?@ca8yKb}Ca0O3CmR}>85vq8nwupX7@2L{A;&E7PWYf( zUs(IqihXO(=->A^8np25y|2ave>T5kmclJNS%F6 zX79(OkeS0f>E`p4+Spr%$s*7RQy@(Q@-@16vLNwYrdz&u0FQ;@QzQ(w)#1*o&n-`vB^jYauZ@SY_GTG(Hho(>2*O(Mor&)j4zs9Fy&6361kH0N@ zoH*^trZ!{UE}^A;Vzud7B3v)oxR^MYgdS~vz{kv-5`2aIW!1+fs|2CTT1(xRotzex zn^eqtzZhbjr|Ft^zx-rHM(hWm;O2d77EAS(1UNfsvVk zQBsPfWvXSWxrsrdxpA_QiGjIkqKSc}g@vJcvSE^`VN#NXsgZH2QR2p(a?BD(HkR&K zFxPBCU(A;|DTWOz&t72+`1$^~=H~azQn+O&E3)e;^xB@aJIAc`n_}3>c8B5Y?-p+dnR6q z?Qh)m6SbG$zZ55Rb8`VVCv&~J-p!*TnJj`9?SD5PyYO&EhYMTH8W*9B5R1Gc+#iUp zy;xT;??hI|%Z3-(6K-$N=YqBE%FTx5PHqJxrh5LQ|c-I zU6U3*bk&&o;mXSE+=;b2E}eYfzFGT~kh_5^lOn@3#(QPIT0Ug2O7Azhn{V@SbHDem zY>`_A8?UZ?n{Mmxfe=Rk61-gsxm^nFTne`a3L6Lk8U_fd z`sA@*6$2PYhe1b)~^r$;s%12)wA5{Ha-R72lXyoTAsv7$Qp7X8NpAV~0* zetVpKjwSBmHt2(C;C9=5s<@d|9%G;OCU=3?-U{gk3IYfMvkfl=17yw4Of`b9d{3AM z<4_-N@O#Y9s*f|wQ8f}qFhl|%FpDv-=dhi*GfS!8_n7$CPkC?BB=;Y%^-v%NvopK! p0w6L4+F-N26M?$V?*kEAW`?--M#=fha`2R1v}+vcTK@_F3IJXuJ;MM1 delta 752 zcmVDPaPT{ z--hlOJ!)z;+w`Q%A!JMKaFu2w>F^$bN_+4!=Bbw_61-gsxm^nFTne`a3L6Lk8U_f1 zp_#E>6$2P<`t#LYkHDQrCKy_RYN@>U`fK;r?kw@Miv!dNla&o=lU@xr0V5k0Wy=<88efB zBtDbzBz=>`C2o^#C0CPICPeU4 zuVGRLr_gAMCN6t%C%M&qLO00zNi=nJZ zqq@q=@lwhfH>aJcO4=b^IYSagFhl|%IC@rLW_K6^^)G1?5@)g(c8TIpF{I$L*ncHh zIBw9-{sJI)9ZSU?a9e0A^6&{tZ*0WBPTYMG*3(D`!_q#aWSB`3M=(VKApqlQy4ALE zVqR?&SVrmfn=Q@1XObv3Ual#BCqAjcv8@6i8!m4;Yu!Zb+r+e?t=DI(QBebQUke#3 z)x6OP@FbCJL{Um+|Mk-J^nHdMMbpQw)JRtfdU{^uK4`hx|uN0ds#%o z-x4kK1=J|Tt=}#tLYb8R(B_#6>IMn|2m%u0vkxx=17)jj%?u)=P%2Vsez~qB0oarFVU2314^a6X6$!l8u8ymf=rQ+8v-CqxUrAw iRBgVIx?m)W?(bbiqd-tC^{y@n)U5;fvJ7Sl015zeU_|!- diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/new_businesschannel.tx.json b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/new_businesschannel.tx.json index 492d1886..e69de29b 100644 --- a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/new_businesschannel.tx.json +++ b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/new_businesschannel.tx.json @@ -1,113 +0,0 @@ -{ - "payload": { - "data": { - "config_update": { - "channel_id": "businesschannel", - "read_set": { - "groups": { - "Application": { - "groups": { - "Org1MSP": { - "mod_policy": "", - "version": "0" - }, - "Org2MSP": { - "mod_policy": "", - "version": "0" - } - }, - "mod_policy": "", - "version": "0" - } - }, - "mod_policy": "", - "values": { - "Consortium": { - "mod_policy": "", - "value": { - "name": "SampleConsortium" - }, - "version": "0" - } - }, - "version": "0" - }, - "type": 0, - "write_set": { - "groups": { - "Application": { - "groups": { - "Org1MSP": { - "mod_policy": "", - "version": "0" - }, - "Org2MSP": { - "mod_policy": "", - "version": "0" - } - }, - "mod_policy": "Admins", - "policies": { - "Admins": { - "mod_policy": "Admins", - "policy": { - "type": 3, - "value": { - "rule": "MAJORITY", - "sub_policy": "Admins" - } - }, - "version": "0" - }, - "Readers": { - "mod_policy": "Admins", - "policy": { - "type": 3, - "value": { - "rule": "ANY", - "sub_policy": "Readers" - } - }, - "version": "0" - }, - "Writers": { - "mod_policy": "Admins", - "policy": { - "type": 3, - "value": { - "rule": "ANY", - "sub_policy": "Writers" - } - }, - "version": "0" - } - }, - "version": "1" - } - }, - "mod_policy": "", - "values": { - "Consortium": { - "mod_policy": "", - "value": { - "name": "SampleConsortium" - }, - "version": "0" - } - }, - "version": "0" - } - } - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "timestamp": "2017-12-29T14:04:09.000Z", - "tx_id": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", - "type": 2, - "version": 0 - } - } - } -} diff --git a/hyperledger_fabric/v1.0.5/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/v1.0.5/solo/channel-artifacts/testchainid_1.block index 65b14c810079a512c4720c9adf3b40f5b6ef068b..a0381b4b357824de891efa695032fa20fef5dea2 100644 GIT binary patch delta 818 zcmV-21I_%Da+PwBC^q3wNhKp-XoH-$s~X3_ZNt$W`a^Ym_2uj|MkqKvVGt7WV+!tL z3Zi2Qvjz$m2m~4i2&MYuv0f1aD^x7`1B>o`^gFheTyb>2vFKj8|K)o(fD-9k3Z7gF zw+0Fu2mu-f2&MYuvzh}H10x3=HlM894f$gwGd-NVay`9N4NhCtH{ufERSKF#2mun6 zMYEk8aSD@mCm)jyCuozEC!n*^1{eyHiyI^XF_W+xGm{SyKC^%k3ks9)8!?kj5hata z8$gpG9DI|uGn`AZ_IoK z=4-4qBCo~t_B;6!M=(VKApndMgIAwrVZyx&ztxjSX7S&=iw_e@ykq#O5MV9-SxW*S zYED{Ephwnt1XFNpp|KfcQMIvnKi|=X)`*pD({wBX5=JmY0w6a!yioWMVKhrK$Sg~H zuP@$tO>|8~aDIOsgIo4(yo1UDAR7ed3{;8oz+S!k-zn7FilSzJmCjh>^EFNQI~uxP zl@dlUL;@fKTDKgz{nDQ`Tc2_>dqESk9gzq=C2|klA>q{z-LHuPAXV*@dZiWf^a7QY zW=w7oc)+d`2K5Ok|6z+uUTD+;4H8E%MFJrJpIft%IFLMKF{M~88ns#{=OOfpSX``M z*;YhW8(RD<0w6Lx9yDX;#5rK-bCS%;CxII*0Y=@H%C74RqNVy8a;&pHG6(}@=^E^_ zjCnykb0~!R(GGemA{s)RIjLM45=Ssa0wDmU2wThNWR{C_>8I@)s0OWe*ljn9`5F!M wYLVw>CIMvvASAH%V&V(eZ(7&)SqR>uZ;5~7aNixZMY&q2I4=9gS_%LP0NiL;asU7T delta 819 zcmV-31I+xDa+GqAC^oe5o~n~QD}fxGEcg&6@(zp4Y&+LNOj+|pG+ftKrWF$KV+!qK z3Zi2Qvjz$m2m~4i2>+m&v0f1aD+Uo!Fpe6`rS3Vv`RP}SHfiRE+~!kL7!v7R3Z7gF zw+0Fu2mu-f2>+m&vzh}H10yvV<6Lfa9SaJRRVQSV<{T!IttW`H(gtw~lVcHQ zlR^<7lgbgGldvdDlgBM2lUXQNlXopAlN}O86B5A?3iS^P$p#7=2m%@g2>+m&vwA5f z0~$;UxDj1qv~j9jA*RO0SgtQ=?m5<^Pq`ANv%4%Y0Ri;0?JX4pf06b;DL}-4c*f$e z!0Gy3$dQ!}+jV$&krGBQL;@fx(}r*#J7V5x>Pu88N#q%5#NEnC5ZcbeD?Kn2eoxi{ zAZUj1;Cmwfz=|+S0a5VJ(FCDu7COZ@TEf_#u<)1g6en4`(R1P68k$1tAqzFr?ZS z45CAKpbRjHR-lS8A!_Y1<)@y)x@^%BMleJIAPbnNrgJEwI}(e4-*SQk{m{7_u$UJA zMske4{Mk@N^5Fs?1(!{HCI5)kvh^a?^=kRj4<{-9m(8%A9>055{)ZG{vpg~j17YPa z60yKYqad|o5j`pUg6h7i2~2JPXeSa!Fhv3(0Ov}syUBm`RG#IXJtxNt;F*a?L_Zkn z8uXD2F%FU;IszabWAi((Ng-JXHnE0rb|Y!7&h#oXQU6qDo`PyU458e!KQagdWxGp( zz0CyFhHjCW34sh;umzTd1#B>VRH%q3IHHCUsC`8 diff --git a/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log b/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log index 9eec1fcc..d8b2eedf 100644 --- a/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log +++ b/hyperledger_fabric/v1.0.5/solo/logs/dev_all.log @@ -1,15938 +1,15172 @@ -Attaching to peer0.org2.example.com, peer1.org2.example.com, peer1.org1.example.com, orderer.example.com, peer0.org1.example.com, fabric-cli -peer1.org2.example.com | [001 12-19 06:47:33.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +Attaching to peer0.org1.example.com, peer1.org2.example.com, peer0.org2.example.com, orderer.example.com, peer1.org1.example.com, fabric-cli +peer0.org2.example.com | [001 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | Version: 1.0.5 +peer0.org2.example.com | Go version: go1.9.2 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Chaincode: +peer0.org2.example.com | Base Image Version: 0.3.2 +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | Docker Namespace: hyperledger +peer0.org2.example.com | +peer0.org2.example.com | [002 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer0.org2.example.com | [003 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org2.example.com | [004 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer0.org2.example.com | [005 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org2.example.com | [006 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer0.org2.example.com | [007 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org2.example.com | [008 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org2.example.com | [009 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org2.example.com | [00a 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer0.org2.example.com | [00b 01-12 22:56:37.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org2.example.com | [00c 01-12 22:56:37.27 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org2.example.com | [00d 01-12 22:56:37.27 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org2.example.com | [00e 01-12 22:56:37.27 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org2.example.com | [00f 01-12 22:56:37.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer0.org2.example.com | [010 01-12 22:56:37.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer0.org2.example.com | [011 01-12 22:56:37.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org2.example.com | [012 01-12 22:56:37.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer0.org2.example.com | [013 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org2.example.com | [014 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org2.example.com | [015 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org2.example.com | [016 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer0.org2.example.com | [017 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org2.example.com | [018 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer0.org2.example.com | [019 01-12 22:56:37.32 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer0.org2.example.com | [01a 01-12 22:56:37.32 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer0.org2.example.com | [01b 01-12 22:56:37.32 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org2.example.com | [01c 01-12 22:56:37.32 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org2.example.com | [01d 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org2.example.com | [01e 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 +peer0.org2.example.com | [01f 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org2.example.com | [020 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org2.example.com | [021 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org2.example.com | [022 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org2.example.com | [023 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org2.example.com | [024 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org2.example.com | [025 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org2.example.com | [026 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org2.example.com | [027 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org2.example.com | [028 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [029 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [02a 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [02b 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [02c 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer0.org2.example.com | [02d 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [02e 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [02f 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +peer0.org2.example.com | e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +peer0.org2.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +peer0.org2.example.com | YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +peer0.org2.example.com | oaGZTd1T2kfGy8/Arg== +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [030 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [031 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [032 01-12 22:56:37.46 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [033 01-12 22:56:37.46 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [034 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +peer0.org2.example.com | e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +peer0.org2.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +peer0.org2.example.com | YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +peer0.org2.example.com | oaGZTd1T2kfGy8/Arg== +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [035 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [56 221 18 48 178 207 28 179 114 147 218 222 223 128 122 201 5 176 112 190 39 207 237 4 152 52 36 182 187 118 110 230] peer0.org2.example.com:7051} incTime is 1515797797482339794 +peer0.org2.example.com | [036 01-12 22:56:37.48 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 [] [56 221 18 48 178 207 28 179 114 147 218 222 223 128 122 201 5 176 112 190 39 207 237 4 152 52 36 182 187 118 110 230] peer0.org2.example.com:7051} +peer0.org2.example.com | [037 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [038 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [039 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [03a 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +peer0.org2.example.com | e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +peer0.org2.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +peer0.org2.example.com | YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +peer0.org2.example.com | oaGZTd1T2kfGy8/Arg== +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [03b 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [03c 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [03d 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [03e 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [03f 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2038DD1230B2CF1CB3...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org2.example.com | [040 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: BFEC3EA66BAE4661C52A18DE298842C965B79E56C1E0C1E7025939836EEA7AF3 +peer0.org2.example.com | [041 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=ac2e3362-eec6-4846-964e-425312271e9b,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer0.org2.example.com | [042 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched +peer0.org2.example.com | [043 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [044 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [045 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [046 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [047 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [048 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [049 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer0.org2.example.com | [04d 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +peer0.org2.example.com | [04e 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer0.org2.example.com | [04f 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer0.org2.example.com | [04a 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started +peer0.org2.example.com | [04b 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org2.example.com | [04c 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | [050 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [051 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [052 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org2.example.com | [053 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: CB8CE9650C0301240102836C2D4231B9BDE746E8D709EF80A40D1EEE29DDA200 +peer0.org2.example.com | [054 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [055 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [056 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org2.example.com | [057 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 +peer0.org2.example.com | [058 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +peer0.org2.example.com | [059 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [05a 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [05b 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +peer0.org2.example.com | [05c 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [05d 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +peer0.org2.example.com | [05e 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [05f 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [060 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [061 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [062 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 +peer0.org2.example.com | [063 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [064 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [065 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [066 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [067 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [068 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed +peer0.org2.example.com | [069 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [06a 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [06b 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac2e3362]Move state message READY +peer0.org2.example.com | [06c 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac2e3362]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [06d 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ac2e3362]Entered state ready +peer0.org2.example.com | [06e 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ac2e3362-eec6-4846-964e-425312271e9b +peer0.org2.example.com | [06f 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac2e3362]sending state message READY +peer0.org2.example.com | [070 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac2e3362]Received message READY from shim +peer0.org2.example.com | [071 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ac2e3362]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [072 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [073 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [074 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [075 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org2.example.com | [076 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ac2e3362]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [077 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [078 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ac2e3362]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [079 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac2e3362]Move state message INIT +peer0.org2.example.com | [07a 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac2e3362]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [07b 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [07c 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac2e3362]sending state message INIT +peer0.org2.example.com | [07d 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac2e3362]Received message INIT from shim +peer0.org2.example.com | [07e 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ac2e3362]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [07f 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [080 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ac2e3362]Received INIT, initializing chaincode +peer0.org2.example.com | [081 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [082 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [083 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac2e3362]Init get response status: 200 +peer0.org2.example.com | [084 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac2e3362]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [085 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac2e3362]Move state message COMPLETED +peer0.org2.example.com | [086 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ac2e3362]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [087 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac2e3362]send state message COMPLETED +peer0.org2.example.com | [088 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac2e3362]Received message COMPLETED from shim +peer0.org2.example.com | [089 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac2e3362]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [08a 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac2e3362-eec6-4846-964e-425312271e9b]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [08b 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ac2e3362-eec6-4846-964e-425312271e9b +peer0.org2.example.com | [08c 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [08d 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [08e 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=0d80a020-079a-4503-96db-04482efbcf88,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer0.org2.example.com | [08f 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched +peer0.org2.example.com | [090 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [091 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [092 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [093 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [094 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [095 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer0.org2.example.com | [096 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer0.org2.example.com | [097 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer0.org2.example.com | [098 01-12 22:56:37.52 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer0.org2.example.com | [099 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +peer0.org2.example.com | [09a 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [09b 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [09c 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +peer0.org2.example.com | [09d 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [09e 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer0.org2.example.com | [09f 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0a0 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [0a1 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [0a2 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0a3 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 +peer0.org2.example.com | [0a4 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [0a5 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [0a7 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed +peer0.org2.example.com | [0a6 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [0a9 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0a8 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [0ab 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0aa 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [0ac 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d80a020]Move state message READY +peer0.org2.example.com | [0ad 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d80a020]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0ae 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0d80a020]Entered state ready +peer0.org2.example.com | [0af 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0d80a020-079a-4503-96db-04482efbcf88 +peer0.org2.example.com | [0b0 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d80a020]sending state message READY +peer0.org2.example.com | [0b1 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d80a020]Received message READY from shim +peer0.org2.example.com | [0b3 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d80a020]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0b2 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [0b4 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0b5 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [0b6 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [0b7 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0d80a020]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0b8 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0b9 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0d80a020]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0ba 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d80a020]Move state message INIT +peer0.org2.example.com | [0bb 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d80a020]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [0bc 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0bd 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d80a020]sending state message INIT +peer0.org2.example.com | [0be 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d80a020]Received message INIT from shim +peer0.org2.example.com | [0bf 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d80a020]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [0c0 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [0c1 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0d80a020]Received INIT, initializing chaincode +peer0.org2.example.com | [0c2 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0c3 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d80a020]Init get response status: 200 +peer0.org2.example.com | [0c4 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d80a020]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0c5 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d80a020]Move state message COMPLETED +peer0.org2.example.com | [0c6 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d80a020]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [0c7 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d80a020]send state message COMPLETED +peer0.org2.example.com | [0c8 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d80a020]Received message COMPLETED from shim +peer0.org2.example.com | [0c9 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d80a020]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [0ca 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d80a020-079a-4503-96db-04482efbcf88]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [0cb 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0d80a020-079a-4503-96db-04482efbcf88 +peer0.org2.example.com | [0cc 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [0cd 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [0ce 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=e1062661-6cea-405f-8055-8d4810b2ef53,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer0.org2.example.com | [0cf 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched +peer0.org2.example.com | [0d0 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [0d1 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [0d2 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [0d3 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [0d4 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [0d5 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +peer0.org2.example.com | [0d6 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +peer0.org2.example.com | [0d7 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +peer0.org2.example.com | [0d8 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer0.org2.example.com | [0d9 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +peer0.org2.example.com | [0da 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [0db 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +peer0.org2.example.com | [0dc 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0dd 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +peer0.org2.example.com | [0de 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [0df 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0e0 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [0e1 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [0e2 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0e3 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 +peer0.org2.example.com | [0e4 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [0e6 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [0e7 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0e8 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [0e5 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [0e9 01-12 22:56:37.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed +peer0.org2.example.com | [0ea 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [0eb 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0ec 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1062661]Move state message READY +peer0.org2.example.com | [0ed 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1062661]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0ee 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e1062661]Entered state ready +peer0.org2.example.com | [0ef 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e1062661-6cea-405f-8055-8d4810b2ef53 +peer0.org2.example.com | [0f0 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1062661]sending state message READY +peer0.org2.example.com | [0f1 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1062661]Received message READY from shim +peer0.org2.example.com | [0f3 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1062661]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0f2 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [0f4 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0f5 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [0f6 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer0.org2.example.com | [0f7 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e1062661]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0f8 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0f9 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e1062661]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0fa 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1062661]Move state message INIT +peer0.org2.example.com | [0fb 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1062661]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [0fc 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0fd 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1062661]sending state message INIT +peer0.org2.example.com | [0fe 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1062661]Received message INIT from shim +peer0.org2.example.com | [0ff 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1062661]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [100 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [101 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e1062661]Received INIT, initializing chaincode +peer0.org2.example.com | [102 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [103 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1062661]Init get response status: 200 +peer0.org2.example.com | [104 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1062661]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [105 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1062661]Move state message COMPLETED +peer0.org2.example.com | [106 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1062661]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [107 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1062661]send state message COMPLETED +peer0.org2.example.com | [108 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1062661]Received message COMPLETED from shim +peer0.org2.example.com | [109 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1062661]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [10a 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1062661-6cea-405f-8055-8d4810b2ef53]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [10b 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e1062661-6cea-405f-8055-8d4810b2ef53 +peer0.org2.example.com | [10c 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [10d 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [10e 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=5999669f-58f0-4cbb-a889-a38c0141cb54,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org2.example.com | [10f 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched +peer0.org2.example.com | [110 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [111 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [112 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [113 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [114 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [115 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer0.org2.example.com | [116 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org2.example.com | [117 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +peer0.org2.example.com | [119 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer0.org2.example.com | [11a 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [001 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer1.org2.example.com | [001 01-12 22:56:37.20 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | Version: 1.0.5 peer1.org2.example.com | Version: 1.0.5 +peer0.org1.example.com | Go version: go1.9.2 peer1.org2.example.com | Go version: go1.9.2 +peer0.org1.example.com | OS/Arch: linux/amd64 peer1.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | [11b 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | Chaincode: peer1.org2.example.com | Chaincode: +peer0.org1.example.com | Base Image Version: 0.3.2 peer1.org2.example.com | Base Image Version: 0.3.2 +peer0.org1.example.com | Base Docker Namespace: hyperledger peer1.org2.example.com | Base Docker Namespace: hyperledger +peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | [11c 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | Docker Namespace: hyperledger peer1.org2.example.com | Docker Namespace: hyperledger +peer0.org1.example.com | +peer0.org1.example.com | [002 01-12 22:56:37.51 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 | -peer1.org2.example.com | [002 12-19 06:47:33.11 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer1.org2.example.com | [003 12-19 06:47:33.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | [004 12-19 06:47:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [005 12-19 06:47:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org2.example.com | [006 12-19 06:47:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org2.example.com | [007 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [008 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [009 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [00a 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org2.example.com | [00b 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org2.example.com | [00c 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [00d 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | [00e 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org2.example.com | [00f 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer1.org2.example.com | [010 12-19 06:47:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer1.org2.example.com | [011 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer1.org2.example.com | [012 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org2.example.com | [013 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer1.org2.example.com | [014 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer1.org2.example.com | [015 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer1.org2.example.com | [016 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org2.example.com | [017 12-19 06:47:33.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [018 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer1.org2.example.com | [019 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer1.org2.example.com | [01a 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer1.org2.example.com | [01b 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer1.org2.example.com | [01c 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [01d 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org2.example.com | [01e 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 -peer1.org2.example.com | [01f 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org2.example.com | [020 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org2.example.com | [021 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org2.example.com | [022 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org2.example.com | [023 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [024 12-19 06:47:33.14 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [025 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org2.example.com | [026 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org2.example.com | [027 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org2.example.com | [028 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [029 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02a 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02b 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [02c 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer1.org2.example.com:7051] -peer1.org2.example.com | [02d 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02e 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [02f 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -peer1.org2.example.com | 7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -peer1.org2.example.com | mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -peer1.org2.example.com | ksMT3FDKZZ5CxqLmRA== +peer1.org2.example.com | [002 01-12 22:56:37.20 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer0.org1.example.com | [003 01-12 22:56:37.51 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 | [003 01-12 22:56:37.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | [004 01-12 22:56:37.51 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 | [004 01-12 22:56:37.20 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer1.org2.example.com | [005 01-12 22:56:37.20 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer1.org2.example.com | [006 01-12 22:56:37.21 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 | [005 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org1.example.com | [006 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer0.org1.example.com | [007 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org2.example.com | [007 01-12 22:56:37.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org2.example.com | [008 01-12 22:56:37.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org2.example.com | [009 01-12 22:56:37.21 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | [008 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org1.example.com | [009 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | [00a 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer1.org2.example.com | [00a 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer1.org2.example.com | [00b 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org2.example.com | [00c 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org1.example.com | [00b 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org1.example.com | [00c 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org1.example.com | [00d 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org2.example.com | [00d 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org2.example.com | [00e 01-12 22:56:37.22 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org2.example.com | [00f 01-12 22:56:37.24 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 | [00e 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org1.example.com | [00f 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer0.org1.example.com | [010 01-12 22:56:37.55 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 | [010 01-12 22:56:37.24 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer1.org2.example.com | [011 01-12 22:56:37.24 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer1.org2.example.com | [012 01-12 22:56:37.24 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 | [011 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org1.example.com | [012 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer0.org1.example.com | [013 01-12 22:56:37.56 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 | [013 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org1.example.com | [014 01-12 22:56:37.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 +peer1.org2.example.com | [014 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer1.org2.example.com | [015 01-12 22:56:37.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org1.example.com | [015 01-12 22:56:37.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 | [016 01-12 22:56:37.56 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 | [016 01-12 22:56:37.25 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 | [11d 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [017 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [017 01-12 22:56:37.26 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [018 01-12 22:56:37.27 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 | [018 01-12 22:56:37.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 | [019 01-12 22:56:37.58 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 | [019 01-12 22:56:37.27 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org2.example.com | [01a 01-12 22:56:37.27 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 | [01a 01-12 22:56:37.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 | [01b 01-12 22:56:37.58 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 | [01b 01-12 22:56:37.27 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org1.example.com | [01c 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org2.example.com | [01c 01-12 22:56:37.27 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [01d 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer1.org2.example.com | [01d 01-12 22:56:37.29 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer1.org2.example.com | [01e 01-12 22:56:37.29 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 +peer0.org1.example.com | [01e 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +peer0.org1.example.com | [01f 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer1.org2.example.com | [01f 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer1.org2.example.com | [020 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | [020 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | [021 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org2.example.com | [021 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org2.example.com | [022 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | [022 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org2.example.com | [11e 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +peer1.org2.example.com | [023 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [023 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [024 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org2.example.com | [024 01-12 22:56:37.30 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org2.example.com | [025 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org1.example.com | [025 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org1.example.com | [026 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer1.org2.example.com | [026 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org1.example.com | [027 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer1.org2.example.com | [027 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org1.example.com | [028 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org1.example.com | [029 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [028 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [11f 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [02a 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [029 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [02b 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [02a 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [02c 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +peer1.org2.example.com | [02b 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [02d 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [02c 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer1.org2.example.com:7051] +peer0.org1.example.com | [02e 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [02f 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +peer0.org1.example.com | L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +peer1.org2.example.com | [02d 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +peer0.org1.example.com | BbweiNbyJT9x2USI/2Y= +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [030 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [02e 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [001 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer1.org1.example.com | Version: 1.0.5 +peer0.org1.example.com | [031 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [032 01-12 22:56:37.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [02f 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | Go version: go1.9.2 +peer1.org1.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | [033 01-12 22:56:37.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [034 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | Chaincode: +peer1.org1.example.com | Base Image Version: 0.3.2 +peer0.org1.example.com | MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | Base Docker Namespace: hyperledger +peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 +peer1.org1.example.com | Docker Namespace: hyperledger +peer1.org1.example.com | +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | +gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +peer1.org1.example.com | [002 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer1.org1.example.com | [003 01-12 22:56:35.78 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +peer0.org1.example.com | L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +peer1.org2.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +peer1.org2.example.com | OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +peer1.org1.example.com | [004 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer1.org1.example.com | [005 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +peer1.org2.example.com | EWwNAKrnTe7asMQS5w== peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [030 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [031 12-19 06:47:33.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [032 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [033 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [034 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -peer1.org2.example.com | 7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -peer1.org2.example.com | mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -peer1.org2.example.com | ksMT3FDKZZ5CxqLmRA== -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [035 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [251 108 8 84 65 150 164 164 255 58 99 69 45 58 7 101 70 41 122 119 173 139 51 254 191 117 62 185 21 153 145 194] peer1.org2.example.com:7051} incTime is 1513666053162115400 -peer1.org2.example.com | [036 12-19 06:47:33.16 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 [] [251 108 8 84 65 150 164 164 255 58 99 69 45 58 7 101 70 41 122 119 173 139 51 254 191 117 62 185 21 153 145 194] peer1.org2.example.com:7051} -peer1.org2.example.com | [037 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [038 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [039 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -peer1.org2.example.com | 7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -peer1.org2.example.com | mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -peer1.org2.example.com | ksMT3FDKZZ5CxqLmRA== -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [03a 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [03b 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [03c 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [03d 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [03e 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20FB6C08544196A4A4...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [03f 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: F1B1ECB7B48A117AF0769C3DD1D0F413FAB1489012DD3A2E1BA660BA5A7092B6 -peer1.org2.example.com | [040 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=33eac877-e72e-49ed-b82e-8f7fec7d1ce0,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer1.org2.example.com | [041 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched -peer1.org2.example.com | [042 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [043 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [044 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) -peer1.org2.example.com | [045 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [046 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [047 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock -peer1.org2.example.com | [048 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock -peer1.org2.example.com | [049 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 -peer1.org2.example.com | [04a 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) -peer1.org2.example.com | [04b 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [04c 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org2.example.com | [04d 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [04e 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [04f 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [050 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [051 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 420746D084A0F1D0DB78126E7C1AB5F8CB34C248CC42053AD7BB765B0612F811 -peer1.org2.example.com | [052 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [053 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [054 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [055 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [056 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer1.org2.example.com | [057 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org2.example.com | [058 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 -peer1.org2.example.com | [059 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [05a 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [05b 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 -peer1.org2.example.com | [05c 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [05d 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 -peer1.org2.example.com | [05e 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [05f 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [060 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [061 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [062 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 -peer1.org2.example.com | [063 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED -peer1.org2.example.com | [064 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [065 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [066 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed -peer1.org2.example.com | [068 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [067 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [06a 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [069 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [06b 12-19 06:47:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [33eac877]Move state message READY -peer1.org2.example.com | [06c 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [33eac877]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [06d 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [33eac877]Entered state ready -peer1.org2.example.com | [06e 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:33eac877-e72e-49ed-b82e-8f7fec7d1ce0 -peer1.org2.example.com | [06f 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [33eac877]sending state message READY -peer1.org2.example.com | [070 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [33eac877]Received message READY from shim -peer1.org2.example.com | [071 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [073 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [072 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [33eac877]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [074 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [075 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer1.org2.example.com | [076 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [33eac877]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [001 12-19 06:47:32.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | [077 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | Version: 1.0.5 -peer1.org2.example.com | [078 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [33eac877]sendExecuteMsg trigger event INIT -peer0.org2.example.com | Go version: go1.9.2 -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | Chaincode: -peer0.org2.example.com | Base Image Version: 0.3.2 -peer1.org2.example.com | [079 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [33eac877]Move state message INIT -peer0.org2.example.com | Base Docker Namespace: hyperledger -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org2.example.com | Docker Namespace: hyperledger -peer0.org2.example.com | -peer0.org2.example.com | [002 12-19 06:47:32.86 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 | [07a 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [33eac877]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [003 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org2.example.com | [004 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer0.org2.example.com | [005 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer0.org2.example.com | [006 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer0.org2.example.com | [007 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org2.example.com | [008 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [07b 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [009 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org2.example.com | [00a 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org2.example.com | [07c 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [33eac877]sending state message INIT -peer0.org2.example.com | [00b 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org2.example.com | [00c 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org2.example.com | [00d 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | [07d 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [33eac877]Received message INIT from shim -peer0.org2.example.com | [00e 12-19 06:47:32.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org2.example.com | [00f 12-19 06:47:32.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org2.example.com | [010 12-19 06:47:32.87 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 | [07e 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [33eac877]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [011 12-19 06:47:32.87 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 | [07f 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [012 12-19 06:47:32.87 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer0.org2.example.com | [013 12-19 06:47:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer0.org2.example.com | [014 12-19 06:47:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer0.org2.example.com | [015 12-19 06:47:32.88 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 | [080 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [33eac877]Received INIT, initializing chaincode -peer0.org2.example.com | [016 12-19 06:47:32.88 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 | [081 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [017 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [082 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [018 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer0.org2.example.com | [019 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org2.example.com | [01a 12-19 06:47:32.89 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 | [083 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [33eac877]Init get response status: 200 -peer0.org2.example.com | [01b 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer0.org2.example.com | [01c 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [084 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [33eac877]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [01d 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org2.example.com | [085 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [33eac877]Move state message COMPLETED -peer0.org2.example.com | [01e 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 -peer1.org2.example.com | [086 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [33eac877]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [01f 12-19 06:47:32.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org2.example.com | [087 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [33eac877]send state message COMPLETED -peer1.org2.example.com | [088 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [33eac877]Received message COMPLETED from shim -peer0.org2.example.com | [020 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org2.example.com | [089 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [33eac877]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [021 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org2.example.com | [08a 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [33eac877-e72e-49ed-b82e-8f7fec7d1ce0]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [08b 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:33eac877-e72e-49ed-b82e-8f7fec7d1ce0 -peer1.org2.example.com | [08c 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [022 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org2.example.com | [08d 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [08e 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=468dba5f-1ae6-42c6-976b-cc9624a17fac,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer0.org2.example.com | [023 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [08f 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched -peer0.org2.example.com | [024 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [090 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [025 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org2.example.com | [091 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [092 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [026 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org2.example.com | [093 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org2.example.com | [027 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org2.example.com | [094 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | [028 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 -peer0.org2.example.com | [029 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02a 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02b 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [02c 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org2.example.com | [02d 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02e 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [02f 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -peer0.org2.example.com | sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org2.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -peer0.org2.example.com | DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -peer0.org2.example.com | J97qweo4GFdcd5JiO2s= -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [030 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [031 12-19 06:47:32.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | 2017-12-19 06:47:31.561 UTC [orderer/main] main -> INFO 001 Starting orderer: -peer1.org1.example.com | [001 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org2.example.com | [032 12-19 06:47:32.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [006 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer1.org1.example.com | [007 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org1.example.com | rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +peer0.org1.example.com | BbweiNbyJT9x2USI/2Y= +peer1.org2.example.com | [030 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [031 01-12 22:56:37.31 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | [008 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org1.example.com | [009 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [035 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [204 219 18 36 55 32 226 148 168 209 89 11 78 19 213 238 91 60 42 69 78 249 15 120 203 10 93 182 248 205 134 17] peer0.org1.example.com:7051} incTime is 1515797797662992722 +peer1.org2.example.com | [032 01-12 22:56:37.33 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [120 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [00a 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer0.org1.example.com | [036 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [204 219 18 36 55 32 226 148 168 209 89 11 78 19 213 238 91 60 42 69 78 249 15 120 203 10 93 182 248 205 134 17] peer0.org1.example.com:7051} +peer0.org1.example.com | [037 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [033 01-12 22:56:37.33 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [038 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [034 01-12 22:56:37.33 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +peer0.org2.example.com | [121 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [039 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 +peer1.org2.example.com | +gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +peer0.org1.example.com | MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +peer0.org2.example.com | [122 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [123 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 +peer1.org2.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +peer0.org2.example.com | [124 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +orderer.example.com | 2018-01-12 22:56:34.550 UTC [orderer/main] main -> INFO 001 Starting orderer: +peer1.org2.example.com | EWwNAKrnTe7asMQS5w== orderer.example.com | Version: 1.0.5 -peer1.org1.example.com | Version: 1.0.5 -peer1.org1.example.com | Go version: go1.9.2 -peer1.org1.example.com | OS/Arch: linux/amd64 +peer1.org2.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Go version: go1.7.5 -peer0.org2.example.com | [033 12-19 06:47:32.91 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | 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 | Chaincode: -peer0.org1.example.com | [001 12-19 06:47:31.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | [125 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup orderer.example.com | OS/Arch: linux/amd64 -orderer.example.com | [002 12-19 06:47:31.57 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled -peer1.org2.example.com | [095 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock -peer1.org2.example.com | [096 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock -peer1.org1.example.com | Base Image Version: 0.3.2 -peer1.org1.example.com | Base Docker Namespace: hyperledger -orderer.example.com | [003 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -orderer.example.com | [004 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] -peer0.org1.example.com | Version: 1.0.5 -peer1.org2.example.com | [097 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 -peer0.org2.example.com | [034 12-19 06:47:32.91 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric -orderer.example.com | [005 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -peer0.org1.example.com | Go version: go1.9.2 -peer1.org2.example.com | [098 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) -peer1.org1.example.com | Docker Namespace: hyperledger -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -orderer.example.com | [006 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -peer0.org1.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | [099 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 -peer1.org1.example.com | -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | [007 12-19 06:47:31.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -peer1.org2.example.com | [09a 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 -peer1.org1.example.com | [002 12-19 06:47:34.09 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | Chaincode: -orderer.example.com | [008 12-19 06:47:31.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -peer1.org2.example.com | [09b 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [003 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | Base Image Version: 0.3.2 -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | [009 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -peer1.org2.example.com | [09c 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [004 12-19 06:47:34.09 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 | Base Docker Namespace: hyperledger -orderer.example.com | [00a 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [09d 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 -peer1.org1.example.com | [005 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -orderer.example.com | [00b 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org2.example.com | [09f 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [006 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -orderer.example.com | [00c 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -peer1.org2.example.com | [09e 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [007 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org1.example.com | Docker Namespace: hyperledger -orderer.example.com | [00d 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -peer1.org2.example.com | [0a0 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [008 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org1.example.com | -orderer.example.com | [00e 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -peer1.org2.example.com | [0a1 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [009 12-19 06:47:34.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -orderer.example.com | [00f 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -orderer.example.com | [010 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -peer1.org2.example.com | [0a2 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -peer1.org1.example.com | [00a 12-19 06:47:34.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -orderer.example.com | [011 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -peer1.org2.example.com | [0a3 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 -peer1.org1.example.com | [00b 12-19 06:47:34.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -orderer.example.com | [012 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | [0a4 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED -peer1.org1.example.com | [00c 12-19 06:47:34.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -orderer.example.com | [013 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -peer1.org2.example.com | [0a5 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [00d 12-19 06:47:34.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -orderer.example.com | [014 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [0a6 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -peer1.org1.example.com | [00e 12-19 06:47:34.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -orderer.example.com | [015 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP -peer1.org2.example.com | [0a8 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [00f 12-19 06:47:34.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -orderer.example.com | [016 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org1.example.com | [010 12-19 06:47:34.10 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 | DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -peer1.org2.example.com | [0a7 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed -orderer.example.com | [017 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [011 12-19 06:47:34.10 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 | [0aa 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [012 12-19 06:47:34.10 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 | J97qweo4GFdcd5JiO2s= -peer1.org2.example.com | [0ab 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [035 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [42 216 220 58 95 132 214 66 194 72 216 12 66 122 121 61 93 235 211 179 118 3 123 236 220 201 102 159 93 51 247 115] peer1.org2.example.com:7051} incTime is 1515797797340178110 +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | [002 01-12 22:56:34.56 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled +peer1.org2.example.com | [037 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +orderer.example.com | [003 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +peer1.org2.example.com | [036 01-12 22:56:37.34 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 [] [42 216 220 58 95 132 214 66 194 72 216 12 66 122 121 61 93 235 211 179 118 3 123 236 220 201 102 159 93 51 247 115] peer1.org2.example.com:7051} +peer0.org2.example.com | [126 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [004 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] +peer0.org1.example.com | L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +peer1.org2.example.com | [038 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [005 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | [006 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +peer1.org2.example.com | [039 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [127 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +orderer.example.com | [007 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +peer1.org2.example.com | [03a 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [008 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +orderer.example.com | [009 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +peer0.org2.example.com | [128 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +orderer.example.com | [00a 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +peer0.org1.example.com | BbweiNbyJT9x2USI/2Y= +orderer.example.com | [00b 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +peer0.org2.example.com | [118 01-12 22:56:37.59 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | [00c 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [03a 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [03b 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | [00d 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +peer0.org1.example.com | [03c 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [00e 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +peer0.org2.example.com | [129 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed +orderer.example.com | [00f 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [03d 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [010 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +peer0.org1.example.com | [03e 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20CCDB12243720E294...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | [011 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +orderer.example.com | [012 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +orderer.example.com | [013 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 +peer1.org2.example.com | +gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +peer0.org1.example.com | [03f 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 27897CF7E2E0384951A61E7426BF751C55E7D7847979D984CDF261366BE0D3FB +orderer.example.com | [014 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [00b 01-12 22:56:35.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +orderer.example.com | [015 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP +peer0.org1.example.com | [040 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=f8c72579-283b-4394-be73-55cd6cc16f37,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer0.org2.example.com | [12a 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [00c 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +orderer.example.com | [016 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +peer0.org1.example.com | [041 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched +peer1.org1.example.com | [00d 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +orderer.example.com | [017 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +peer0.org1.example.com | [042 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [12b 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [00e 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | EWwNAKrnTe7asMQS5w== +peer0.org1.example.com | [043 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [00f 01-12 22:56:35.79 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 | [12c 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5999669f]Move state message READY +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [010 01-12 22:56:35.79 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 | [044 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | [12d 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5999669f]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [011 01-12 22:56:35.79 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 | [045 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | [12e 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5999669f]Entered state ready +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [03b 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [012 01-12 22:56:35.79 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 | [046 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer1.org1.example.com | [013 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [03c 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | [014 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [12f 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5999669f-58f0-4cbb-a889-a38c0141cb54 +peer1.org2.example.com | [03d 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [015 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [131 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [016 01-12 22:56:35.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer1.org2.example.com | [03e 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [017 01-12 22:56:35.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer1.org2.example.com | [03f 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A202AD8DC3A5F84D642...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [018 01-12 22:56:35.80 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 | [132 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [133 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [047 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [019 01-12 22:56:35.80 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org2.example.com | [040 01-12 22:56:37.34 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 1CD9740298A21D673D87556470ACDD6E67CDC6FBE5E27026FD068B17819F6B7D +peer1.org2.example.com | [041 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org1.example.com | [048 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +orderer.example.com | [018 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [134 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org1.example.com | [01a 01-12 22:56:35.80 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 | [042 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [135 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5999669f]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [049 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer1.org1.example.com | [01b 01-12 22:56:35.80 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [013 12-19 06:47:34.11 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 | [0a9 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [014 12-19 06:47:34.11 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 | -----END CERTIFICATE----- +peer1.org2.example.com | [043 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org2.example.com | [044 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [04a 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer0.org2.example.com | [136 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [01c 01-12 22:56:35.80 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [0ac 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [468dba5f]Move state message READY -peer1.org1.example.com | [015 12-19 06:47:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer1.org2.example.com | [0ad 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [468dba5f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [016 12-19 06:47:34.11 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org1.example.com | [04b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +peer1.org2.example.com | [045 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [01d 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [0ae 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [468dba5f]Entered state ready -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org2.example.com | [035 12-19 06:47:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [52 223 247 133 48 124 116 152 18 187 116 79 181 14 125 189 17 177 143 213 186 88 75 80 142 70 173 175 135 240 178 175] peer0.org2.example.com:7051} incTime is 1513666052914274200 -peer0.org2.example.com | [038 12-19 06:47:32.91 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 [] [52 223 247 133 48 124 116 152 18 187 116 79 181 14 125 189 17 177 143 213 186 88 75 80 142 70 173 175 135 240 178 175] peer0.org2.example.com:7051} -peer0.org2.example.com | [036 12-19 06:47:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [037 12-19 06:47:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [039 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [03a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [017 12-19 06:47:34.12 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [0af 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:468dba5f-1ae6-42c6-976b-cc9624a17fac -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer1.org1.example.com | [018 12-19 06:47:34.12 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 | [002 12-19 06:47:31.87 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 | [03b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer1.org1.example.com | [019 12-19 06:47:34.12 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 | [003 12-19 06:47:31.88 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 | [0b0 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [468dba5f]sending state message READY -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer1.org1.example.com | [01a 12-19 06:47:34.12 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 | [0b1 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [468dba5f]Received message READY from shim -peer0.org1.example.com | [004 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [0b2 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [468dba5f]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer1.org1.example.com | [01b 12-19 06:47:34.12 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 | [005 12-19 06:47:31.88 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 | [0b3 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [137 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5999669f]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [046 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [04c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer1.org1.example.com | [01e 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [047 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 939AF874FDBA5A7E5BEACC4BA028611072CF8EC96719BB1EC39E1B1521937EEC +peer1.org1.example.com | [01f 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [04d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer0.org1.example.com | [04e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [020 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer1.org2.example.com | [048 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org1.example.com | [021 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org1.example.com | [04f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [049 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer1.org1.example.com | [022 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | [050 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [04a 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org2.example.com | [130 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5999669f]sending state message READY orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [01c 12-19 06:47:34.12 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [006 12-19 06:47:31.88 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 | [0b4 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [018 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [01d 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org1.example.com | [007 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [0b5 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org1.example.com | [01e 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 -peer0.org1.example.com | [008 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [0b6 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [01f 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer0.org1.example.com | [009 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [0b7 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [468dba5f]Inside sendExecuteMessage. Message INIT -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [020 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org1.example.com | [00a 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [0b8 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [021 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org1.example.com | [00b 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org1.example.com | [022 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -peer0.org2.example.com | sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -peer0.org1.example.com | [00c 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [0b9 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [468dba5f]sendExecuteMsg trigger event INIT -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [023 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | [00d 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer1.org1.example.com | [024 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [0ba 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [468dba5f]Move state message INIT -peer0.org1.example.com | [00e 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org1.example.com | [025 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer0.org2.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -peer0.org1.example.com | [00f 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer1.org1.example.com | [026 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org2.example.com | [0bb 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [468dba5f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [010 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer1.org1.example.com | [027 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer0.org2.example.com | DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -peer0.org1.example.com | [011 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer1.org1.example.com | [028 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [012 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org1.example.com | [013 12-19 06:47:31.90 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 | J97qweo4GFdcd5JiO2s= -peer1.org1.example.com | [029 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0bc 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [023 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org1.example.com | [024 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org2.example.com | [04b 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 +peer0.org1.example.com | [051 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | [019 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [025 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer1.org1.example.com | [026 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer1.org2.example.com | [04c 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=f465d837-882f-44bd-8cb2-19c416bda149,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer0.org1.example.com | [052 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: D3BE232AA51B4F1B6325B320B10A35B9DE4DF548B1691C7DB403D8C912D4F185 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [139 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5999669f]Received message READY from shim +peer1.org1.example.com | [027 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org1.example.com | [053 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [04d 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [028 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [13a 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5999669f]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer1.org2.example.com | [04e 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [054 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [029 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [138 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5999669f]Move state message INIT +peer1.org1.example.com | [02a 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [055 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +peer1.org2.example.com | [04f 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [02b 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [13b 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5999669f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [056 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +peer1.org1.example.com | [02c 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] +peer1.org2.example.com | [050 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) +peer0.org2.example.com | [13c 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [057 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +peer1.org1.example.com | [02d 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [051 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer0.org1.example.com | [058 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [02e 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [052 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [059 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [02f 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [13d 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5999669f]sending state message INIT orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [014 12-19 06:47:31.90 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 | [02a 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [019 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [015 12-19 06:47:31.90 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 | [02b 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0bd 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [468dba5f]sending state message INIT -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [016 12-19 06:47:31.90 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 | [02c 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [017 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org2.example.com | [03c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [02d 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0be 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [468dba5f]Received message INIT from shim -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [018 12-19 06:47:31.91 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 | [02e 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [0bf 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [468dba5f]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [019 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org1.example.com | [01a 12-19 06:47:31.91 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 | [02f 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0c0 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org2.example.com | [03d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [0c1 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [468dba5f]Received INIT, initializing chaincode -peer0.org1.example.com | [01b 12-19 06:47:31.91 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 | MIICGDCCAb+gAwIBAgIQQ4KyKm3x9uZJSQMr3yhp9zAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org2.example.com | [03e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [01c 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [0c2 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org2.example.com | [03f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [0c3 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [468dba5f]Init get response status: 200 -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [01d 12-19 06:47:31.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org2.example.com | [040 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2034DFF785307C7498...0A2D2D2D2D2D454E44202D2D2D2D2D0A -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== +peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAJgo7hYJUR5ZRKCYug66p/cwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [13e 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5999669f]Received message INIT from shim +peer0.org1.example.com | [05a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +orderer.example.com | [01a 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [05b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [13f 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5999669f]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [05c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [140 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [05d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [05e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +peer0.org2.example.com | [141 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5999669f]Received INIT, initializing chaincode +peer1.org2.example.com | [053 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [142 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5999669f]Init get response status: 200 +peer0.org1.example.com | [05f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [060 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHK4psx9L6RCaj5ykJq8eC9njCDJ5xl3 +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org2.example.com | [054 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +peer1.org1.example.com | zXYaqc8bXURjQJp2zRlAlMwYgmMWx42fgjUGOpCLN/u18hfPHMYx3AyjTTBLMA4G +peer0.org1.example.com | [061 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 +peer0.org2.example.com | [143 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5999669f]Init succeeded. Sending COMPLETED +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +peer1.org2.example.com | [055 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [062 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [144 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5999669f]Move state message COMPLETED +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org2.example.com | [056 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer1.org1.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQDOrqYt +peer0.org2.example.com | [145 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5999669f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +peer0.org1.example.com | [063 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [057 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +peer1.org1.example.com | HTCuweB2hFypCQwr9MBrk/GoHzWF7q/OEpsw/AIgBK9gTIXTdwufyhckPK3ZhKWZ +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +peer0.org2.example.com | [146 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5999669f]send state message COMPLETED +peer0.org1.example.com | [064 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | Oj+PzxhLc/TPfj6gIeU= +peer1.org2.example.com | [058 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +peer0.org2.example.com | [147 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5999669f]Received message COMPLETED from shim +peer0.org1.example.com | [065 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | -----END CERTIFICATE----- orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [01a 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0c4 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [468dba5f]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0c5 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [468dba5f]Move state message COMPLETED -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [01e 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [041 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 16D80D7098634C37F48FA10D016C4D58637E1EA7FEFFDC8C40471EBA6B5A0802 -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEGcHvnV2v0vNgR0CCrBpCED0kM1GKpWsD -peer1.org1.example.com | HvfdPsueor1uFF/UlNSyp/keNm2qCfV8bMmS4yUrpisGF2BTYAC1N6NNMEswDgYD -peer1.org2.example.com | [0c6 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [468dba5f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [042 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [01f 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDRwAwRAIgCsphbzNr -peer1.org2.example.com | [0c7 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [468dba5f]send state message COMPLETED -peer0.org2.example.com | [043 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [020 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org1.example.com | 2K0w36PLYDVTrQGFRVILj2ozTdIGIStps9gCICwtH+aadA7u2+ulZms1Hcoen/u4 -peer1.org1.example.com | 7b7F4imfYN+ijjy+ -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [0c8 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [468dba5f]Received message COMPLETED from shim -peer0.org2.example.com | [044 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [021 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org2.example.com | [0c9 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [468dba5f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -peer0.org1.example.com | [022 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org2.example.com | [045 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [030 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -peer1.org1.example.com | [031 12-19 06:47:34.13 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [046 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [0ca 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [468dba5f-1ae6-42c6-976b-cc9624a17fac]HandleMessage- COMPLETED. Notify -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -peer0.org1.example.com | [023 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [032 12-19 06:47:34.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [047 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: BA21B577EEAE2F652D21664B575BB17769FD628C988A54A784FBB6E8DAAE7371 -peer1.org2.example.com | [0cb 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:468dba5f-1ae6-42c6-976b-cc9624a17fac -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -peer0.org1.example.com | [024 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [033 12-19 06:47:34.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -peer1.org2.example.com | [0cc 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [048 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [025 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org1.example.com | [034 12-19 06:47:34.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0cd 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [059 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [148 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5999669f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [030 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [01b 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [036250716e8535be98703987ebd1c933cbd0f8376d9481fe556e4720a19d7842] at [/var/hyperledger/orderer/msp/keystore/036250716e8535be98703987ebd1c933cbd0f8376d9481fe556e4720a19d7842_sk]... +peer1.org2.example.com | [05a 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +peer0.org1.example.com | [066 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [149 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5999669f-58f0-4cbb-a889-a38c0141cb54]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [031 01-12 22:56:35.81 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [01c 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [05b 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [067 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed +peer1.org1.example.com | [032 01-12 22:56:35.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [14a 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5999669f-58f0-4cbb-a889-a38c0141cb54 +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [05c 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +peer1.org1.example.com | [033 01-12 22:56:35.82 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [14b 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [068 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [034 01-12 22:56:35.82 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [05d 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [14c 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [069 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAJgo7hYJUR5ZRKCYug66p/cwCgYIKoZIzj0EAwIwczEL +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +peer1.org2.example.com | [05e 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [14d 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=eecb7c8c-ace4-43bf-9e4f-f116177d57e2,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [06a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]Move state message READY +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [05f 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [14e 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org1.example.com | [06b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [06c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f8c72579]Entered state ready +peer1.org2.example.com | [060 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +peer0.org1.example.com | [06d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f8c72579-283b-4394-be73-55cd6cc16f37 +peer0.org2.example.com | [14f 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org2.example.com | [061 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 +peer0.org1.example.com | [06e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]sending state message READY +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHK4psx9L6RCaj5ykJq8eC9njCDJ5xl3 +peer0.org1.example.com | [06f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Received message READY from shim +peer1.org2.example.com | [062 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +peer0.org2.example.com | [150 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | zXYaqc8bXURjQJp2zRlAlMwYgmMWx42fgjUGOpCLN/u18hfPHMYx3AyjTTBLMA4G +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +peer0.org2.example.com | [151 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | [063 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [070 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8c72579]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [049 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | MIICGDCCAb+gAwIBAgIQQ4KyKm3x9uZJSQMr3yhp9zAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [026 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -orderer.example.com | [01b 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [2f81bd26ad519eb4713e9004a323d3fe493d959894db628a5ec1e44c5af7b16f] at [/var/hyperledger/orderer/msp/keystore/2f81bd26ad519eb4713e9004a323d3fe493d959894db628a5ec1e44c5af7b16f_sk]... -peer0.org2.example.com | [04a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [0ce 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=73bb699a-d1cc-41d0-a0c8-10a14ac3903e,syscc=true,proposal=0x0,canname=escc:1.0.5 -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [027 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer0.org2.example.com | [04b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -peer1.org2.example.com | [0cf 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [028 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -orderer.example.com | [01c 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [04c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=6b4cf38c-caae-42b0-8784-5eb9510a60ab,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer1.org2.example.com | [0d0 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer0.org1.example.com | [029 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [04e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched -peer1.org2.example.com | [0d1 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [02a 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [0d2 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [02b 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [04d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEGcHvnV2v0vNgR0CCrBpCED0kM1GKpWsD -peer1.org2.example.com | [0d3 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [02c 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -peer0.org2.example.com | [04f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | HvfdPsueor1uFF/UlNSyp/keNm2qCfV8bMmS4yUrpisGF2BTYAC1N6NNMEswDgYD -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -peer0.org2.example.com | [050 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer1.org2.example.com | [0d4 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [02d 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDRwAwRAIgCsphbzNr -peer0.org2.example.com | [051 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) -peer0.org1.example.com | [02e 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [064 01-12 22:56:37.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQDOrqYt +peer0.org2.example.com | [152 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org1.example.com | [071 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | [01d 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | HTCuweB2hFypCQwr9MBrk/GoHzWF7q/OEpsw/AIgBK9gTIXTdwufyhckPK3ZhKWZ +peer1.org2.example.com | [065 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [153 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | [01e 01-12 22:56:34.63 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +peer1.org1.example.com | Oj+PzxhLc/TPfj6gIeU= +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +orderer.example.com | [01f 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +peer0.org1.example.com | [072 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [066 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [020 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [035 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [0 137 0 169 180 175 91 26 18 165 8 56 13 177 64 163 170 178 237 118 238 81 42 13 144 203 154 122 116 180 211 73] peer1.org1.example.com:7051} incTime is 1515797795829736009 +peer1.org2.example.com | [067 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed +orderer.example.com | [021 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [073 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [022 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +peer1.org1.example.com | [036 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org1.example.com:7051 [] [0 137 0 169 180 175 91 26 18 165 8 56 13 177 64 163 170 178 237 118 238 81 42 13 144 203 154 122 116 180 211 73] peer1.org1.example.com:7051} +peer1.org2.example.com | [068 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [023 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +peer1.org1.example.com | [037 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [024 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +peer1.org2.example.com | [069 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [074 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org1.example.com | [038 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [039 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [075 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8c72579]Inside sendExecuteMessage. Message INIT +orderer.example.com | [025 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +peer0.org2.example.com | [154 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +peer1.org2.example.com | [06a 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465d837]Move state message READY +peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAJgo7hYJUR5ZRKCYug66p/cwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [026 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer0.org1.example.com | [076 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [155 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [06b 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465d837]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [077 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8c72579]sendExecuteMsg trigger event INIT +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | [027 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | [028 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org2.example.com | [06c 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f465d837]Entered state ready +peer0.org1.example.com | [078 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]Move state message INIT +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org2.example.com | [156 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer1.org2.example.com | [06d 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f465d837-882f-44bd-8cb2-19c416bda149 +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [079 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [029 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [06e 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465d837]sending state message READY +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHK4psx9L6RCaj5ykJq8eC9njCDJ5xl3 +orderer.example.com | [02a 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org2.example.com | [157 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +peer0.org1.example.com | [07a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [06f 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465d837]Received message READY from shim +peer1.org1.example.com | zXYaqc8bXURjQJp2zRlAlMwYgmMWx42fgjUGOpCLN/u18hfPHMYx3AyjTTBLMA4G +orderer.example.com | [02b 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org1.example.com | [07b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]sending state message INIT +peer1.org2.example.com | [070 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f465d837]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org2.example.com | [158 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +peer0.org1.example.com | [07c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Received message INIT from shim +orderer.example.com | [02c 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4203b0940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org2.example.com | [071 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQDOrqYt +peer0.org1.example.com | [07d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8c72579]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | HTCuweB2hFypCQwr9MBrk/GoHzWF7q/OEpsw/AIgBK9gTIXTdwufyhckPK3ZhKWZ +peer1.org2.example.com | [072 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [07e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | Oj+PzxhLc/TPfj6gIeU= +peer1.org2.example.com | [073 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [15a 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [07f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f8c72579]Received INIT, initializing chaincode +peer1.org1.example.com | -----END CERTIFICATE----- +orderer.example.com | [02d 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +peer1.org2.example.com | [074 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org1.example.com | [03a 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [075 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f465d837]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [03b 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [080 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | [02e 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa6, 0x6c, 0xb, 0xac, 0x3b, 0x71, 0x82, 0x58, 0x6c, 0xc3, 0x9d, 0x9e, 0xf8, 0xf3, 0x8d, 0x23, 0x70, 0xc9, 0xfe, 0xa9, 0xe5, 0xd1, 0xe9, 0x29, 0xa0, 0x6, 0xa5, 0xc2, 0xe, 0x1b, 0x98, 0x65} txOffsets= +peer1.org1.example.com | [03c 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [076 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [159 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +peer1.org1.example.com | [03d 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [077 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f465d837]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [03e 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20008900A9B4AF5B1A...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | txId=aa312d688e22c89ecfb3bfef88e38e969a9315bfef005fe6e45a800cf6bee23c locPointer=offset=38, bytesLength=9031 +peer0.org1.example.com | [081 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [078 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465d837]Move state message INIT +peer1.org1.example.com | [03f 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: AD731F1D682BBB29E52680354902E37C94FF1229FFBC2B784DECEB6D3983667E +orderer.example.com | ] +peer0.org1.example.com | [082 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Init get response status: 200 +peer1.org2.example.com | [079 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465d837]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [15b 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [040 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=f711c118-dc03-42af-b3ac-841809ee2e8f,syscc=true,proposal=0x0,canname=cscc:1.0.5 +orderer.example.com | [02f 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9074], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org2.example.com | [07a 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [083 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [041 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched +peer1.org2.example.com | [07b 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465d837]sending state message INIT +orderer.example.com | [030 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +peer0.org1.example.com | [084 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Move state message COMPLETED +peer1.org1.example.com | [042 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [07c 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465d837]Received message INIT from shim +peer1.org1.example.com | [043 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [085 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8c72579]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [07d 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f465d837]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [15c 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +peer1.org1.example.com | [044 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) +orderer.example.com | [031 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [086 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]send state message COMPLETED +peer1.org2.example.com | [07e 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [045 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | [032 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +peer0.org1.example.com | [087 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]Received message COMPLETED from shim +peer1.org2.example.com | [07f 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f465d837]Received INIT, initializing chaincode +peer1.org1.example.com | [046 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | [033 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 +peer0.org2.example.com | [15d 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [088 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [080 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | [034 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [089 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579-283b-4394-be73-55cd6cc16f37]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [081 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [035 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [08a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f8c72579-283b-4394-be73-55cd6cc16f37 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [15e 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [08b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [082 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465d837]Init get response status: 200 +peer1.org1.example.com | [047 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +orderer.example.com | [036 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +peer1.org2.example.com | [083 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465d837]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [08c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [048 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +orderer.example.com | [037 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org2.example.com | [15f 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [049 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +peer1.org2.example.com | [084 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465d837]Move state message COMPLETED +orderer.example.com | [038 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [08d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=09e89d5e-81cf-4fa5-8c76-a64bb511b92a,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org1.example.com | [04a 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +peer1.org1.example.com | [04b 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [085 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f465d837]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [08e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched +peer0.org2.example.com | [160 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [039 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [04c 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started +peer1.org2.example.com | [086 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465d837]send state message COMPLETED +peer0.org1.example.com | [08f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | [03a 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [090 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [04d 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org2.example.com | [087 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465d837]Received message COMPLETED from shim +orderer.example.com | [03b 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [091 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +peer1.org2.example.com | [088 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465d837]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [03c 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [04e 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [092 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | [161 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [03d 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [089 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465d837-882f-44bd-8cb2-19c416bda149]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [04f 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [093 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [08a 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f465d837-882f-44bd-8cb2-19c416bda149 +orderer.example.com | [03e 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [162 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +peer1.org2.example.com | [08b 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [050 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | [03f 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [08c 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [08d 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=32294963-aaff-4577-babd-025a792b5b9b,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org1.example.com | [051 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 62A744750A084C9CF3A277F3FE16F4548F5ED5F2261635AA392E467805627BD4 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [163 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer1.org2.example.com | [08e 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched +orderer.example.com | [040 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [053 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} +peer0.org2.example.com | [164 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [041 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [08f 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [054 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +orderer.example.com | [042 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [165 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [090 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [055 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [094 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer1.org2.example.com | [091 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | [043 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [095 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer0.org2.example.com | [167 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed +peer1.org1.example.com | [056 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [092 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org1.example.com | [096 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer1.org1.example.com | [057 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +peer1.org2.example.com | [093 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [168 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | [044 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +peer0.org1.example.com | [097 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer1.org1.example.com | [058 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [098 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +peer0.org2.example.com | [169 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [045 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [099 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [09a 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [046 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [052 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [09b 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +peer0.org1.example.com | [09c 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [16a 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eecb7c8c]Move state message READY +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | [047 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [059 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +peer0.org1.example.com | [09d 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer1.org2.example.com | [094 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +orderer.example.com | [048 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [05a 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [09e 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [095 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer0.org1.example.com | [09f 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [096 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer1.org1.example.com | [05b 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [049 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [16b 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eecb7c8c]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0a0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [097 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer1.org1.example.com | [05c 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +orderer.example.com | [04a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [0a1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [098 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +orderer.example.com | [04b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [0a2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 +peer1.org1.example.com | [05d 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [099 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [0a3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +peer1.org2.example.com | [09a 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [05e 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +peer0.org1.example.com | [0a4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [04c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums +peer1.org2.example.com | [09b 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +peer0.org1.example.com | [0a5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [09c 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | [04d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +peer0.org2.example.com | [16c 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [eecb7c8c]Entered state ready +peer1.org1.example.com | [05f 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0a6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [09d 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer1.org1.example.com | [060 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0a7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [04e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +peer1.org2.example.com | [09f 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [0a8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed +peer1.org2.example.com | [09e 01-12 22:56:37.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0a9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [061 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [0a0 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0aa 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0a1 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [062 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [0ab 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]Move state message READY +peer1.org2.example.com | [0a2 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [063 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 +orderer.example.com | [04f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +peer0.org2.example.com | [16d 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:eecb7c8c-ace4-43bf-9e4f-f116177d57e2 +peer0.org1.example.com | [0ac 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0a3 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 +peer1.org1.example.com | [064 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +peer1.org2.example.com | [0a4 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +peer1.org1.example.com | [065 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [0ad 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [09e89d5e]Entered state ready +peer0.org1.example.com | [0ae 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:09e89d5e-81cf-4fa5-8c76-a64bb511b92a +orderer.example.com | [050 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +peer1.org1.example.com | [066 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0a5 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [16e 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eecb7c8c]sending state message READY +peer0.org1.example.com | [0af 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]sending state message READY +peer1.org2.example.com | [0a6 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [051 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +peer1.org1.example.com | [067 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0b0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Received message READY from shim +peer1.org2.example.com | [0a8 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [068 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [052 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +peer0.org1.example.com | [0b1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [09e89d5e]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0a7 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed +peer1.org1.example.com | [069 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed +orderer.example.com | [053 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +peer0.org2.example.com | [16f 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [0b2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0a9 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | [054 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +peer1.org1.example.com | [06a 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [170 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [0aa 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [0b3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | [055 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +peer1.org2.example.com | [0ab 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0ac 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32294963]Move state message READY +orderer.example.com | [056 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +peer0.org1.example.com | [0b4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [06b 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0ad 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32294963]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0b5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | [057 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +peer0.org2.example.com | [171 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [0ae 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [32294963]Entered state ready +peer1.org1.example.com | [06c 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f711c118]Move state message READY +orderer.example.com | [058 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +peer0.org1.example.com | [0b6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [09e89d5e]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0af 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:32294963-aaff-4577-babd-025a792b5b9b +peer0.org1.example.com | [0b7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [172 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org2.example.com | [0b0 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32294963]sending state message READY +orderer.example.com | [059 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +peer1.org1.example.com | [06d 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f711c118]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0b8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [09e89d5e]sendExecuteMsg trigger event INIT +orderer.example.com | [05a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [0b9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]Move state message INIT +peer1.org2.example.com | [0b1 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32294963]Received message READY from shim +peer1.org1.example.com | [06e 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f711c118]Entered state ready +peer0.org1.example.com | [0ba 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [06f 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f711c118-dc03-42af-b3ac-841809ee2e8f +orderer.example.com | [05b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [0bb 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [173 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [eecb7c8c]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0b2 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32294963]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | [05c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [070 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f711c118]sending state message READY +peer0.org1.example.com | [0bc 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]sending state message INIT +peer1.org2.example.com | [0b3 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | [05d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [0bd 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Received message INIT from shim +orderer.example.com | [05e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [071 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f711c118]Received message READY from shim +orderer.example.com | [05f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [174 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0be 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [09e89d5e]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [072 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f711c118]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0b4 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | [060 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid +peer0.org1.example.com | [0bf 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [0b5 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [073 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [0c0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [09e89d5e]Received INIT, initializing chaincode +orderer.example.com | [061 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [175 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [eecb7c8c]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [0c1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0b6 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | [062 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [074 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [0c2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Init get response status: 200 +peer0.org2.example.com | [166 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [063 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [0c3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [075 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [0b7 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [32294963]Inside sendExecuteMessage. Message INIT +orderer.example.com | [064 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [076 01-12 22:56:35.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org1.example.com | [0c4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Move state message COMPLETED +orderer.example.com | [065 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [176 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0b8 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0c5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [09e89d5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [077 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f711c118]Inside sendExecuteMessage. Message INIT +orderer.example.com | [066 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [0b9 01-12 22:56:37.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [32294963]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [0c6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]send state message COMPLETED +peer0.org2.example.com | [178 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eecb7c8c]Move state message INIT +orderer.example.com | [067 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [078 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0ba 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32294963]Move state message INIT +peer0.org1.example.com | [0c7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]Received message COMPLETED from shim +peer1.org1.example.com | [079 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f711c118]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [0bb 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32294963]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [068 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer0.org2.example.com | [179 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eecb7c8c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [0c8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [07a 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f711c118]Move state message INIT +orderer.example.com | [069 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [0bc 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [0c9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e-81cf-4fa5-8c76-a64bb511b92a]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [07b 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f711c118]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0bd 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32294963]sending state message INIT +orderer.example.com | [06a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [17a 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0be 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32294963]Received message INIT from shim +peer1.org1.example.com | [07c 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [06b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [0ca 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:09e89d5e-81cf-4fa5-8c76-a64bb511b92a +peer1.org2.example.com | [0bf 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32294963]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [06c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [07d 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f711c118]sending state message INIT +peer0.org1.example.com | [0cb 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [17b 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eecb7c8c]sending state message INIT +peer1.org2.example.com | [0c0 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [06d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [07e 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f711c118]Received message INIT from shim +peer0.org1.example.com | [0cc 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [0c1 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [32294963]Received INIT, initializing chaincode +peer1.org1.example.com | [07f 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f711c118]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [0cd 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=4db14a4c-f346-41d3-a211-9e7d7d5f825d,syscc=true,proposal=0x0,canname=escc:1.0.5 +orderer.example.com | [06e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [0c2 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [080 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [06f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org1.example.com | [0ce 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched +peer1.org2.example.com | [0c3 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32294963]Init get response status: 200 +peer1.org1.example.com | [081 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f711c118]Received INIT, initializing chaincode +peer0.org2.example.com | [177 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eecb7c8c]Received message READY from shim +peer0.org1.example.com | [0cf 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [082 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | [070 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer1.org2.example.com | [0c4 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32294963]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [083 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0d0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | [071 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org1.example.com | [0d1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [0d2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [084 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f711c118]Init get response status: 200 +peer0.org2.example.com | [17c 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eecb7c8c]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0c5 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32294963]Move state message COMPLETED +peer0.org1.example.com | [0d3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | [072 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer1.org1.example.com | [085 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f711c118]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0c6 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [32294963]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +orderer.example.com | [073 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [17d 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eecb7c8c]Received message INIT from shim +peer1.org2.example.com | [0c7 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [32294963]send state message COMPLETED +orderer.example.com | [074 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [086 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f711c118]Move state message COMPLETED +peer1.org2.example.com | [0c8 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [32294963]Received message COMPLETED from shim +orderer.example.com | [075 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [087 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f711c118]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [076 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer0.org2.example.com | [17e 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eecb7c8c]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [0c9 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32294963]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [077 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org1.example.com | [088 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f711c118]send state message COMPLETED +peer1.org2.example.com | [0ca 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [32294963-aaff-4577-babd-025a792b5b9b]HandleMessage- COMPLETED. Notify +orderer.example.com | [078 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [17f 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [0cb 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:32294963-aaff-4577-babd-025a792b5b9b +orderer.example.com | [079 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos +peer1.org1.example.com | [089 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f711c118]Received message COMPLETED from shim +peer0.org1.example.com | [0d4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +peer1.org2.example.com | [0cc 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [07a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +peer0.org1.example.com | [0d5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +peer1.org2.example.com | [0cd 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | [07b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [08a 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f711c118]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0d6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +orderer.example.com | [07c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [0ce 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=275ce2fa-da87-4f4f-80d5-9d57851d6afa,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer1.org1.example.com | [08b 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f711c118-dc03-42af-b3ac-841809ee2e8f]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [180 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [eecb7c8c]Received INIT, initializing chaincode +peer0.org1.example.com | [0d7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +orderer.example.com | [07d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org2.example.com | [0cf 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched +peer1.org1.example.com | [08c 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f711c118-dc03-42af-b3ac-841809ee2e8f +peer0.org1.example.com | [0d8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +orderer.example.com | [07e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer1.org2.example.com | [0d0 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [08d 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [07f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [0d9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | [080 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [181 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [08e 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [0d1 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | [081 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [0da 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [082 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org1.example.com | [08f 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=78cf3488-8bdf-4b3f-a4cd-ce799f575a8a,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org2.example.com | [0d2 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [0db 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +orderer.example.com | [083 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [182 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [084 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer1.org1.example.com | [090 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched +peer0.org1.example.com | [0dc 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [0d3 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | [085 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [091 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [0d4 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [0dd 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +orderer.example.com | [086 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [092 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [0de 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [183 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eecb7c8c]Init get response status: 200 peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 -peer1.org1.example.com | 2K0w36PLYDVTrQGFRVILj2ozTdIGIStps9gCICwtH+aadA7u2+ulZms1Hcoen/u4 -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [052 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | [02f 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | [087 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org1.example.com | [093 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [184 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eecb7c8c]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0df 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [094 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer1.org1.example.com | 7b7F4imfYN+ijjy+ -peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | [088 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [185 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eecb7c8c]Move state message COMPLETED peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [0e0 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [095 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [053 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [186 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eecb7c8c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [0e1 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [035 12-19 06:47:34.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [212 239 108 198 100 195 117 211 108 132 180 84 127 71 90 170 164 105 37 229 178 136 103 74 198 222 169 20 232 46 168 83] peer1.org1.example.com:7051} incTime is 1513666054158027900 -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -peer1.org2.example.com | [0d5 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock -peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer1.org1.example.com | [037 12-19 06:47:34.16 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 [] [212 239 108 198 100 195 117 211 108 132 180 84 127 71 90 170 164 105 37 229 178 136 103 74 198 222 169 20 232 46 168 83] peer1.org1.example.com:7051} -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 -peer1.org2.example.com | [0d6 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [038 12-19 06:47:34.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -peer1.org2.example.com | [0d7 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [039 12-19 06:47:34.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -peer1.org2.example.com | [0d8 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 +peer0.org2.example.com | [187 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eecb7c8c]send state message COMPLETED +peer1.org2.example.com | [0d5 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +peer0.org1.example.com | [0e2 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [0d6 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [0e3 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [188 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eecb7c8c]Received message COMPLETED from shim +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [0d7 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [0e4 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0d8 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer0.org2.example.com | [189 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eecb7c8c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0e5 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0da 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [0db 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [18a 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eecb7c8c-ace4-43bf-9e4f-f116177d57e2]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [0e6 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0dc 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [18b 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:eecb7c8c-ace4-43bf-9e4f-f116177d57e2 +peer0.org1.example.com | [0e7 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0d9 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +peer1.org1.example.com | [096 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer0.org2.example.com | [18c 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [0e8 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed +peer1.org2.example.com | [0dd 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer1.org1.example.com | [097 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer1.org2.example.com | [0de 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [18d 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [0e9 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [0df 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [098 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +peer0.org2.example.com | [18e 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer1.org2.example.com | [0e0 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [099 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +peer0.org2.example.com | [18f 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] +peer1.org2.example.com | [0e1 01-12 22:56:37.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0ea 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org2.example.com | [0e2 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [09a 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +peer0.org1.example.com | [0eb 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]Move state message READY +peer0.org2.example.com | [190 01-12 22:56:37.63 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] +peer1.org2.example.com | [0e3 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +peer1.org1.example.com | [09b 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [0e4 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [0ec 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0e6 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [09c 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0e7 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer0.org2.example.com | [191 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer0.org1.example.com | [0ed 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4db14a4c]Entered state ready +peer1.org2.example.com | [0e8 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer1.org1.example.com | [09d 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +peer0.org2.example.com | [192 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer0.org1.example.com | [0ee 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4db14a4c-f346-41d3-a211-9e7d7d5f825d +peer1.org2.example.com | [0e9 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [09e 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [193 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0ea 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [275ce2fa]Move state message READY +peer0.org1.example.com | [0ef 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]sending state message READY orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [03a 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [0d9 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 -peer1.org2.example.com | [0db 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | [01d 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [03b 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | [01e 12-19 06:47:31.63 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -peer0.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer1.org2.example.com | [0da 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | MIICGDCCAb+gAwIBAgIQQ4KyKm3x9uZJSQMr3yhp9zAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | [01f 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -peer1.org2.example.com | [0dc 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer0.org2.example.com | [054 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock -orderer.example.com | [020 12-19 06:47:31.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [0dd 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer0.org2.example.com | [055 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock -orderer.example.com | [021 12-19 06:47:31.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists -peer0.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [056 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 -peer0.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer1.org2.example.com | [0de 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 -orderer.example.com | [022 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer0.org2.example.com | [057 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) -peer1.org2.example.com | [0df 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | [023 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -peer0.org2.example.com | [058 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [0e0 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [030 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [059 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | [024 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -peer1.org2.example.com | [0e1 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [031 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [05a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [025 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -peer1.org2.example.com | [0e2 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEGcHvnV2v0vNgR0CCrBpCED0kM1GKpWsD -peer0.org1.example.com | [032 12-19 06:47:31.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [026 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org2.example.com | [05b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 -peer1.org2.example.com | [0e3 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 -peer1.org1.example.com | HvfdPsueor1uFF/UlNSyp/keNm2qCfV8bMmS4yUrpisGF2BTYAC1N6NNMEswDgYD -peer0.org1.example.com | [033 12-19 06:47:31.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [027 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org2.example.com | [0e4 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED -peer0.org2.example.com | [05c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer0.org1.example.com | [034 12-19 06:47:31.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | [028 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org2.example.com | [05d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDRwAwRAIgCsphbzNr -peer1.org2.example.com | [0e5 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [029 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org1.example.com | 2K0w36PLYDVTrQGFRVILj2ozTdIGIStps9gCICwtH+aadA7u2+ulZms1Hcoen/u4 -peer0.org2.example.com | [05e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [02a 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [0e6 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | 7b7F4imfYN+ijjy+ -orderer.example.com | [02b 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [05f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [0e8 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [02c 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4203c4940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [03c 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [060 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer1.org2.example.com | [0e7 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed -orderer.example.com | [02d 12-19 06:47:31.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [061 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [03d 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [0e9 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [02e 12-19 06:47:31.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xf7, 0x29, 0x3c, 0xb1, 0xff, 0xd9, 0xeb, 0xb6, 0x36, 0x46, 0x48, 0x6, 0x53, 0xe1, 0x6a, 0x62, 0x2e, 0x8d, 0x72, 0xec, 0xa7, 0x87, 0xb9, 0xd3, 0x38, 0x62, 0x4, 0xdd, 0x68, 0xaf, 0x6, 0x83} txOffsets= -peer0.org2.example.com | [062 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 -peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [03e 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0ea 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | txId=c1fdb8cec547d20e7773cccf2207c05572ce38347c87bc423d09a2bbd54fe028 locPointer=offset=38, bytesLength=9039 -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -peer0.org2.example.com | [063 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED -peer1.org1.example.com | [03f 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | ] -peer1.org2.example.com | [0eb 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer1.org1.example.com | [040 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01AD060A20D4EF6CC664C375D3...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org2.example.com | [064 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [02f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org2.example.com | [0ec 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73bb699a]Move state message READY -peer1.org1.example.com | [041 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 182E4818D224255650F699D305A33829EECDA528F0E18B6F1FFA42B35CAF6BFA -peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer0.org2.example.com | [065 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0ed 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73bb699a]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [030 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -peer0.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer1.org1.example.com | [042 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=b52bf3f6-e093-475a-a52e-2ea9b63da811,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer0.org2.example.com | [066 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0ee 12-19 06:47:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [73bb699a]Entered state ready -orderer.example.com | [031 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -peer1.org2.example.com | [0ef 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:73bb699a-d1cc-41d0-a0c8-10a14ac3903e -peer0.org2.example.com | [067 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [043 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched -peer1.org2.example.com | [0f0 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73bb699a]sending state message READY -orderer.example.com | [032 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -peer0.org2.example.com | [068 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed -peer0.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer1.org1.example.com | [044 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | [033 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer1.org2.example.com | [0f1 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73bb699a]Received message READY from shim -peer0.org2.example.com | [069 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [045 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | [034 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -peer1.org1.example.com | [046 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [0f2 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73bb699a]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [035 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org1.example.com | [035 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [143 82 170 12 147 98 180 175 202 109 176 15 125 139 169 198 18 42 139 13 51 79 107 174 236 26 68 151 60 128 120 0] peer0.org1.example.com:7051} incTime is 1513666051950505200 -peer0.org2.example.com | [06a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [047 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -orderer.example.com | [036 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -peer1.org1.example.com | [048 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [0f3 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [06b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6b4cf38c]Move state message READY -peer0.org1.example.com | [036 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [143 82 170 12 147 98 180 175 202 109 176 15 125 139 169 198 18 42 139 13 51 79 107 174 236 26 68 151 60 128 120 0] peer0.org1.example.com:7051} -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 -peer0.org2.example.com | [06c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6b4cf38c]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [037 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [037 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [0f4 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [06d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [6b4cf38c]Entered state ready -orderer.example.com | [038 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [038 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [0f5 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [039 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [06e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:6b4cf38c-caae-42b0-8784-5eb9510a60ab -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [039 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | [03a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [06f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6b4cf38c]sending state message READY -peer1.org2.example.com | [0f6 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | [03b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [070 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6b4cf38c]Received message READY from shim -peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [0f7 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [73bb699a]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [049 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock -orderer.example.com | [03c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | [03d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [071 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [072 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6b4cf38c]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [04a 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock -peer0.org2.example.com | [073 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [03e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums -peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer1.org2.example.com | [0f8 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [04b 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 -peer0.org2.example.com | [074 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [0f9 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [73bb699a]sendExecuteMsg trigger event INIT -orderer.example.com | [03f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -peer0.org2.example.com | [075 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [04c 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) -peer0.org2.example.com | [076 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6b4cf38c]Inside sendExecuteMessage. Message INIT -orderer.example.com | [040 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -peer1.org2.example.com | [0fa 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73bb699a]Move state message INIT -peer0.org2.example.com | [077 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [036 12-19 06:47:34.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -orderer.example.com | [041 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -peer0.org2.example.com | [078 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6b4cf38c]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0fb 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73bb699a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [04d 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer0.org2.example.com | [079 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6b4cf38c]Move state message INIT -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -orderer.example.com | [042 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -peer0.org2.example.com | [07a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6b4cf38c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0fc 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [04e 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} -peer0.org2.example.com | [07b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer1.org2.example.com | [0fd 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73bb699a]sending state message INIT -orderer.example.com | [043 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -peer0.org2.example.com | [07c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6b4cf38c]sending state message INIT -peer1.org1.example.com | [04f 12-19 06:47:34.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -orderer.example.com | [044 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -peer1.org2.example.com | [0fe 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73bb699a]Received message INIT from shim -peer0.org2.example.com | [07d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6b4cf38c]Received message INIT from shim -peer1.org1.example.com | [050 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 -peer0.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer0.org2.example.com | [07e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6b4cf38c]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [045 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org2.example.com | [0ff 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73bb699a]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -peer1.org1.example.com | [051 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [07f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [046 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -peer0.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer0.org2.example.com | [080 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6b4cf38c]Received INIT, initializing chaincode -peer1.org1.example.com | [052 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [100 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [081 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [082 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [047 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -peer0.org1.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [101 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [73bb699a]Received INIT, initializing chaincode -peer1.org1.example.com | [053 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | [083 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6b4cf38c]Init get response status: 200 -orderer.example.com | [048 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -peer0.org2.example.com | [084 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6b4cf38c]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [03a 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [102 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [085 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6b4cf38c]Move state message COMPLETED -peer1.org1.example.com | [054 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [03b 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [049 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -peer0.org2.example.com | [086 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6b4cf38c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [103 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73bb699a]Init get response status: 200 -peer1.org1.example.com | [055 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [087 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6b4cf38c]send state message COMPLETED -peer0.org1.example.com | [03c 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [104 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73bb699a]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [088 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6b4cf38c]Received message COMPLETED from shim -peer1.org2.example.com | [105 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73bb699a]Move state message COMPLETED -peer0.org1.example.com | [03d 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [056 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADA060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org2.example.com | [089 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6b4cf38c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [04a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -peer1.org2.example.com | [106 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73bb699a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [08a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6b4cf38c-caae-42b0-8784-5eb9510a60ab]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [057 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E843BA9FD63EB0653B1425B9793BB395C912693660FF724E4CBD3899A6B2E35 -orderer.example.com | [04b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -peer0.org1.example.com | [03e 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [08b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6b4cf38c-caae-42b0-8784-5eb9510a60ab -peer1.org2.example.com | [107 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73bb699a]send state message COMPLETED -orderer.example.com | [04c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [08c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [058 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [03f 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A208F52AA0C9362B4AF...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [108 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73bb699a]Received message COMPLETED from shim -peer0.org2.example.com | [08d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [059 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [04d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [040 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 7B9908F8D368A660B2360494F2FBB601AB33B8BC902A53EDCF2A1FAE10440897 -peer0.org2.example.com | [08e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=11cc19f7-8369-42a7-8a76-4dfa68e1ef30,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer1.org2.example.com | [109 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73bb699a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [04e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [08f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched -peer0.org1.example.com | [041 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=7b26bdd8-6494-457a-9ea4-3856d59343c6,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer1.org1.example.com | [05a 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -orderer.example.com | [04f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [10a 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73bb699a-d1cc-41d0-a0c8-10a14ac3903e]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [042 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched -peer0.org2.example.com | [090 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [05b 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer1.org2.example.com | [10b 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:73bb699a-d1cc-41d0-a0c8-10a14ac3903e -orderer.example.com | [050 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [091 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [043 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [05c 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 -orderer.example.com | [051 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [10c 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [044 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [05d 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [10d 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [045 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -orderer.example.com | [052 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [092 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [05e 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 -peer1.org2.example.com | [10e 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=a53db7f8-fe70-4bdf-924f-da335679365d,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org2.example.com | [093 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | [046 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | [053 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [10f 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched -peer0.org2.example.com | [094 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [05f 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [047 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org2.example.com | [110 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [060 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 -peer0.org1.example.com | [048 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | [054 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [061 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [111 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.5 -orderer.example.com | [055 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [062 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [112 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [056 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [063 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [113 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | [057 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [064 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [114 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | [058 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.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 | [065 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [059 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [095 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +peer1.org2.example.com | [0eb 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [275ce2fa]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [194 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer1.org1.example.com | [09f 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +peer1.org2.example.com | [0ec 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [275ce2fa]Entered state ready +orderer.example.com | [089 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0ed 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:275ce2fa-da87-4f4f-80d5-9d57851d6afa +peer0.org2.example.com | [195 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org1.example.com | [0f0 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Received message READY from shim +peer1.org1.example.com | [0a0 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [0ee 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [275ce2fa]sending state message READY +peer0.org2.example.com | [196 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0ef 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [0a1 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [0f1 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4db14a4c]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0f0 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [197 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0f1 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [0a2 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0f2 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0f2 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org1.example.com | [0a3 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [198 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer0.org1.example.com | [0f3 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [199 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer1.org1.example.com | [0a4 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 +peer1.org2.example.com | [0f3 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [275ce2fa]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [0f4 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [0a5 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [19a 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [0a6 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0f4 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0f5 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [19b 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0f5 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [275ce2fa]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0a7 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0f6 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4db14a4c]Inside sendExecuteMessage. Message INIT +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org2.example.com | [19c 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer0.org1.example.com | [0f7 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [0a8 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0e5 01-12 22:56:37.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [0f8 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4db14a4c]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [19d 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer1.org1.example.com | [0a9 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer1.org2.example.com | [0f6 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0f9 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]Move state message INIT +peer0.org2.example.com | [19e 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [0f7 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0fa 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0aa 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org2.example.com | [19f 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0fb 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0f8 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [275ce2fa]Received message READY from shim +peer1.org1.example.com | [0ab 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [0fc 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]sending state message INIT +peer1.org2.example.com | [0f9 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [275ce2fa]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | [08a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [0ac 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [1a0 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [0fd 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Received message INIT from shim +peer1.org2.example.com | [0fa 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [275ce2fa]Move state message INIT +peer1.org1.example.com | [0ad 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78cf3488]Move state message READY +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [0fe 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4db14a4c]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [1a1 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0fb 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [275ce2fa]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0ae 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78cf3488]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0ff 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [1a2 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [0af 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [78cf3488]Entered state ready +peer1.org2.example.com | [0fc 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [100 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4db14a4c]Received INIT, initializing chaincode +peer0.org2.example.com | [1a3 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [0b0 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:78cf3488-8bdf-4b3f-a4cd-ce799f575a8a +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer1.org2.example.com | [0fd 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [275ce2fa]sending state message INIT +peer0.org1.example.com | [101 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [1a4 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4213e7dd0 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [0b1 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78cf3488]sending state message READY +peer0.org1.example.com | [102 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Init get response status: 200 +peer1.org2.example.com | [0fe 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [275ce2fa]Received message INIT from shim +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [0b2 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78cf3488]Received message READY from shim +peer0.org2.example.com | [1a5 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [0ff 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [275ce2fa]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [103 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0b3 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [78cf3488]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [1a6 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [104 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Move state message COMPLETED +peer1.org1.example.com | [0b4 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [100 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [1a7 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer1.org2.example.com | [101 01-12 22:56:37.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [275ce2fa]Received INIT, initializing chaincode +peer0.org1.example.com | [105 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4db14a4c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0b5 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org2.example.com | [1a8 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [102 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [106 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]send state message COMPLETED +peer1.org1.example.com | [0b6 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer0.org2.example.com | [1a9 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [103 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [275ce2fa]Init get response status: 200 +peer0.org1.example.com | [107 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]Received message COMPLETED from shim +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org2.example.com | [1aa 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4214e46e0, header 0xc4213e7e60 +peer1.org2.example.com | [104 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [275ce2fa]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0b7 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [1ab 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [108 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [105 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [275ce2fa]Move state message COMPLETED +peer0.org2.example.com | [1ac 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 45347702c5d33037295b0cc218a144b851ce927fd472f6c9a901037c54a4e92f +orderer.example.com | [08b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [0b8 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [78cf3488]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [1ad 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 45347702c5d33037295b0cc218a144b851ce927fd472f6c9a901037c54a4e92f channel id: +peer0.org1.example.com | [109 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c-f346-41d3-a211-9e7d7d5f825d]HandleMessage- COMPLETED. Notify +orderer.example.com | [08c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [106 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [275ce2fa]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0b9 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [10a 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4db14a4c-f346-41d3-a211-9e7d7d5f825d +peer0.org2.example.com | [1ae 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 45347702c5d33037295b0cc218a144b851ce927fd472f6c9a901037c54a4e92f channel id: version: 1.0.5 +orderer.example.com | [08d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [107 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [275ce2fa]send state message COMPLETED +peer1.org1.example.com | [0ba 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [78cf3488]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [10b 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [08e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [1af 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=45347702c5d33037295b0cc218a144b851ce927fd472f6c9a901037c54a4e92f,syscc=true,proposal=0xc4214e46e0,canname=cscc:1.0.5 +peer1.org2.example.com | [108 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [275ce2fa]Received message COMPLETED from shim +peer0.org1.example.com | [10c 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [0bb 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78cf3488]Move state message INIT +peer1.org2.example.com | [109 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [275ce2fa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [08f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [1b0 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer1.org1.example.com | [0bc 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78cf3488]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [10d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [10a 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [275ce2fa-da87-4f4f-80d5-9d57851d6afa]HandleMessage- COMPLETED. Notify +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [0bd 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0be 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78cf3488]sending state message INIT +peer1.org1.example.com | [0bf 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78cf3488]Received message INIT from shim +peer1.org1.example.com | [0c0 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [78cf3488]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0c1 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [10b 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:275ce2fa-da87-4f4f-80d5-9d57851d6afa +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [0c2 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [78cf3488]Received INIT, initializing chaincode +peer0.org2.example.com | [1b1 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [0c3 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [10e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=ab0bffba-ccc2-4501-9e12-678936a34c72,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [10c 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [0c4 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78cf3488]Init get response status: 200 +peer0.org2.example.com | [1b2 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org2.example.com | [10d 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [0c5 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78cf3488]Init succeeded. Sending COMPLETED +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org1.example.com | [0c6 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78cf3488]Move state message COMPLETED +peer0.org2.example.com | [1b3 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [45347702]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [0c7 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [78cf3488]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [10e 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=b1b7c0d4-67ae-4d92-8d83-e1a4be158939,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [10f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [0c8 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78cf3488]send state message COMPLETED +peer1.org2.example.com | [10f 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched +peer0.org2.example.com | [1b4 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [0c9 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78cf3488]Received message COMPLETED from shim +peer0.org1.example.com | [110 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [110 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org1.example.com | [0ca 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78cf3488]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [1b5 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [111 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [111 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [0cb 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78cf3488-8bdf-4b3f-a4cd-ce799f575a8a]HandleMessage- COMPLETED. Notify +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +peer0.org2.example.com | [1b6 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [45347702]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [112 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | [0cc 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:78cf3488-8bdf-4b3f-a4cd-ce799f575a8a +peer1.org2.example.com | [112 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [0cd 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [1b7 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [45347702]Move state message TRANSACTION +peer1.org2.example.com | [113 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org1.example.com | [0ce 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [113 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer1.org2.example.com | [114 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [0cf 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=ae412b2e-f60c-4c52-ba86-ad5ff86b87c9,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer0.org1.example.com | [114 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [1b8 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [45347702]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [0d0 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 -peer1.org1.example.com | [066 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [096 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +peer1.org1.example.com | [0d1 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [1b9 01-12 22:56:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer1.org1.example.com | [0d2 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [05a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [097 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 -peer1.org1.example.com | [067 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [049 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +peer1.org1.example.com | [0d3 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [1ba 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [45347702]sending state message TRANSACTION +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | RTCauNNt1A== +peer1.org1.example.com | [0d4 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [05b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [04a 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock -peer1.org1.example.com | [068 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [098 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) -orderer.example.com | [05c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [04b 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 -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 | [069 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed -peer0.org1.example.com | [04c 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) -peer0.org2.example.com | [099 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 -orderer.example.com | [05d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [06a 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [115 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock -peer0.org2.example.com | [09b 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [04d 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -peer1.org2.example.com | [116 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock -orderer.example.com | [05e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [06b 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [04e 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org2.example.com | [117 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 -orderer.example.com | [05f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [09a 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 -peer1.org1.example.com | [06c 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b52bf3f6]Move state message READY -peer0.org1.example.com | [04f 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 -peer1.org2.example.com | [118 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) -peer0.org2.example.com | [09c 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [060 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid -peer0.org1.example.com | [050 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [119 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 -peer1.org1.example.com | [06d 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b52bf3f6]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [09d 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [061 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [11a 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [051 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [09e 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 -peer1.org2.example.com | [11b 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 -peer1.org1.example.com | [06e 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b52bf3f6]Entered state ready -peer0.org1.example.com | [052 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | [09f 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [062 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [06f 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b52bf3f6-e093-475a-a52e-2ea9b63da811 -orderer.example.com | [063 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [11c 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [0a0 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [064 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [053 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 -peer1.org1.example.com | [070 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b52bf3f6]sending state message READY -peer1.org2.example.com | [11d 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 -orderer.example.com | [065 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [0a1 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [071 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b52bf3f6]Received message READY from shim -peer1.org2.example.com | [11f 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [066 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [054 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [0a2 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [067 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer1.org1.example.com | [072 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b52bf3f6]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [11e 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [068 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [055 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 -peer0.org2.example.com | [0a3 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 -orderer.example.com | [069 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums -peer1.org2.example.com | [120 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [073 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [06a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos -peer0.org2.example.com | [0a4 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED -peer0.org1.example.com | [056 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [06b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -peer1.org1.example.com | [074 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [121 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | [06c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [0a5 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [057 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [06d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [075 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [122 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [0a6 12-19 06:47:32.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [06e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [058 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | [076 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -orderer.example.com | [06f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org2.example.com | [0a8 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [05a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: DFAFBFAFC7A6C3BEB0126C045051C7D129D0082F81D51FF25A2201D7255DD9B8 -orderer.example.com | [070 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [123 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 -peer1.org1.example.com | [077 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b52bf3f6]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [124 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED -orderer.example.com | [071 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [0a9 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [125 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [059 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [078 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [072 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [126 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [05c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [0a7 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed -peer1.org1.example.com | [079 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b52bf3f6]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [128 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [073 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [05d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0aa 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [129 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [07a 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b52bf3f6]Move state message INIT -orderer.example.com | [074 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer1.org2.example.com | [127 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed -peer0.org1.example.com | [05e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [07b 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b52bf3f6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [075 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org2.example.com | [0ab 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [12a 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [076 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [05f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 -peer1.org1.example.com | [07c 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [12b 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0ac 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [11cc19f7]Move state message READY -peer1.org2.example.com | [12c 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53db7f8]Move state message READY -orderer.example.com | [077 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [07d 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b52bf3f6]sending state message INIT -peer0.org1.example.com | [060 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED -peer1.org2.example.com | [12d 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53db7f8]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0ad 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [11cc19f7]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [07e 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b52bf3f6]Received message INIT from shim -orderer.example.com | [078 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [12e 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a53db7f8]Entered state ready -peer0.org1.example.com | [061 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [07f 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b52bf3f6]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0ae 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [11cc19f7]Entered state ready -peer1.org2.example.com | [12f 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a53db7f8-fe70-4bdf-924f-da335679365d -peer0.org1.example.com | [05b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [079 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [080 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [130 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53db7f8]sending state message READY -orderer.example.com | [07a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [0af 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:11cc19f7-8369-42a7-8a76-4dfa68e1ef30 -peer0.org1.example.com | [063 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [131 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53db7f8]Received message READY from shim -peer1.org1.example.com | [081 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b52bf3f6]Received INIT, initializing chaincode -orderer.example.com | [07b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [132 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [0b0 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [11cc19f7]sending state message READY -peer1.org1.example.com | [082 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [134 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [07c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org1.example.com | [062 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0b1 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [11cc19f7]Received message READY from shim -peer1.org2.example.com | [133 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a53db7f8]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [083 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [064 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [135 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [0b2 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [11cc19f7]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [07d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer1.org2.example.com | [136 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org1.example.com | [084 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b52bf3f6]Init get response status: 200 -peer0.org2.example.com | [0b3 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [137 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a53db7f8]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [067 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -orderer.example.com | [07e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [085 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b52bf3f6]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [138 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0b4 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [066 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed -orderer.example.com | [07f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer1.org2.example.com | [139 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a53db7f8]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [086 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b52bf3f6]Move state message COMPLETED -peer0.org1.example.com | [068 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [0b5 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [080 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [13a 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53db7f8]Move state message INIT -peer1.org1.example.com | [087 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b52bf3f6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [065 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0b6 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [13b 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53db7f8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [081 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [088 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b52bf3f6]send state message COMPLETED -peer0.org2.example.com | [0b7 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [11cc19f7]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [069 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [13c 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [089 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b52bf3f6]Received message COMPLETED from shim -orderer.example.com | [082 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [0b8 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [06a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]Move state message READY -peer1.org1.example.com | [08a 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b52bf3f6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [13d 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53db7f8]sending state message INIT -orderer.example.com | [083 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org2.example.com | [0b9 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [11cc19f7]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [06c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [13e 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53db7f8]Received message INIT from shim -peer1.org1.example.com | [08b 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b52bf3f6-e093-475a-a52e-2ea9b63da811]HandleMessage- COMPLETED. Notify -orderer.example.com | [084 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org2.example.com | [0ba 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [11cc19f7]Move state message INIT -peer0.org1.example.com | [06d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7b26bdd8]Entered state ready -peer1.org1.example.com | [08c 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b52bf3f6-e093-475a-a52e-2ea9b63da811 -peer1.org2.example.com | [13f 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a53db7f8]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [085 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [0bb 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [11cc19f7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [06b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [08d 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [086 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [140 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [06e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7b26bdd8-6494-457a-9ea4-3856d59343c6 -peer0.org2.example.com | [0bc 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [08e 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [141 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a53db7f8]Received INIT, initializing chaincode -peer0.org1.example.com | [06f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]sending state message READY -orderer.example.com | [087 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [0bd 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [11cc19f7]sending state message INIT -peer1.org1.example.com | [08f 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=3aa1ef0c-b548-4c82-bc9a-d8da155d07cd,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer1.org2.example.com | [142 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53db7f8]Init get response status: 200 -peer0.org1.example.com | [070 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Received message READY from shim -orderer.example.com | [088 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [090 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched -peer0.org2.example.com | [0be 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [11cc19f7]Received message INIT from shim -peer1.org2.example.com | [143 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53db7f8]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [091 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [144 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53db7f8]Move state message COMPLETED -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [071 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b26bdd8]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0bf 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [11cc19f7]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [092 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [145 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a53db7f8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [072 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [0c0 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [093 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [0c1 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [11cc19f7]Received INIT, initializing chaincode -peer1.org2.example.com | [146 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a53db7f8]send state message COMPLETED -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org1.example.com | [094 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | [0c2 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [073 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [095 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [074 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [147 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a53db7f8]Received message COMPLETED from shim -peer0.org2.example.com | [0c3 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [11cc19f7]Init get response status: 200 -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 -peer0.org1.example.com | [075 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [076 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b26bdd8]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [148 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53db7f8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | [0c4 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [11cc19f7]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [077 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer1.org2.example.com | [149 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a53db7f8-fe70-4bdf-924f-da335679365d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [078 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b26bdd8]sendExecuteMsg trigger event INIT -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [0c5 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [11cc19f7]Move state message COMPLETED -peer0.org1.example.com | [079 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]Move state message INIT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [14a 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a53db7f8-fe70-4bdf-924f-da335679365d -peer1.org1.example.com | [096 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock -peer0.org1.example.com | [07a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [14b 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [0c6 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [11cc19f7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [097 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -peer0.org1.example.com | [07b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [098 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 -peer1.org2.example.com | [14c 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [0c7 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [11cc19f7]send state message COMPLETED -peer0.org1.example.com | [07c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]sending state message INIT -peer1.org1.example.com | [099 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) -peer0.org2.example.com | [0c8 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [11cc19f7]Received message COMPLETED from shim -peer1.org2.example.com | [14d 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=5aa18f89-2a04-427d-8d9f-ebc8d8b20d03,syscc=true,proposal=0x0,canname=qscc:1.0.5 -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer0.org1.example.com | [07d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Received message INIT from shim -peer1.org1.example.com | [09a 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 -peer0.org2.example.com | [0c9 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [11cc19f7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [07e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b26bdd8]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [14e 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched -peer1.org1.example.com | [09b 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer0.org1.example.com | [07f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [09c 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0ca 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [11cc19f7-8369-42a7-8a76-4dfa68e1ef30]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [14f 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [080 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7b26bdd8]Received INIT, initializing chaincode -peer1.org1.example.com | [09d 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 -orderer.example.com | IEhjT+WlcQ== -peer0.org1.example.com | [081 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [0cb 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:11cc19f7-8369-42a7-8a76-4dfa68e1ef30 -peer1.org1.example.com | [09e 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [150 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [082 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [09f 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [0cc 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [151 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [083 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Init get response status: 200 -peer1.org1.example.com | [0a0 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [089 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [0cd 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [084 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0a1 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [152 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [085 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Move state message COMPLETED -peer1.org1.example.com | [0a2 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0ce 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=85e99f46-a222-4e20-8855-3abdb8c98f24,syscc=true,proposal=0x0,canname=escc:1.0.5 -peer0.org1.example.com | [086 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b26bdd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0d5 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [1bb 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [45347702]Received message TRANSACTION from shim +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [090 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [1bc 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [45347702]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +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 | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [1bd 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [45347702]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [115 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [0a3 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [153 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [087 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]send state message COMPLETED -peer0.org2.example.com | [0cf 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched -peer1.org1.example.com | [0a4 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 +peer1.org2.example.com | [115 01-12 22:56:37.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +peer0.org2.example.com | [1be 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [116 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [117 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org1.example.com | [0d6 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +peer1.org2.example.com | [116 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org2.example.com | [1bf 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [0d7 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [118 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +peer1.org2.example.com | [117 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +peer1.org1.example.com | [0d8 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [1c0 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [119 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer1.org2.example.com | [118 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org1.example.com | [0d9 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +peer0.org2.example.com | [1c1 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org2.example.com | [119 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org1.example.com | [11a 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [0da 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +peer1.org2.example.com | [11b 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer0.org1.example.com | [11b 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [1c2 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | [0db 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org2.example.com | [1c3 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org2.example.com | [11a 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +peer0.org1.example.com | [11c 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +peer1.org1.example.com | [0dc 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +peer0.org2.example.com | [1c4 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org2.example.com | [11c 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer0.org2.example.com | [1c5 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org1.example.com | [11d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [0dd 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [1c6 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer1.org1.example.com | [0de 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +peer0.org1.example.com | [11e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +peer1.org2.example.com | [11d 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [1c7 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4215e8fa0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [0df 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [1c8 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org1.example.com | [11f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [11e 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +peer0.org2.example.com | [1c9 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [091 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [0e0 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [11f 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [120 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [1ca 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4201d6200), Data:(*common.BlockData)(0xc4215c07e0), Metadata:(*common.BlockMetadata)(0xc4215c0820)}, doMVCCValidation=true +peer1.org1.example.com | [0e1 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [120 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [1cb 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [0e2 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [121 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1cc 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [121 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [122 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [0e3 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [1cd 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +peer1.org2.example.com | [122 01-12 22:56:37.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [123 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 +peer1.org1.example.com | [0e4 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 +peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11883 +peer1.org2.example.com | [123 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 +peer1.org1.example.com | [0e5 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [124 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | ] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [124 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [1ce 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx ID: [] to index +peer1.org1.example.com | [0e6 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [1cf 01-12 22:56:38.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [125 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [0e7 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [125 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [1d0 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11927], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org2.example.com | [126 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [1d1 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +peer0.org1.example.com | [126 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [127 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [128 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [1d2 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [129 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed +peer1.org1.example.com | [0e8 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [128 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org2.example.com | [1d3 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [12a 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [0e9 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [127 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed +peer0.org2.example.com | [1d4 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [12b 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer0.org2.example.com | [1d5 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer1.org2.example.com | [12a 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [0ea 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed +peer0.org1.example.com | [12c 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]Move state message READY +peer0.org2.example.com | [1d6 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org1.example.com | [12d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [12b 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [12e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ab0bffba]Entered state ready +peer0.org2.example.com | [1d7 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [0eb 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer0.org1.example.com | [12f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ab0bffba-ccc2-4501-9e12-678936a34c72 +peer1.org2.example.com | [12c 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7c0d4]Move state message READY +peer1.org1.example.com | [0ec 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [1d8 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [130 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]sending state message READY +peer0.org1.example.com | [131 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Received message READY from shim +peer1.org2.example.com | [12d 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b7c0d4]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0ed 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae412b2e]Move state message READY +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org1.example.com | [132 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab0bffba]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [1d9 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [133 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [12e 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b1b7c0d4]Entered state ready +peer0.org1.example.com | [134 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [1da 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [0ee 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae412b2e]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [12f 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b1b7c0d4-67ae-4d92-8d83-e1a4be158939 +peer0.org1.example.com | [135 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [092 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [136 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org1.example.com | [0ef 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ae412b2e]Entered state ready +peer0.org2.example.com | [1db 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [137 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab0bffba]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0f0 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ae412b2e-f60c-4c52-ba86-ad5ff86b87c9 +orderer.example.com | [093 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [130 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7c0d4]sending state message READY +peer0.org1.example.com | [138 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [0f1 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae412b2e]sending state message READY +peer1.org2.example.com | [131 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [1dc 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [139 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab0bffba]sendExecuteMsg trigger event INIT +orderer.example.com | [094 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [132 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [13a 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]Move state message INIT +peer1.org1.example.com | [0f2 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae412b2e]Received message READY from shim +peer1.org2.example.com | [133 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [095 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [13b 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [1dd 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [13c 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0f3 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae412b2e]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [134 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [13d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]sending state message INIT +peer0.org2.example.com | [1de 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [096 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [135 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b1b7c0d4]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [13e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Received message INIT from shim +peer1.org1.example.com | [0f4 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [1df 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [13f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab0bffba]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0f5 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [136 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [140 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [1e0 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [0f6 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [141 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ab0bffba]Received INIT, initializing chaincode +peer1.org2.example.com | [137 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b1b7c0d4]sendExecuteMsg trigger event INIT +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [1e1 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [142 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Init get response status: 200 +peer1.org1.example.com | [0f7 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [129 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +peer0.org2.example.com | [1e2 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [143 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0f8 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ae412b2e]Inside sendExecuteMessage. Message INIT +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [138 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7c0d4]Received message READY from shim +peer0.org1.example.com | [144 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Move state message COMPLETED +peer0.org2.example.com | [1e3 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [139 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7c0d4]Move state message INIT +peer1.org1.example.com | [0f9 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [1e4 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [0fa 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ae412b2e]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [13b 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b7c0d4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [1e5 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [145 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab0bffba]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0fb 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae412b2e]Move state message INIT +peer1.org2.example.com | [13c 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +peer0.org2.example.com | [1e6 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [146 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]send state message COMPLETED +peer1.org1.example.com | [0fc 01-12 22:56:35.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae412b2e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [13a 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7c0d4]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [1e7 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [0fd 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [147 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]Received message COMPLETED from shim +peer0.org2.example.com | [1e8 01-12 22:56:38.97 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [13d 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7c0d4]sending state message INIT +peer1.org1.example.com | [0fe 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae412b2e]sending state message INIT +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +peer0.org2.example.com | [1e9 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [148 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [13e 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7c0d4]Received message INIT from shim +peer1.org1.example.com | [0ff 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae412b2e]Received message INIT from shim +peer0.org2.example.com | [1ea 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +peer0.org2.example.com | [1eb 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [149 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba-ccc2-4501-9e12-678936a34c72]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [100 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae412b2e]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [1ec 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [13f 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7c0d4]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [1ed 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [14a 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ab0bffba-ccc2-4501-9e12-678936a34c72 +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer1.org2.example.com | [140 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [101 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [1ee 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [14b 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [102 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ae412b2e]Received INIT, initializing chaincode +peer1.org2.example.com | [141 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b1b7c0d4]Received INIT, initializing chaincode +peer0.org2.example.com | [1ef 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [14c 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org1.example.com | [103 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | ymzPpM2K +peer0.org2.example.com | [1f0 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [142 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7c0d4]Init get response status: 200 +peer0.org1.example.com | [14d 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=c6f9e5bc-1211-49ec-adda-a6a312bacf4a,syscc=true,proposal=0x0,canname=qscc:1.0.5 +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [1f1 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [104 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae412b2e]Init get response status: 200 +peer1.org2.example.com | [143 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7c0d4]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [1f2 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [097 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [144 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7c0d4]Move state message COMPLETED +peer0.org1.example.com | [14e 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched +peer1.org1.example.com | [105 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae412b2e]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [1f3 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [14f 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [145 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1b7c0d4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [1f4 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [106 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae412b2e]Move state message COMPLETED +peer0.org1.example.com | [150 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1f5 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [107 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae412b2e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [146 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1b7c0d4]send state message COMPLETED +peer0.org1.example.com | [151 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [1f6 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [108 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae412b2e]send state message COMPLETED +peer1.org2.example.com | [147 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1b7c0d4]Received message COMPLETED from shim +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org2.example.com | [1f7 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [152 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [109 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae412b2e]Received message COMPLETED from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [1f8 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [148 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b7c0d4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [153 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [1f9 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [10a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae412b2e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +peer0.org2.example.com | [1fa 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [149 01-12 22:56:37.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1b7c0d4-67ae-4d92-8d83-e1a4be158939]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org1.example.com | [10b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae412b2e-f60c-4c52-ba86-ad5ff86b87c9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [1fb 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [14a 01-12 22:56:37.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b1b7c0d4-67ae-4d92-8d83-e1a4be158939 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [10c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae412b2e-f60c-4c52-ba86-ad5ff86b87c9 +peer0.org2.example.com | [1fc 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org2.example.com | [14b 01-12 22:56:37.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [10d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [1fd 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer1.org2.example.com | [14c 01-12 22:56:37.44 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org1.example.com | [10e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org2.example.com | [14d 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=cc397873-45e8-4000-bacf-3993c4a4e45a,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer0.org2.example.com | [1fe 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [10f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=6028d5c5-d57c-483f-bfdc-c05f345f7354,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org2.example.com | [14e 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched +peer0.org1.example.com | [154 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [110 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched +peer1.org2.example.com | [14f 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [155 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +peer1.org1.example.com | [111 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | [098 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [1ff 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [150 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [156 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer1.org1.example.com | [112 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [151 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [157 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [113 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [158 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [152 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [200 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [114 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer1.org2.example.com | [153 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [159 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [115 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [088 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]Received message COMPLETED from shim -peer1.org1.example.com | [0a5 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED -peer0.org2.example.com | [0d0 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [089 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0a6 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [15a 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [201 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [08a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8-6494-457a-9ea4-3856d59343c6]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0a7 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0d1 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [15b 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [202 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [08b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7b26bdd8-6494-457a-9ea4-3856d59343c6 -peer1.org1.example.com | [0a8 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [08c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [08d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [15c 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [203 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [0a9 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [08e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=453f4da5-7023-4559-ab55-6acd3520e38a,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer0.org2.example.com | [0d2 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [0aa 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed +peer0.org2.example.com | [204 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [15d 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [08f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org1.example.com | [0ab 12-19 06:47:34.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [0d3 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | [090 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [0ac 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [154 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [0ad 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3aa1ef0c]Move state message READY -peer0.org1.example.com | [091 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [0d4 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [0ae 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3aa1ef0c]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org2.example.com | [155 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock -peer0.org1.example.com | [092 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org1.example.com | [0af 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3aa1ef0c]Entered state ready -peer1.org2.example.com | [156 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 -peer0.org1.example.com | [093 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [0b0 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3aa1ef0c-b548-4c82-bc9a-d8da155d07cd -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org2.example.com | [157 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) -peer0.org1.example.com | [094 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer1.org1.example.com | [0b1 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3aa1ef0c]sending state message READY -peer1.org2.example.com | [158 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.5 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0b2 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3aa1ef0c]Received message READY from shim -peer1.org2.example.com | [15a 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [0b3 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3aa1ef0c]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [08a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [159 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 -peer1.org1.example.com | [0b4 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [0d5 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock -peer1.org1.example.com | [0b5 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [15b 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 -peer1.org1.example.com | [0b6 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [0d6 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [0b7 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [15d 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [0b8 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3aa1ef0c]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [0b9 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0d7 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 -peer1.org2.example.com | [15c 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [0ba 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3aa1ef0c]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [0d8 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [15e 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0bb 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3aa1ef0c]Move state message INIT -peer0.org1.example.com | [095 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock -peer0.org2.example.com | [0d9 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 -peer1.org1.example.com | [0bc 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3aa1ef0c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [15f 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [0bd 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [096 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock -peer1.org2.example.com | [160 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [0db 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0be 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3aa1ef0c]sending state message INIT -peer1.org2.example.com | [161 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [097 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 -peer0.org2.example.com | [0da 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 -peer1.org1.example.com | [0bf 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3aa1ef0c]Received message INIT from shim -peer1.org1.example.com | [0c0 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3aa1ef0c]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org2.example.com | [162 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 -peer0.org2.example.com | [0dc 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [098 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) -peer1.org1.example.com | [0c1 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [163 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [0c2 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3aa1ef0c]Received INIT, initializing chaincode -peer0.org2.example.com | [0dd 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [099 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org2.example.com | [164 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [0c3 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [09a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [0de 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org1.example.com | [0c4 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3aa1ef0c]Init get response status: 200 -peer1.org2.example.com | [165 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [09b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org2.example.com | [0df 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0c5 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3aa1ef0c]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0c6 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3aa1ef0c]Move state message COMPLETED -peer0.org1.example.com | [09d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org2.example.com | [0e0 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [166 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0c7 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3aa1ef0c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [09c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0c8 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3aa1ef0c]send state message COMPLETED -peer0.org2.example.com | [0e1 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [167 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed -peer1.org1.example.com | [0c9 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3aa1ef0c]Received message COMPLETED from shim -peer0.org2.example.com | [0e2 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [08b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [0ca 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3aa1ef0c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [09e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [169 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [08c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [0e3 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 -peer1.org1.example.com | [0cb 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3aa1ef0c-b548-4c82-bc9a-d8da155d07cd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [09f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [08d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [0cc 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3aa1ef0c-b548-4c82-bc9a-d8da155d07cd -peer0.org2.example.com | [0e4 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED -peer1.org2.example.com | [16a 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0a0 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [0cd 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [0e5 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [08e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [0ce 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [168 12-19 06:47:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [0a1 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [0cf 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=1d73cfa1-8e81-4713-aaf3-cd78ab2c0fe0,syscc=true,proposal=0x0,canname=escc:1.0.5 -orderer.example.com | [08f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [16b 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5aa18f89]Move state message READY -peer0.org2.example.com | [0e6 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0d0 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched -peer0.org1.example.com | [0a2 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [16c 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5aa18f89]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0d1 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [0e7 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [0a3 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 -peer1.org1.example.com | [0d2 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [16d 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5aa18f89]Entered state ready -peer0.org1.example.com | [0a4 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED -peer0.org2.example.com | [0e9 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed -peer1.org1.example.com | [0d3 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [16e 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5aa18f89-2a04-427d-8d9f-ebc8d8b20d03 -peer1.org1.example.com | [0d4 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | [0ea 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [0a5 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [16f 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5aa18f89]sending state message READY -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [0e8 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [0d5 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [0a6 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [170 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5aa18f89]Received message READY from shim -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [0a7 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [0eb 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [172 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5aa18f89]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [171 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [0a8 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0ec 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [85e99f46]Move state message READY -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [173 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [0ed 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [85e99f46]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -peer1.org2.example.com | [174 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [0ee 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [85e99f46]Entered state ready -peer0.org1.example.com | [0aa 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [0d6 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock -peer1.org2.example.com | [175 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [0a9 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [0ef 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:85e99f46-a222-4e20-8855-3abdb8c98f24 -peer1.org1.example.com | [0d7 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer0.org1.example.com | [0ab 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [0d8 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 -peer1.org2.example.com | [176 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5aa18f89]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0f0 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [85e99f46]sending state message READY -peer1.org1.example.com | [0d9 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -peer0.org1.example.com | [0ac 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]Move state message READY -peer0.org2.example.com | [0f1 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [85e99f46]Received message READY from shim -peer1.org2.example.com | [177 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [0da 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer0.org1.example.com | [0ad 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0f2 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [85e99f46]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [178 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5aa18f89]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [0db 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [0ae 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [453f4da5]Entered state ready -orderer.example.com | XXreRTw6jXg= -peer0.org2.example.com | [0f3 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0dc 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [179 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5aa18f89]Move state message INIT -peer0.org2.example.com | [0f4 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [0dd 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 -peer0.org2.example.com | [0f5 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [17a 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5aa18f89]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [090 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0af 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:453f4da5-7023-4559-ab55-6acd3520e38a -peer1.org1.example.com | [0de 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [17b 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0b0 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]sending state message READY -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [0f6 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org1.example.com | [0df 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 -peer1.org2.example.com | [17c 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5aa18f89]sending state message INIT -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [0b1 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Received message READY from shim -peer0.org2.example.com | [0f7 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [85e99f46]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [17d 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5aa18f89]Received message INIT from shim -peer1.org1.example.com | [0e0 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [0f8 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [0e1 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0b2 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [453f4da5]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [17e 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5aa18f89]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0f9 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [85e99f46]sendExecuteMsg trigger event INIT -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org1.example.com | [0e2 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0fa 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [85e99f46]Move state message INIT -peer0.org1.example.com | [0b3 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [17f 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [0b4 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [0e3 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [0fb 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [85e99f46]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [180 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5aa18f89]Received INIT, initializing chaincode -peer1.org1.example.com | [0e4 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [0fc 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0b5 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [181 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [0fd 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [85e99f46]sending state message INIT -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org1.example.com | [0e5 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED -peer0.org1.example.com | [0b6 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [182 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org2.example.com | [0fe 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [85e99f46]Received message INIT from shim -peer1.org1.example.com | [0e6 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [0b7 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [453f4da5]Inside sendExecuteMessage. Message INIT -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | [183 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5aa18f89]Init get response status: 200 -peer1.org1.example.com | [0e7 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0ff 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [85e99f46]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0b8 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer1.org2.example.com | [184 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5aa18f89]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0e8 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [100 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer1.org1.example.com | [0e9 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [0b9 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [453f4da5]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [185 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5aa18f89]Move state message COMPLETED -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer1.org1.example.com | [0ea 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed -peer0.org2.example.com | [101 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [85e99f46]Received INIT, initializing chaincode -peer1.org2.example.com | [186 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5aa18f89]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0ba 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]Move state message INIT -peer1.org1.example.com | [0eb 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [102 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [187 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5aa18f89]send state message COMPLETED -orderer.example.com | [091 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0bb 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [0ec 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [103 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [85e99f46]Init get response status: 200 -peer0.org1.example.com | [0bc 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [188 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5aa18f89]Received message COMPLETED from shim -peer1.org1.example.com | [0ed 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d73cfa1]Move state message READY -peer0.org2.example.com | [104 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [85e99f46]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0bd 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]sending state message INIT -peer1.org1.example.com | [0ee 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1d73cfa1]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [105 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [85e99f46]Move state message COMPLETED -peer1.org2.example.com | [189 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5aa18f89]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0be 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Received message INIT from shim -peer0.org2.example.com | [106 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [85e99f46]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0ef 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1d73cfa1]Entered state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [107 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [85e99f46]send state message COMPLETED -peer0.org1.example.com | [0bf 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [453f4da5]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0f0 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1d73cfa1-8e81-4713-aaf3-cd78ab2c0fe0 -peer0.org2.example.com | [108 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [85e99f46]Received message COMPLETED from shim -peer1.org2.example.com | [18a 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5aa18f89-2a04-427d-8d9f-ebc8d8b20d03]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [109 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [85e99f46]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0f1 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d73cfa1]sending state message READY -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org2.example.com | [10a 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [85e99f46-a222-4e20-8855-3abdb8c98f24]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [18b 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5aa18f89-2a04-427d-8d9f-ebc8d8b20d03 -peer0.org1.example.com | [0c0 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [10b 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:85e99f46-a222-4e20-8855-3abdb8c98f24 -peer1.org1.example.com | [0f2 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d73cfa1]Received message READY from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [18c 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [10c 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0c1 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [453f4da5]Received INIT, initializing chaincode -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [10d 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [0f3 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d73cfa1]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [18d 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [0c2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [10e 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=a6c3bf0c-b074-4374-92f1-ad087ae99728,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org1.example.com | [0f4 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [10f 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched -peer0.org1.example.com | [0c3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Init get response status: 200 -peer1.org2.example.com | [18e 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org2.example.com | [110 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [0c4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [111 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer1.org2.example.com | [18f 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer1.org1.example.com | [0f5 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [0c5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Move state message COMPLETED -peer0.org2.example.com | [112 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org1.example.com | [0f6 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [0c6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [453f4da5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [190 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer0.org2.example.com | [113 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [0c7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]send state message COMPLETED -peer0.org2.example.com | [114 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [0f7 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org2.example.com | [191 12-19 06:47:33.19 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 | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [0c8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]Received message COMPLETED from shim -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [192 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [0f8 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1d73cfa1]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [0c9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [193 12-19 06:47:33.19 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 | [0ca 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5-7023-4559-ab55-6acd3520e38a]HandleMessage- COMPLETED. Notify -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [0f9 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0cb 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:453f4da5-7023-4559-ab55-6acd3520e38a -orderer.example.com | [092 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [115 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock -peer1.org2.example.com | [194 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org1.example.com | [0fa 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1d73cfa1]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [116 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock -orderer.example.com | [093 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [195 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org1.example.com | [0fb 12-19 06:47:34.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d73cfa1]Move state message INIT -peer0.org2.example.com | [117 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 -peer0.org1.example.com | [0cc 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [196 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org2.example.com | [118 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) -orderer.example.com | [094 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [0cd 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [0fc 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1d73cfa1]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [119 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 -orderer.example.com | [095 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [197 12-19 06:47:33.19 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 | [11a 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0fd 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0ce 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=1775a65f-2f0e-4a6b-be62-3db2d8897634,syscc=true,proposal=0x0,canname=escc:1.0.5 -peer0.org2.example.com | [11c 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [096 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [11b 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 -peer1.org2.example.com | [198 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer0.org1.example.com | [0cf 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched -peer1.org1.example.com | [0fe 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d73cfa1]sending state message INIT -peer0.org2.example.com | [11d 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [199 12-19 06:47:33.19 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 | [0d0 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [11e 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 -peer1.org1.example.com | [0ff 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d73cfa1]Received message INIT from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0d1 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [19a 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [100 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d73cfa1]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [11f 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0d2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [19b 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org1.example.com | [101 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [120 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer0.org1.example.com | [0d3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org2.example.com | [19c 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer0.org2.example.com | [121 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [102 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1d73cfa1]Received INIT, initializing chaincode -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [0d4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [103 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer1.org2.example.com | [19d 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer1.org1.example.com | [104 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d73cfa1]Init get response status: 200 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.5 -peer0.org2.example.com | [122 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer1.org1.example.com | [105 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d73cfa1]Init succeeded. Sending COMPLETED -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [19e 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer0.org2.example.com | [123 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [106 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d73cfa1]Move state message COMPLETED -peer0.org2.example.com | [124 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED -peer1.org2.example.com | [19f 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [125 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [1a0 12-19 06:47:33.19 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer0.org2.example.com | [126 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [1a1 12-19 06:47:33.19 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 | [107 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d73cfa1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [0d5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org2.example.com | [127 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0d6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock -peer0.org2.example.com | [128 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer0.org1.example.com | [0d7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 -peer1.org1.example.com | [108 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d73cfa1]send state message COMPLETED -peer1.org2.example.com | [1a2 12-19 06:47:33.19 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 | [12a 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [0d8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) -peer1.org1.example.com | [109 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d73cfa1]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [12b 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1a3 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [097 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0d9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 -peer1.org1.example.com | [10a 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1d73cfa1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [12c 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6c3bf0c]Move state message READY -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [1a4 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421504ab0 -peer0.org1.example.com | [0db 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [10b 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1d73cfa1-8e81-4713-aaf3-cd78ab2c0fe0]HandleMessage- COMPLETED. Notify -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [12d 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6c3bf0c]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1a5 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [0dc 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [10c 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1d73cfa1-8e81-4713-aaf3-cd78ab2c0fe0 -peer0.org2.example.com | [12e 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a6c3bf0c]Entered state ready -peer0.org1.example.com | [0dd 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org2.example.com | [1a6 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [129 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [10d 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [0da 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 -peer1.org2.example.com | [1a7 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer0.org2.example.com | [12f 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a6c3bf0c-b074-4374-92f1-ad087ae99728 -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer1.org2.example.com | [1a8 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [10e 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [130 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6c3bf0c]sending state message READY -peer0.org1.example.com | [0de 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org2.example.com | [1a9 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [10f 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=bd1b4864-dd33-4d6a-a950-439d955e4bfe,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org1.example.com | [0df 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [1aa 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420123db0, header 0xc421504b40 -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org2.example.com | [131 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6c3bf0c]Received message READY from shim -peer0.org1.example.com | [0e0 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [110 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched -peer0.org2.example.com | [132 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6c3bf0c]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1ab 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [0e1 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [111 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [133 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [1ac 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0d01f42057b400c8744f0a531dfb38ecaf9f90f499ee6046524abe7713945d50 -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer1.org1.example.com | [112 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [0e2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [134 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [1ad 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0d01f42057b400c8744f0a531dfb38ecaf9f90f499ee6046524abe7713945d50 channel id: -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org1.example.com | [0e3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 -peer1.org1.example.com | [113 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [135 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [1ae 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0d01f42057b400c8744f0a531dfb38ecaf9f90f499ee6046524abe7713945d50 channel id: version: 1.0.5 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0e4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED -peer1.org1.example.com | [114 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org2.example.com | [1af 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=0d01f42057b400c8744f0a531dfb38ecaf9f90f499ee6046524abe7713945d50,syscc=true,proposal=0xc420123db0,canname=cscc:1.0.5 -peer0.org2.example.com | [136 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [0e5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [098 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [115 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [1b0 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -peer0.org2.example.com | [137 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a6c3bf0c]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [1b1 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [0e6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [1b2 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [138 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [0e7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [1b3 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0d01f420]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [139 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a6c3bf0c]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [1b4 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [0e8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [1b5 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [13a 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6c3bf0c]Move state message INIT -peer1.org2.example.com | [1b6 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0d01f420]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [0e9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed -peer1.org2.example.com | [1b7 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d01f420]Move state message TRANSACTION -peer0.org2.example.com | [13b 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6c3bf0c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [1b8 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d01f420]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer1.org2.example.com | [1b9 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0ea 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [13c 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [116 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org2.example.com | [1ba 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d01f420]sending state message TRANSACTION -peer1.org2.example.com | [1bb 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d01f420]Received message TRANSACTION from shim -peer0.org2.example.com | [13d 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6c3bf0c]sending state message INIT -peer1.org1.example.com | [117 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock -peer0.org1.example.com | [0eb 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1bc 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d01f420]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [13e 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6c3bf0c]Received message INIT from shim -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer1.org2.example.com | [1bd 12-19 06:47:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0d01f420]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [0ec 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]Move state message READY -peer0.org2.example.com | [13f 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6c3bf0c]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [118 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer1.org2.example.com | [1be 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org1.example.com | [0ed 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [119 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) -peer0.org2.example.com | [140 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1bf 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [0ee 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1775a65f]Entered state ready -peer1.org1.example.com | [11a 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 -peer1.org2.example.com | [1c0 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org2.example.com | [141 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a6c3bf0c]Received INIT, initializing chaincode -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org2.example.com | [1c1 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org1.example.com | [0ef 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1775a65f-2f0e-4a6b-be62-3db2d8897634 -peer1.org1.example.com | [11b 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [142 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6c3bf0c]Init get response status: 200 -peer1.org2.example.com | [1c2 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [11c 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [1c3 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org2.example.com | [143 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6c3bf0c]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0f0 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]sending state message READY -orderer.example.com | [099 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org1.example.com | [11d 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 -peer1.org2.example.com | [1c4 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org2.example.com | [144 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6c3bf0c]Move state message COMPLETED -orderer.example.com | [09a 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [0f1 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Received message READY from shim -peer1.org1.example.com | [11e 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [1c5 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org1.example.com | [0f3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1775a65f]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [145 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6c3bf0c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [09b 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [11f 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 -peer0.org1.example.com | [0f2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [1c6 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [146 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6c3bf0c]send state message COMPLETED -peer1.org1.example.com | [120 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [09c 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [0f4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [147 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6c3bf0c]Received message COMPLETED from shim -peer1.org2.example.com | [1c7 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4214e57c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [121 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0f5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [148 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6c3bf0c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1c8 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org1.example.com | [122 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | [09d 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -peer0.org1.example.com | [0f6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer0.org2.example.com | [149 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6c3bf0c-b074-4374-92f1-ad087ae99728]HandleMessage- COMPLETED. Notify -orderer.example.com | [09e 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [123 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [1c9 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [0f7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1775a65f]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [14a 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a6c3bf0c-b074-4374-92f1-ad087ae99728 -peer1.org2.example.com | [1ca 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4201209c0), Data:(*common.BlockData)(0xc42036b280), Metadata:(*common.BlockMetadata)(0xc42036b2c0)}, doMVCCValidation=true -peer1.org1.example.com | [124 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 -peer0.org1.example.com | [0f8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [09f 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -peer0.org2.example.com | [14b 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [1cb 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [0f9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1775a65f]sendExecuteMsg trigger event INIT -orderer.example.com | [0a0 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [125 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED -orderer.example.com | [0a1 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -peer1.org1.example.com | [126 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [14c 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [0fa 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]Move state message INIT -orderer.example.com | [0a2 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [1cc 12-19 06:47:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org1.example.com | [127 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [14d 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=991a9692-79aa-401d-b122-f9a026394225,syscc=true,proposal=0x0,canname=qscc:1.0.5 -peer0.org1.example.com | [0fb 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [1cd 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -orderer.example.com | [0a3 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -peer1.org1.example.com | [128 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0fc 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [0a4 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11892 -peer0.org2.example.com | [14e 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched -peer1.org1.example.com | [129 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [0a5 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +peer0.org2.example.com | [205 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [15e 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [116 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +orderer.example.com | [099 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [154 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +orderer.example.com | [09a 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org1.example.com | [117 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +peer0.org2.example.com | [206 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [15f 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [155 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +orderer.example.com | [09b 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org2.example.com | [207 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [160 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [118 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +orderer.example.com | [09c 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [156 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer0.org1.example.com | [161 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [09d 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org2.example.com | [208 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [09e 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [157 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +peer1.org1.example.com | [119 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +orderer.example.com | [09f 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org2.example.com | [209 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [162 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 +orderer.example.com | [0a0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [11a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +peer1.org2.example.com | [158 01-12 22:56:37.47 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +peer0.org1.example.com | [163 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [20a 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [0a1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org1.example.com | [11b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [159 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [164 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [0a2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [20b 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [11c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [0a3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [165 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [0a4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [11d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +peer0.org2.example.com | [20c 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [0a5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [15a 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [166 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | [0a6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [11e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [20d 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [0a7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +orderer.example.com | [0a8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [15b 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +peer0.org2.example.com | [20e 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [167 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [11f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +orderer.example.com | [0a9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +peer1.org2.example.com | [15c 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [168 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed +orderer.example.com | [0aa 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [20f 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [120 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [0ab 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +peer1.org2.example.com | [15d 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +peer0.org2.example.com | [210 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [0ac 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [169 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [15e 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [0ad 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +peer0.org2.example.com | [211 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [121 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [16a 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [15f 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [212 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [0ae 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [16b 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]Move state message READY +peer1.org1.example.com | [122 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [213 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [160 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [16c 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [0af 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +peer1.org1.example.com | [123 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [16d 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c6f9e5bc]Entered state ready +peer0.org2.example.com | [214 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [161 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [124 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 +peer0.org1.example.com | [16e 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c6f9e5bc-1211-49ec-adda-a6a312bacf4a +peer0.org1.example.com | [16f 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]sending state message READY +orderer.example.com | [0b0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [162 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 +peer1.org1.example.com | [125 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +peer0.org2.example.com | [215 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [163 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [170 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Received message READY from shim +orderer.example.com | [0b1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +peer1.org2.example.com | [164 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [216 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [126 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [165 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [0b2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [171 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6f9e5bc]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [166 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [127 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [217 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [0b3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +peer0.org1.example.com | [172 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [167 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [128 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [218 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [168 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed +orderer.example.com | [0b4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer1.org1.example.com | [129 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [169 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [173 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | [0b5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +peer1.org1.example.com | [12a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed +peer1.org2.example.com | [16a 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [219 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [174 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [0b6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer1.org2.example.com | [16b 01-12 22:56:37.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cc397873]Move state message READY +peer1.org1.example.com | [12b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [21a 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [16c 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cc397873]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [0b7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +peer1.org1.example.com | [12c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [175 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org2.example.com | [16d 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [cc397873]Entered state ready +orderer.example.com | [0b8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer1.org1.example.com | [12d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6028d5c5]Move state message READY +peer0.org2.example.com | [21b 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [16e 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:cc397873-45e8-4000-bacf-3993c4a4e45a +peer0.org1.example.com | [176 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c6f9e5bc]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [16f 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cc397873]sending state message READY +peer1.org1.example.com | [12e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6028d5c5]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [0b9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +peer1.org2.example.com | [170 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc397873]Received message READY from shim +peer0.org2.example.com | [21c 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [177 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [172 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cc397873]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [12f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [6028d5c5]Entered state ready +peer1.org2.example.com | [171 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [21d 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [130 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:6028d5c5-d57c-483f-bfdc-c05f345f7354 +peer0.org1.example.com | [178 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c6f9e5bc]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [173 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [131 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6028d5c5]sending state message READY +peer0.org2.example.com | [21e 01-12 22:56:38.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [0ba 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer1.org2.example.com | [174 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [132 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6028d5c5]Received message READY from shim +peer0.org1.example.com | [179 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]Move state message INIT +peer1.org2.example.com | [175 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org1.example.com | [133 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6028d5c5]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [21f 01-12 22:56:38.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [176 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cc397873]Inside sendExecuteMessage. Message INIT +orderer.example.com | [0bb 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +peer1.org1.example.com | [134 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [17a 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [177 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [0bc 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer1.org1.example.com | [135 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [220 01-12 22:56:38.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [178 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cc397873]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [136 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [0bd 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +peer0.org1.example.com | [17b 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [179 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cc397873]Move state message INIT +peer1.org1.example.com | [137 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | [0be 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer1.org2.example.com | [17a 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cc397873]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [17c 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]sending state message INIT +peer0.org2.example.com | [221 01-12 22:56:38.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [138 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6028d5c5]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [17b 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [222 01-12 22:56:38.99 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [0bf 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer1.org1.example.com | [139 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [17d 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Received message INIT from shim +peer0.org2.example.com | [223 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [13a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6028d5c5]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [17c 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cc397873]sending state message INIT +orderer.example.com | [0c0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer0.org1.example.com | [17e 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6f9e5bc]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [13b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6028d5c5]Move state message INIT +peer1.org2.example.com | [17d 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc397873]Received message INIT from shim +orderer.example.com | [0c1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer1.org1.example.com | [13c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6028d5c5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [224 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [13d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [17e 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cc397873]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [0c2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [17f 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [13e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6028d5c5]sending state message INIT +peer0.org2.example.com | [225 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [0c3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [17f 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [180 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c6f9e5bc]Received INIT, initializing chaincode +peer1.org1.example.com | [13f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6028d5c5]Received message INIT from shim +orderer.example.com | [0c4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [226 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [140 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6028d5c5]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [180 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cc397873]Received INIT, initializing chaincode +peer0.org1.example.com | [181 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [141 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [0c5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org2.example.com | [181 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [142 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6028d5c5]Received INIT, initializing chaincode +peer0.org2.example.com | [227 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [182 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [143 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6028d5c5]Init get response status: 200 +orderer.example.com | [0c6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [228 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org2.example.com | [182 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [144 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6028d5c5]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [229 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [183 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Init get response status: 200 +orderer.example.com | [0c7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org1.example.com | [145 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6028d5c5]Move state message COMPLETED +peer1.org2.example.com | [183 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc397873]Init get response status: 200 +peer0.org2.example.com | [22a 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d156f9a4-b6d1-4b76-9ff4-9fdcd4c4e041] +peer1.org1.example.com | [146 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6028d5c5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [0c8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer1.org2.example.com | [184 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc397873]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [184 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [147 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6028d5c5]send state message COMPLETED +peer1.org2.example.com | [185 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc397873]Move state message COMPLETED +orderer.example.com | [0c9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org2.example.com | [22b 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=7189bd0b-72b0-4d97-9dde-1850862459a0,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer1.org1.example.com | [148 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6028d5c5]Received message COMPLETED from shim +peer0.org1.example.com | [185 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Move state message COMPLETED +peer1.org2.example.com | [186 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cc397873]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [0ca 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer1.org1.example.com | [149 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6028d5c5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [22c 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer1.org1.example.com | [14a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6028d5c5-d57c-483f-bfdc-c05f345f7354]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [186 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6f9e5bc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [187 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc397873]send state message COMPLETED +orderer.example.com | [0cb 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer1.org1.example.com | [14b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6028d5c5-d57c-483f-bfdc-c05f345f7354 +peer0.org2.example.com | [22d 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [188 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cc397873]Received message COMPLETED from shim +peer0.org1.example.com | [187 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]send state message COMPLETED +peer1.org1.example.com | [14c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [0cc 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation +peer0.org2.example.com | [22e 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org2.example.com | [189 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cc397873]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [14d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [188 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]Received message COMPLETED from shim +peer0.org2.example.com | [22f 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7189bd0b]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [14e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=eb35a465-5967-41cb-b87c-174dd1655abe,syscc=true,proposal=0x0,canname=qscc:1.0.5 +orderer.example.com | [0cd 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +peer1.org2.example.com | [18a 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cc397873-45e8-4000-bacf-3993c4a4e45a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [189 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [14f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched +peer0.org2.example.com | [230 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [18b 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cc397873-45e8-4000-bacf-3993c4a4e45a +peer0.org1.example.com | [18a 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc-1211-49ec-adda-a6a312bacf4a]HandleMessage- COMPLETED. Notify +orderer.example.com | [0ce 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [150 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [231 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7189bd0b]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [18c 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [0cf 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel +peer0.org1.example.com | [18b 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c6f9e5bc-1211-49ec-adda-a6a312bacf4a +peer1.org1.example.com | [151 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [18d 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +orderer.example.com | [0d0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation +peer0.org2.example.com | [232 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7189bd0b]Move state message INIT +peer0.org1.example.com | [18c 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [18d 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org2.example.com | [18e 01-12 22:56:37.49 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer1.org1.example.com | [152 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [233 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7189bd0b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [0d1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +peer0.org1.example.com | [18e 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer1.org2.example.com | [18f 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +orderer.example.com | [0d2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation +peer1.org1.example.com | [153 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org2.example.com | [234 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [18f 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +orderer.example.com | [0d3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +peer1.org1.example.com | [154 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [190 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +peer0.org2.example.com | [235 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7189bd0b]sending state message INIT +peer0.org1.example.com | [190 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +orderer.example.com | [0d4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 +peer1.org2.example.com | [191 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer0.org2.example.com | [236 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7189bd0b]Received message INIT from shim +orderer.example.com | [0d5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [192 01-12 22:56:37.50 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 | [191 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer0.org2.example.com | [237 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7189bd0b]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [193 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +orderer.example.com | [0d6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation +peer0.org1.example.com | [192 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +orderer.example.com | [0d7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +peer0.org2.example.com | [238 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [194 01-12 22:56:37.50 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 | [193 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +orderer.example.com | [0d8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation +peer1.org2.example.com | [195 01-12 22:56:37.50 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 | 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 | [239 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7189bd0b]Received INIT, initializing chaincode +peer1.org1.example.com | [155 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +orderer.example.com | [0d9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +peer0.org1.example.com | [194 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer1.org2.example.com | [196 01-12 22:56:37.50 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 | [23a 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [156 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +orderer.example.com | [0da 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +peer1.org2.example.com | [197 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org2.example.com | [23b 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7189bd0b]Init get response status: 200 +peer0.org1.example.com | [195 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org2.example.com | [198 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +orderer.example.com | [0db 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [23c 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7189bd0b]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [157 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +peer1.org2.example.com | [199 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer0.org1.example.com | [196 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +orderer.example.com | [0dc 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [23d 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7189bd0b]Move state message COMPLETED +peer1.org2.example.com | [19a 01-12 22:56:37.50 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 | [158 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +orderer.example.com | [0dd 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [197 01-12 22:56:37.74 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 | [23e 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7189bd0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [19b 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +orderer.example.com | [0de 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [198 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org1.example.com | [159 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +peer0.org2.example.com | [23f 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7189bd0b]send state message COMPLETED +orderer.example.com | [0df 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +peer1.org2.example.com | [19c 01-12 22:56:37.50 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org1.example.com | [199 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer1.org1.example.com | [15a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | [0e0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [19d 01-12 22:56:37.50 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 | [19a 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer0.org2.example.com | [240 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7189bd0b]Received message COMPLETED from shim +peer1.org1.example.com | [15b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +orderer.example.com | [0e1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [19e 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer0.org1.example.com | [19b 01-12 22:56:37.74 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 | [15c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | [0e2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [19c 01-12 22:56:37.74 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 | [241 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7189bd0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [19f 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +orderer.example.com | [0e3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [15d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +peer0.org2.example.com | [242 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7189bd0b-72b0-4d97-9dde-1850862459a0]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [1a0 01-12 22:56:37.51 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 | [19d 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +orderer.example.com | [0e4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +peer1.org1.example.com | [15e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [243 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7189bd0b-72b0-4d97-9dde-1850862459a0 +peer1.org2.example.com | [1a1 01-12 22:56:37.51 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 | [19e 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +orderer.example.com | [0e5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [244 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [15f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [1a2 01-12 22:56:37.51 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 | [19f 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer0.org2.example.com | [245 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [1a3 01-12 22:56:39.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [160 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [0e6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +peer0.org1.example.com | [1a0 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer0.org2.example.com | [246 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d156f9a4-b6d1-4b76-9ff4-9fdcd4c4e041] +peer1.org2.example.com | [1a4 01-12 22:56:39.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42034b560 +orderer.example.com | [0e7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [1a1 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer1.org1.example.com | [161 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [247 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [0e8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +peer1.org2.example.com | [1a5 01-12 22:56:39.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1a2 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +peer1.org1.example.com | [162 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | [0e9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org2.example.com | [248 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e9e6925c-b406-458d-a6d7-069ef1578774] +peer1.org1.example.com | [163 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 +peer0.org1.example.com | [1a3 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [1a6 01-12 22:56:39.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [249 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=30f28d19-a0d3-438d-a6c2-5ec6e302e4f2,syscc=true,proposal=0x0,canname=lscc:1.0.5 +orderer.example.com | [0ea 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +peer1.org1.example.com | [164 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +peer0.org1.example.com | [1a4 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421523050 +peer1.org2.example.com | [1a7 01-12 22:56:39.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org2.example.com | [24a 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org1.example.com | [1a5 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [165 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | [0eb 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo +peer1.org2.example.com | [1a8 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [167 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed +peer0.org2.example.com | [24b 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1a6 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [1a9 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [0ec 01-12 22:56:34.67 UTC] [main] main -> INFO Beginning to serve requests +peer1.org1.example.com | [168 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [24c 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | [0ed 01-12 22:56:37.78 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [1a7 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer1.org2.example.com | [1aa 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42028ec80, header 0xc42034b5f0 +peer0.org2.example.com | [24d 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [30f28d19]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [169 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [0ee 01-12 22:56:37.78 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +peer0.org1.example.com | [1a8 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [1ab 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org2.example.com | [24e 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [0ef 01-12 22:56:37.78 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +peer0.org1.example.com | [1a9 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [1ac 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8c8457383a5b87175038e8022bb553b48fff178c0c019a67fcd66f219c3de7a0 +peer1.org1.example.com | [16a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb35a465]Move state message READY +peer0.org2.example.com | [24f 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [30f28d19]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [1aa 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420235360, header 0xc4215230e0 +peer1.org2.example.com | [1ad 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8c8457383a5b87175038e8022bb553b48fff178c0c019a67fcd66f219c3de7a0 channel id: +peer1.org1.example.com | [16b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb35a465]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | [0f0 01-12 22:56:37.79 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org2.example.com | [250 01-12 22:56:39.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30f28d19]Move state message INIT +peer0.org1.example.com | [1ab 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org2.example.com | [1ae 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8c8457383a5b87175038e8022bb553b48fff178c0c019a67fcd66f219c3de7a0 channel id: version: 1.0.5 +peer1.org1.example.com | [16c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [eb35a465]Entered state ready +peer1.org2.example.com | [1af 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=8c8457383a5b87175038e8022bb553b48fff178c0c019a67fcd66f219c3de7a0,syscc=true,proposal=0xc42028ec80,canname=cscc:1.0.5 +orderer.example.com | [0f1 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +peer1.org1.example.com | [16d 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:eb35a465-5967-41cb-b87c-174dd1655abe +peer0.org2.example.com | [251 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30f28d19]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [0f2 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +peer1.org2.example.com | [1b0 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer1.org1.example.com | [16e 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb35a465]sending state message READY +peer0.org1.example.com | [1ac 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca +peer1.org2.example.com | [1b1 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [0f3 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel +peer1.org1.example.com | [16f 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [1ad 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca channel id: +peer1.org2.example.com | [1b2 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org2.example.com | [252 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [170 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | [0f4 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [1b3 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8c845738]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [1ae 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca channel id: version: 1.0.5 +peer1.org1.example.com | [171 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [1b4 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [0f5 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [253 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30f28d19]sending state message INIT +peer0.org1.example.com | [1af 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca,syscc=true,proposal=0xc420235360,canname=cscc:1.0.5 +peer1.org1.example.com | [172 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org2.example.com | [1b5 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1b0 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +orderer.example.com | [0f6 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [173 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [eb35a465]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [1b1 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [1b6 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8c845738]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [0f7 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [1b2 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org2.example.com | [254 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30f28d19]Received message INIT from shim +peer1.org1.example.com | [174 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [1b7 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8c845738]Move state message TRANSACTION +peer0.org1.example.com | [1b3 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9015c99b]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [0f8 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A5FAE4D20522...07526561646572731A0641646D696E73 +peer0.org2.example.com | [255 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30f28d19]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1b4 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [175 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [eb35a465]sendExecuteMsg trigger event INIT +orderer.example.com | [0f9 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 2512206BC06D343D4FBBE97510E481C9D53E54584200435F555C643BB30060F4 +peer1.org2.example.com | [1b8 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8c845738]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [1b5 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [256 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [166 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | [0fa 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [1b6 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9015c99b]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [1b9 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1b7 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9015c99b]Move state message TRANSACTION +orderer.example.com | [0fb 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [176 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [257 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [30f28d19]Received INIT, initializing chaincode +peer0.org1.example.com | [1b8 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9015c99b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [1ba 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8c845738]sending state message TRANSACTION +peer1.org1.example.com | [177 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [1b9 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [0fc 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [1ba 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9015c99b]sending state message TRANSACTION +peer0.org2.example.com | [258 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30f28d19]Init get response status: 200 +orderer.example.com | [0fd 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [179 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb35a465]Move state message INIT +peer0.org1.example.com | [1bb 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]Received message TRANSACTION from shim +peer1.org2.example.com | [1bb 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c845738]Received message TRANSACTION from shim +peer0.org1.example.com | [1bc 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9015c99b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [259 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30f28d19]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [17a 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb35a465]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [1bd 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9015c99b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [0fe 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [1bc 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8c845738]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1be 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org1.example.com | [17b 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [0ff 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [1bf 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org2.example.com | [1bd 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8c845738]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [17c 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb35a465]sending state message INIT +peer0.org2.example.com | [25a 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30f28d19]Move state message COMPLETED +orderer.example.com | [100 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [1be 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [1c0 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer1.org1.example.com | [178 01-12 22:56:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb35a465]Received message READY from shim +orderer.example.com | [101 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [1bf 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [1c1 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer0.org2.example.com | [25b 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30f28d19]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [17d 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eb35a465]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | [102 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [1c0 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [1c2 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | [17e 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb35a465]Received message INIT from shim +peer0.org2.example.com | [25c 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30f28d19]send state message COMPLETED +peer1.org2.example.com | [1c1 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org1.example.com | [17f 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eb35a465]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1c3 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [103 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [25d 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30f28d19]Received message COMPLETED from shim +peer1.org2.example.com | [1c2 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer0.org1.example.com | [1c4 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [180 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [25e 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30f28d19]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [1c3 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [104 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [181 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [eb35a465]Received INIT, initializing chaincode +orderer.example.com | [105 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1c4 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [182 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org1.example.com | [1c5 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org2.example.com | [25f 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30f28d19-a0d3-438d-a6c2-5ec6e302e4f2]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [1c5 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [183 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1c6 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | [106 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1c6 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [184 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb35a465]Init get response status: 200 +peer0.org2.example.com | [260 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:30f28d19-a0d3-438d-a6c2-5ec6e302e4f2 +orderer.example.com | [107 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [1c7 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4216880c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org2.example.com | [1c7 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4215b8480)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [108 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [109 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [10a 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [1c8 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +orderer.example.com | [10b 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [261 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [185 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb35a465]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [1c8 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org2.example.com | [1c9 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [10c 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [186 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb35a465]Move state message COMPLETED +orderer.example.com | [10d 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [1ca 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420169700), Data:(*common.BlockData)(0xc42036f4e0), Metadata:(*common.BlockMetadata)(0xc42036f520)}, doMVCCValidation=true +peer0.org1.example.com | [1c9 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [262 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | [10e 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [187 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [eb35a465]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [10f 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [110 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [1cb 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [1ca 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42163c100), Data:(*common.BlockData)(0xc4216090a0), Metadata:(*common.BlockMetadata)(0xc4216090e0)}, doMVCCValidation=true +peer0.org2.example.com | [263 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e9e6925c-b406-458d-a6d7-069ef1578774] +peer1.org1.example.com | [188 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [eb35a465]send state message COMPLETED +orderer.example.com | [111 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [1cc 01-12 22:56:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [1cb 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [189 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [eb35a465]Received message COMPLETED from shim +orderer.example.com | [112 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [1cd 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +peer0.org1.example.com | [1cc 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org1.example.com | [18a 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb35a465]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [113 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [1cd 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +peer1.org1.example.com | [18b 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [eb35a465-5967-41cb-b87c-174dd1655abe]HandleMessage- COMPLETED. Notify +orderer.example.com | [114 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [264 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11883 +peer1.org1.example.com | [18c 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:eb35a465-5967-41cb-b87c-174dd1655abe +peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11883 +orderer.example.com | [115 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [265 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c6c38d76-838b-4ab3-80eb-7f3982b3d07d] +peer0.org1.example.com | ] +orderer.example.com | [116 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers peer1.org2.example.com | ] -peer0.org1.example.com | [0fd 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]sending state message INIT -peer0.org2.example.com | [14f 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [1ce 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx ID: [] to index -peer0.org2.example.com | [150 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [0a6 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [0fe 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Received message INIT from shim -peer1.org1.example.com | [12a 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed -peer1.org2.example.com | [1cf 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [0a7 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -peer0.org2.example.com | [151 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer0.org2.example.com) -peer1.org1.example.com | [12b 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [0ff 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1775a65f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1d0 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11936], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [100 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [12c 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [152 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org1.example.com | [101 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1775a65f]Received INIT, initializing chaincode -orderer.example.com | [0a8 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer1.org1.example.com | [12d 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bd1b4864]Move state message READY -peer1.org2.example.com | [1d1 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer0.org1.example.com | [102 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | [0a9 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -peer0.org1.example.com | [103 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Init get response status: 200 -peer1.org1.example.com | [12e 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bd1b4864]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1d2 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [153 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [104 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Init succeeded. Sending COMPLETED -orderer.example.com | [0aa 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer1.org2.example.com | [1d3 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [105 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Move state message COMPLETED -peer1.org1.example.com | [12f 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bd1b4864]Entered state ready -peer0.org1.example.com | [106 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1775a65f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 -orderer.example.com | [0ab 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -peer0.org1.example.com | [107 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]send state message COMPLETED -peer1.org1.example.com | [130 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:bd1b4864-dd33-4d6a-a950-439d955e4bfe -peer1.org2.example.com | [1d4 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0ac 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [108 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]Received message COMPLETED from shim -peer1.org1.example.com | [131 12-19 06:47:34.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bd1b4864]sending state message READY -peer1.org2.example.com | [1d5 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org1.example.com | [109 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [132 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bd1b4864]Received message READY from shim -peer0.org1.example.com | [10a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f-2f0e-4a6b-be62-3db2d8897634]HandleMessage- COMPLETED. Notify -orderer.example.com | [0ad 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [10b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1775a65f-2f0e-4a6b-be62-3db2d8897634 -peer1.org2.example.com | [1d6 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [133 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bd1b4864]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [0ae 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [10c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [10d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | 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 | [134 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [1d7 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org1.example.com | [10e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=7db4949c-c70a-44c0-a6da-70ccd92e973e,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | [0af 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -peer1.org1.example.com | [135 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [10f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched -peer0.org2.example.com | [154 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock -orderer.example.com | [0b0 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer1.org1.example.com | [136 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [110 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [1d8 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [111 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | [0b1 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -peer0.org2.example.com | [155 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock -peer1.org1.example.com | [137 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [112 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [1d9 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [156 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 -peer0.org1.example.com | [113 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | [138 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bd1b4864]Inside sendExecuteMessage. Message INIT -orderer.example.com | [0b2 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [114 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [1da 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [157 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) -peer1.org1.example.com | [139 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [0b3 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.5 -peer1.org1.example.com | [13a 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bd1b4864]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [158 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 -orderer.example.com | [0b4 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [1db 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [0b5 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [159 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [13b 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bd1b4864]Move state message INIT -peer1.org2.example.com | [1dc 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [0b6 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [1dd 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [15b 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [13c 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bd1b4864]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [0b7 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [1de 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [115 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock -peer1.org1.example.com | [13d 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [15a 12-19 06:47:32.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 -orderer.example.com | [0b8 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [116 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock -peer1.org1.example.com | [13e 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bd1b4864]sending state message INIT -orderer.example.com | [0b9 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [117 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 -peer1.org1.example.com | [13f 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bd1b4864]Received message INIT from shim -orderer.example.com | [0ba 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [1df 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [118 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) -peer0.org2.example.com | [15c 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [140 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bd1b4864]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0bb 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [11a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 -orderer.example.com | [0bc 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [141 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1e0 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [119 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 -peer0.org2.example.com | [15d 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 -orderer.example.com | [0bd 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [142 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bd1b4864]Received INIT, initializing chaincode -peer1.org2.example.com | [1e1 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [15e 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0be 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [143 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bd1b4864]Init get response status: 200 -peer0.org1.example.com | [11b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [15f 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [0bf 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel -peer1.org1.example.com | [144 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bd1b4864]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1e2 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [160 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [11d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 -orderer.example.com | [0c0 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation -peer1.org1.example.com | [145 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bd1b4864]Move state message COMPLETED -peer0.org2.example.com | [161 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [0c1 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -peer1.org2.example.com | [1e3 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [11e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0c2 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation -peer1.org1.example.com | [146 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bd1b4864]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [1e4 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [162 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 -peer0.org1.example.com | [11c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | [0c3 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -peer1.org1.example.com | [147 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [163 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED -peer1.org2.example.com | [1e5 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [11f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [148 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [0c4 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation -peer0.org2.example.com | [164 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [149 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172CF060A20D4EF6CC664C375D36C...9FE91C810D2E636C436CCE1CFF4FFBD2 -orderer.example.com | [0c5 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -peer1.org2.example.com | [1e6 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [14a 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 8D72FF7B1D48188AD7B861D27B31455AAFC2B8A13C783DEF43E90407769F705E -orderer.example.com | [0c6 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation -peer0.org1.example.com | [120 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [165 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [14b 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 852 bytes, Signature: 71 bytes to 172.21.0.4:7051 -orderer.example.com | [0c7 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -peer1.org2.example.com | [1e7 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [14c 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bd1b4864]send state message COMPLETED -peer0.org2.example.com | [167 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [0c8 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation -peer1.org1.example.com | [14d 12-19 06:47:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bd1b4864]Received message COMPLETED from shim -peer0.org1.example.com | [121 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [14f 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bd1b4864]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [168 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [0c9 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -peer1.org2.example.com | [1e8 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [150 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bd1b4864-dd33-4d6a-a950-439d955e4bfe]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [122 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [166 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed -orderer.example.com | [0ca 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation -peer1.org2.example.com | [1e9 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [151 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bd1b4864-dd33-4d6a-a950-439d955e4bfe -peer1.org1.example.com | [14e 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\217R\252\014\223b\264\257\312m\260\017}\213\251\306\022*\213\r3Ok\256\354\032D\227<\200x\000" identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/\n5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag\n6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g\nhHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga\nPjNMGC1fMR/dFfg4xQ==\n-----END -----\n" tls_cert_hash:"\304\265\230\337\2144 \031\2776(h\335\347\310k\036\014\022\200\210\345\017\323\260p?X\317\272c\370" from 172.21.0.4:7051 -peer0.org2.example.com | [169 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [0cb 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -peer1.org2.example.com | [1ea 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [123 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 -peer1.org1.example.com | [152 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [16a 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1eb 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [0cc 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [153 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [16b 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [991a9692]Move state message READY -peer1.org2.example.com | [1ec 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [124 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED -orderer.example.com | [0cd 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer1.org1.example.com | [154 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [16c 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [991a9692]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1ed 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [125 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [16d 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [991a9692]Entered state ready -peer1.org1.example.com | [155 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -orderer.example.com | [0ce 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [126 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [16e 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:991a9692-79aa-401d-b122-f9a026394225 -peer1.org1.example.com | [156 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=ba73cac7-0972-45a8-a45a-7e6850a37ec4,syscc=true,proposal=0x0,canname=qscc:1.0.5 -peer1.org2.example.com | [1ee 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [0cf 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer1.org1.example.com | [158 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched -peer0.org2.example.com | [16f 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [991a9692]sending state message READY -peer1.org2.example.com | [1ef 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [157 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [128 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [0d0 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer1.org2.example.com | [1f0 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [170 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [991a9692]Received message READY from shim -peer0.org1.example.com | [127 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed -peer1.org2.example.com | [1f1 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [171 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [991a9692]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [0d1 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [1f2 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [129 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [172 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [0d2 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [12a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [1f3 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -orderer.example.com | [0d3 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org2.example.com | [173 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [12b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1f4 12-19 06:47:35.58 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [0d4 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [12c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]Move state message READY -peer1.org2.example.com | [1f5 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [0d5 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org2.example.com | [174 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [12d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1f6 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [175 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -peer0.org1.example.com | [12e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7db4949c]Entered state ready -orderer.example.com | [0d6 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer0.org2.example.com | [176 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [991a9692]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer0.org1.example.com | [12f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7db4949c-c70a-44c0-a6da-70ccd92e973e -orderer.example.com | [0d7 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer1.org2.example.com | [1f7 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [177 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -orderer.example.com | [0d8 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [130 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]sending state message READY -peer1.org2.example.com | [1f8 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [131 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Received message READY from shim -orderer.example.com | [0d9 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer1.org2.example.com | [1f9 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [132 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [178 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [991a9692]sendExecuteMsg trigger event INIT -peer1.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -orderer.example.com | [0da 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [1fa 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [133 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7db4949c]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [179 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [991a9692]Move state message INIT -peer1.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer1.org2.example.com | [1fb 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [17a 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [991a9692]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [134 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [0db 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [17b 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1fc 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [0dc 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -peer0.org1.example.com | [135 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [17c 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [991a9692]sending state message INIT -peer1.org1.example.com | [159 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | [0dd 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [136 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [1fd 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [17d 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [991a9692]Received message INIT from shim -peer1.org2.example.com | [1fe 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [0de 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -peer1.org1.example.com | [15a 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [137 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7db4949c]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [17e 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [991a9692]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0df 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [15b 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [17f 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [0e0 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [15c 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | [138 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [180 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [991a9692]Received INIT, initializing chaincode -peer1.org2.example.com | [1ff 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [139 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7db4949c]sendExecuteMsg trigger event INIT -orderer.example.com | [0e1 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [15d 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [200 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [181 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [13a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]Move state message INIT -orderer.example.com | [0e2 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 -peer1.org2.example.com | [201 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [182 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [0e3 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [13b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [202 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0e4 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -peer0.org2.example.com | [183 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [991a9692]Init get response status: 200 -peer0.org1.example.com | [13c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [203 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0e5 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [13d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]sending state message INIT -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [184 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [991a9692]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [13e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Received message INIT from shim -peer1.org2.example.com | [204 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [0e6 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [13f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7db4949c]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [185 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [991a9692]Move state message COMPLETED -orderer.example.com | [0e7 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer1.org2.example.com | [205 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [15e 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock -peer0.org1.example.com | [140 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [206 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [186 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [991a9692]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [15f 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock -orderer.example.com | [0e8 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -peer0.org1.example.com | [141 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7db4949c]Received INIT, initializing chaincode -peer1.org2.example.com | [207 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [161 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 -peer0.org2.example.com | [187 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [991a9692]send state message COMPLETED -peer0.org1.example.com | [142 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Init get response status: 200 -peer1.org2.example.com | [208 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [160 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [0e9 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer0.org2.example.com | [188 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [991a9692]Received message COMPLETED from shim -peer0.org1.example.com | [143 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [209 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [162 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) -peer0.org1.example.com | [144 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Move state message COMPLETED -orderer.example.com | [0ea 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -peer0.org2.example.com | [189 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [991a9692]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [20a 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [163 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [18a 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [991a9692-79aa-401d-b122-f9a026394225]HandleMessage- COMPLETED. Notify -orderer.example.com | [0eb 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo -peer0.org1.example.com | [145 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7db4949c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [164 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 -peer1.org2.example.com | [20b 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [18b 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:991a9692-79aa-401d-b122-f9a026394225 -peer1.org1.example.com | [165 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [146 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]send state message COMPLETED -peer0.org2.example.com | [18c 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [0ec 12-19 06:47:31.71 UTC] [main] main -> INFO Beginning to serve requests -peer1.org2.example.com | [20c 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [147 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]Received message COMPLETED from shim -peer0.org2.example.com | [18d 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [166 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [0ed 12-19 06:47:34.50 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer1.org2.example.com | [20d 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [18e 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org1.example.com | [148 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [0ee 12-19 06:47:34.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -peer1.org1.example.com | [167 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 -peer0.org2.example.com | [18f 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer1.org2.example.com | [20e 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [149 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c-c70a-44c0-a6da-70ccd92e973e]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [168 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [190 12-19 06:47:32.94 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 | [0ef 12-19 06:47:34.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -peer0.org1.example.com | [14a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7db4949c-c70a-44c0-a6da-70ccd92e973e -peer0.org2.example.com | [191 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer1.org1.example.com | [169 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [20f 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [192 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -orderer.example.com | [0f0 12-19 06:47:34.51 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [14b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [16a 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 -peer0.org2.example.com | [193 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer1.org2.example.com | [210 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [16b 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [14c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -orderer.example.com | [0f1 12-19 06:47:34.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -peer0.org2.example.com | [194 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer0.org1.example.com | [14d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=4184210c-4f0d-40ee-8413-0f1fdf15cf34,syscc=true,proposal=0x0,canname=qscc:1.0.5 -peer1.org1.example.com | [16c 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0f2 12-19 06:47:34.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -peer0.org2.example.com | [195 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer1.org1.example.com | [16d 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [211 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [196 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -orderer.example.com | [0f3 12-19 06:47:34.51 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel -peer0.org1.example.com | [14e 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched -peer0.org2.example.com | [197 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org2.example.com | [212 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [16f 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [14f 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | [0f4 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [198 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer1.org1.example.com | [16e 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [213 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [199 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -orderer.example.com | [0f5 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [150 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [19a 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -orderer.example.com | [0f6 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [214 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [151 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [19b 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | [0f7 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [19c 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org2.example.com | [215 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [0f8 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...41646D696E7310021A0641646D696E73 -peer0.org1.example.com | [152 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | [19d 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer0.org2.example.com | [19e 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -orderer.example.com | [0f9 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: C27384AFD545FC24B520C7B68B73517A47F3B146FDA623F4F014FA00456A41D8 -peer1.org2.example.com | [216 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [153 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | [19f 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | [0fa 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [217 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.5 -peer0.org2.example.com | [1a0 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [218 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [1a1 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -orderer.example.com | [0fb 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -peer0.org2.example.com | [1a2 12-19 06:47:32.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer1.org2.example.com | [219 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [0fc 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer0.org2.example.com | [1a3 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [21a 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [0fd 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [1a4 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421594150 -orderer.example.com | [0fe 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [21b 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [1a5 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [0ff 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer1.org2.example.com | [21c 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [154 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock -orderer.example.com | [100 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [1a6 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -peer1.org2.example.com | [21d 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [155 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock -orderer.example.com | [101 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [21e 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer0.org2.example.com | [1a7 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer0.org1.example.com | [156 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 -peer1.org2.example.com | [21f 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [102 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [157 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) -peer0.org2.example.com | [1a8 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [220 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [158 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 -orderer.example.com | [103 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [170 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [221 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [159 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [1a9 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [104 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [171 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 -peer1.org2.example.com | [222 12-19 06:47:35.59 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [223 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | [105 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [15a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 -peer1.org1.example.com | [172 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [224 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [1aa 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42142ef50, header 0xc4215941e0 -peer1.org1.example.com | [173 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED -orderer.example.com | [106 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [15b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [225 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [107 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [174 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [1ab 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org2.example.com | [226 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [15c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | [108 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [1ac 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b9d9b8dfec311686ac7f88f17d171316845e13fb7b480cde2e8917bae6973463 -peer1.org1.example.com | [175 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [227 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org1.example.com | [15d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 -peer1.org2.example.com | [228 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -orderer.example.com | [109 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [1ad 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b9d9b8dfec311686ac7f88f17d171316845e13fb7b480cde2e8917bae6973463 channel id: -peer1.org1.example.com | [176 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [229 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [15e 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [22a 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3c8b8028-d66c-4c3b-93db-c90c7044dbf3] -orderer.example.com | [10a 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [177 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [1ae 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b9d9b8dfec311686ac7f88f17d171316845e13fb7b480cde2e8917bae6973463 channel id: version: 1.0.5 -peer1.org2.example.com | [22b 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=ee8c92a0-f4a4-43a4-936b-66782fedbf9f,syscc=true,proposal=0x0,canname=cscc:1.0.5 -orderer.example.com | [10b 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [178 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 d4 85 4c 06 96 66 38 a9 a2 52 86 a7 89 7f 1b c7 |..L..f8..R......| -peer0.org1.example.com | [15f 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [22c 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -peer0.org2.example.com | [1af 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=b9d9b8dfec311686ac7f88f17d171316845e13fb7b480cde2e8917bae6973463,syscc=true,proposal=0xc42142ef50,canname=cscc:1.0.5 -orderer.example.com | [10c 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [22d 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [160 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [1b0 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -peer1.org1.example.com | 00000010 96 ae 72 4f 59 21 f6 c2 de 5d dc 96 67 99 e2 e4 |..rOY!...]..g...| -orderer.example.com | [10d 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [22e 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer0.org2.example.com | [1b1 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [161 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [17a 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d1 70 78 9d f2 cc 40 91 c4 ed 19 |0E.!..px...@....| -peer1.org2.example.com | [22f 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ee8c92a0]Inside sendExecuteMessage. Message INIT -orderer.example.com | [10e 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [1b2 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer1.org2.example.com | [230 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | 00000010 4d 91 bb 77 85 0d b5 e0 c2 2d 2b 25 a8 0a fe d3 |M..w.....-+%....| -peer0.org1.example.com | [162 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 -orderer.example.com | [10f 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [231 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ee8c92a0]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [1b3 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b9d9b8df]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [163 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED -peer1.org1.example.com | 00000020 6a 25 c5 ad d2 02 20 27 b6 e5 01 66 b1 cc 7c 32 |j%.... '...f..|2| -peer1.org2.example.com | [232 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee8c92a0]Move state message INIT -orderer.example.com | [110 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [1b4 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | 00000030 18 ca 6c 2d 64 63 38 00 bf e6 51 ea 62 db 83 ad |..l-dc8...Q.b...| -peer1.org2.example.com | [233 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee8c92a0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [164 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [111 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | 00000040 eb 18 2f 91 02 bc e0 |../....| -peer1.org2.example.com | [234 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [165 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [1b5 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [179 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [112 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [167 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [1b6 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b9d9b8df]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [235 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee8c92a0]sending state message INIT -peer0.org1.example.com | [166 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed -orderer.example.com | [113 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [1b7 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b9d9b8df]Move state message TRANSACTION -peer1.org1.example.com | [17b 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed -peer0.org1.example.com | [168 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [114 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [1b8 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b9d9b8df]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [115 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [169 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [17c 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [1b9 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [236 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee8c92a0]Received message INIT from shim -orderer.example.com | [116 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [16a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [17d 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.21.0.4:7051 -orderer.example.com | [117 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [16b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]Move state message READY -peer1.org2.example.com | [237 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee8c92a0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [17e 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1ba 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b9d9b8df]sending state message TRANSACTION -orderer.example.com | [118 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [16c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [238 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [119 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer1.org1.example.com | [17f 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba73cac7]Move state message READY -peer1.org1.example.com | [180 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba73cac7]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [181 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ba73cac7]Entered state ready -peer1.org1.example.com | [182 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ba73cac7-0972-45a8-a45a-7e6850a37ec4 -peer1.org1.example.com | [183 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba73cac7]sending state message READY -peer0.org1.example.com | [16d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4184210c]Entered state ready -orderer.example.com | [11a 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [1bb 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9d9b8df]Received message TRANSACTION from shim -peer1.org1.example.com | [184 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba73cac7]Received message READY from shim -peer1.org2.example.com | [239 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ee8c92a0]Received INIT, initializing chaincode -peer0.org1.example.com | [16e 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4184210c-4f0d-40ee-8413-0f1fdf15cf34 -peer1.org1.example.com | [185 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ba73cac7]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [11b 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [16f 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]sending state message READY -peer1.org1.example.com | [187 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [11c 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [1bc 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b9d9b8df]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [23a 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [170 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Received message READY from shim -peer1.org1.example.com | [188 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [11d 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [172 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4184210c]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [189 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [11e 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [1bd 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b9d9b8df]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [11f 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [120 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [171 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [18a 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -orderer.example.com | [121 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [23b 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee8c92a0]Init get response status: 200 -orderer.example.com | [122 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [1be 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [18b 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ba73cac7]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [173 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [123 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [124 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [186 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [125 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [23c 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee8c92a0]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [174 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [18c 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1bf 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | [126 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [23d 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee8c92a0]Move state message COMPLETED -peer0.org1.example.com | [175 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -peer1.org1.example.com | [18d 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [127 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [176 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4184210c]Inside sendExecuteMessage. Message INIT -orderer.example.com | [128 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [1c0 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org2.example.com | [23e 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee8c92a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [18e 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ba73cac7]sendExecuteMsg trigger event INIT -orderer.example.com | [129 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org2.example.com | [1c1 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org1.example.com | [177 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [18f 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba73cac7]Move state message INIT -orderer.example.com | [12a 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [23f 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee8c92a0]send state message COMPLETED -peer0.org2.example.com | [1c2 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -orderer.example.com | [12b 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [190 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba73cac7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [178 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4184210c]sendExecuteMsg trigger event INIT -orderer.example.com | [12c 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [1c3 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [191 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [240 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee8c92a0]Received message COMPLETED from shim -peer0.org1.example.com | [179 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]Move state message INIT -orderer.example.com | [12d 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [1c4 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org1.example.com | [193 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [241 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee8c92a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [17a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [12e 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [242 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee8c92a0-f4a4-43a4-936b-66782fedbf9f]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [17b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1c5 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [243 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee8c92a0-f4a4-43a4-936b-66782fedbf9f -orderer.example.com | [12f 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [17c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]sending state message INIT -peer0.org2.example.com | [1c6 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org2.example.com | [244 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | [130 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [17d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Received message INIT from shim -peer1.org2.example.com | [245 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [1c7 12-19 06:47:35.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421644280)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -orderer.example.com | [131 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org1.example.com | [17e 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4184210c]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1c8 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [17f 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | [132 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org2.example.com | [1c9 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [246 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [3c8b8028-d66c-4c3b-93db-c90c7044dbf3] -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -peer0.org1.example.com | [180 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4184210c]Received INIT, initializing chaincode -peer0.org2.example.com | [1ca 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420176740), Data:(*common.BlockData)(0xc421505c80), Metadata:(*common.BlockMetadata)(0xc421505cc0)}, doMVCCValidation=true -orderer.example.com | [133 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer1.org2.example.com | [247 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer0.org2.example.com | [1cb 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [181 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | [134 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [1cc 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer1.org2.example.com | [248 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8e9497f4-d5e8-4cba-a1ee-ad6225247878] -peer0.org1.example.com | [182 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [135 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer0.org2.example.com | [1cd 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -peer0.org1.example.com | [183 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Init get response status: 200 -peer1.org2.example.com | [249 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=b5c06109-1eec-46d0-be9a-a24e932b5c59,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11892 -orderer.example.com | [136 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -peer0.org1.example.com | [184 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [24a 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org2.example.com | ] -orderer.example.com | [137 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer1.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer0.org1.example.com | [185 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Move state message COMPLETED -peer0.org2.example.com | [1ce 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx ID: [] to index -peer1.org2.example.com | [24b 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | [138 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org2.example.com | [1cf 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [186 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4184210c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [139 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [24c 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org1.example.com | [194 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1d0 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11936], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | [13a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -peer0.org1.example.com | [187 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]send state message COMPLETED -peer1.org2.example.com | [24d 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b5c06109]Inside sendExecuteMessage. Message INIT -orderer.example.com | [13b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [1d1 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer1.org1.example.com | [195 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [196 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADA060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [188 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]Received message COMPLETED from shim -orderer.example.com | [13c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [24e 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1d2 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [197 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: D18D9EDE12650FF5DC1B0C165C1ACA3356FD051F4CF4F9778C72E3F1F0FC139B -peer0.org1.example.com | [189 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [18a 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c-4f0d-40ee-8413-0f1fdf15cf34]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [18b 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4184210c-4f0d-40ee-8413-0f1fdf15cf34 -peer0.org1.example.com | [18c 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [18d 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [18e 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -orderer.example.com | [13d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [198 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [18f 12-19 06:47:31.99 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.org2.example.com | [1d3 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [190 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -orderer.example.com | [13e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [199 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [24f 12-19 06:47:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b5c06109]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [1d4 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [191 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -orderer.example.com | [13f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [192 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer1.org1.example.com | [192 12-19 06:47:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba73cac7]sending state message INIT -peer0.org1.example.com | [193 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1d5 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org1.example.com | [194 12-19 06:47:32.03 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 | [195 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer1.org2.example.com | [250 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5c06109]Move state message INIT -orderer.example.com | [140 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [19a 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [196 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1d6 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [141 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [197 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org1.example.com | [19b 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba73cac7]Received message INIT from shim -peer0.org1.example.com | [198 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1d7 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org1.example.com | [199 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org1.example.com | [19c 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer1.org2.example.com | [251 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5c06109]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [142 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org2.example.com | [1d8 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [19a 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org1.example.com | [19d 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ba73cac7]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [19b 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -orderer.example.com | [143 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org2.example.com | [1d9 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [252 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [19c 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org1.example.com | [19e 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [144 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [19d 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer0.org2.example.com | [1da 12-19 06:47:35.42 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [145 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [19f 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ba73cac7]Received INIT, initializing chaincode -peer0.org1.example.com | [19e 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org2.example.com | [1db 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [146 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [19f 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer1.org1.example.com | [1a0 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [253 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5c06109]sending state message INIT -orderer.example.com | [147 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [1a0 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1dc 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [1a1 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer1.org1.example.com | [1a1 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [148 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1a2 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer1.org1.example.com | [1a2 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba73cac7]Init get response status: 200 -peer0.org1.example.com | [1a3 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [1dd 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [1a4 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215c1530 -peer1.org1.example.com | [1a3 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba73cac7]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [1de 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [149 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [254 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5c06109]Received message INIT from shim -peer0.org1.example.com | [1a5 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [1a4 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba73cac7]Move state message COMPLETED -orderer.example.com | [14a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org2.example.com | [1df 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [1a6 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [14b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [1a7 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org1.example.com | [1a6 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ba73cac7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [1e0 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [1a8 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [255 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5c06109]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [14c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org2.example.com | [1e1 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [1a5 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [1a9 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [256 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [1a7 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba73cac7]send state message COMPLETED -orderer.example.com | [14d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [1e2 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [1aa 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421581cc0, header 0xc4215c15f0 -peer1.org1.example.com | [1a9 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba73cac7]Received message COMPLETED from shim -peer1.org2.example.com | [257 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b5c06109]Received INIT, initializing chaincode -peer0.org2.example.com | [1e3 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [1ab 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -orderer.example.com | [14e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [1aa 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba73cac7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [258 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5c06109]Init get response status: 200 -peer0.org1.example.com | [1ac 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 -orderer.example.com | [14f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org2.example.com | [1e4 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [1a8 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [1ad 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 channel id: -orderer.example.com | [150 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [18d 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [266 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=c36216b0-8a83-4d7d-a3ef-f6f2a6113944,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer1.org2.example.com | [1ce 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx ID: [] to index +peer0.org1.example.com | [1ce 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx ID: [] to index +peer1.org1.example.com | [18e 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org2.example.com | [267 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer0.org2.example.com | [268 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [117 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [1cf 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [269 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [1cf 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [118 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [1d0 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11927], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [18f 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org2.example.com | [26a 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c36216b0]Inside sendExecuteMessage. Message INIT +orderer.example.com | [119 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [26b 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1d1 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +peer1.org1.example.com | [190 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer1.org2.example.com | [1d0 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11927], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [26c 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c36216b0]sendExecuteMsg trigger event INIT +orderer.example.com | [11a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [191 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer1.org2.example.com | [1d1 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +peer0.org2.example.com | [26d 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c36216b0]Move state message INIT +peer1.org2.example.com | [1d2 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | [11b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [192 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer0.org2.example.com | [26e 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c36216b0]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [1d2 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | [11c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [26f 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [1d3 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [193 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +orderer.example.com | [11d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [1d3 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [270 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c36216b0]sending state message INIT +peer1.org2.example.com | [1d4 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [194 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +orderer.example.com | [11e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [1d4 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [271 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c36216b0]Received message INIT from shim +peer0.org2.example.com | [272 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c36216b0]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [1d5 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org1.example.com | [1d5 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org2.example.com | [273 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [11f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [1d6 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [274 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c36216b0]Received INIT, initializing chaincode +peer1.org1.example.com | [195 01-12 22:56:35.86 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 | [1d6 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [1d7 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org2.example.com | [275 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | [120 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [196 01-12 22:56:35.86 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 | [1d7 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org2.example.com | [276 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c36216b0]Init get response status: 200 +peer1.org2.example.com | [1d8 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +orderer.example.com | [121 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [197 01-12 22:56:35.86 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 | [1d8 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [277 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c36216b0]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [1d9 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [198 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1d9 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [122 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [278 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c36216b0]Move state message COMPLETED +peer1.org2.example.com | [1da 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [199 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer0.org2.example.com | [279 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c36216b0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [19a 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +orderer.example.com | [123 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [1da 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [1db 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [27a 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c36216b0]send state message COMPLETED +peer1.org1.example.com | [19b 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org2.example.com | [27b 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c36216b0]Received message COMPLETED from shim +peer0.org1.example.com | [1db 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [124 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [19c 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org2.example.com | [1dc 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [27c 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c36216b0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1dc 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [19d 01-12 22:56:35.86 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 | [27d 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c36216b0-8a83-4d7d-a3ef-f6f2a6113944]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [1dd 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [27e 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c36216b0-8a83-4d7d-a3ef-f6f2a6113944 +peer1.org2.example.com | [1de 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [1dd 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [125 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [19e 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer0.org2.example.com | [27f 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1de 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [1df 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [126 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [280 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [19f 01-12 22:56:35.86 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 | [1df 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [127 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [1e0 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [1e0 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [281 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c6c38d76-838b-4ab3-80eb-7f3982b3d07d] +peer1.org2.example.com | [1e1 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [128 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [1e2 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [1e1 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [1a0 01-12 22:56:35.86 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer1.org2.example.com | [1e3 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [282 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [129 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [1e4 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [283 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [74133a1e-bb21-4849-a7f9-689fbfb1f0db] +peer1.org1.example.com | [1a1 01-12 22:56:35.86 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 | [1e2 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [1e5 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [12a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [284 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=7a87be8b-992f-46df-b615-9b52f76c8694,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [1e6 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [1a2 01-12 22:56:35.86 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 | [1e3 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [1e7 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [12b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [285 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer1.org2.example.com | [1e8 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [1a3 01-12 22:56:35.86 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 | [1e4 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [1e9 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [286 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [12c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [1e5 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [1a4 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [1ea 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [287 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [1e6 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [12d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [1eb 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [1a5 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215f6c30 +peer0.org1.example.com | [1e7 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [1ec 01-12 22:56:39.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [12e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [1a6 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [288 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7a87be8b]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [1ed 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [1e8 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [12f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [1ee 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [289 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1e9 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [1ef 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [1a7 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [28a 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7a87be8b]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [1f0 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [130 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [1ea 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [1a8 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org2.example.com | [28b 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a87be8b]Move state message INIT +peer1.org2.example.com | [1f1 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1eb 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [131 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org2.example.com | [28c 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a87be8b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [1a9 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [1f2 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [132 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [1ec 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [1f3 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [1aa 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [28d 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [133 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer1.org2.example.com | [1f4 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [1ed 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [1f5 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [1ab 01-12 22:56:38.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215aa5a0, header 0xc4215f6cc0 +orderer.example.com | [134 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1f6 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [28e 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a87be8b]sending state message INIT +peer0.org1.example.com | [1ee 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [1ac 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org2.example.com | [1f7 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [135 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [28f 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a87be8b]Received message INIT from shim +peer0.org1.example.com | [1ef 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [1f8 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [136 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org1.example.com | [1ad 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 296c2ff83c7baea29aceac85881b14f04e7f03398e3fe2524c387bbced4d3f04 +peer0.org1.example.com | [1f0 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1f9 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [290 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a87be8b]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1f1 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [1ae 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 296c2ff83c7baea29aceac85881b14f04e7f03398e3fe2524c387bbced4d3f04 channel id: +orderer.example.com | [137 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer1.org2.example.com | [1fa 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [1f2 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [291 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1af 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 296c2ff83c7baea29aceac85881b14f04e7f03398e3fe2524c387bbced4d3f04 channel id: version: 1.0.5 +orderer.example.com | [138 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org2.example.com | [1fb 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [1f3 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [292 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7a87be8b]Received INIT, initializing chaincode +peer1.org1.example.com | [1b0 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=296c2ff83c7baea29aceac85881b14f04e7f03398e3fe2524c387bbced4d3f04,syscc=true,proposal=0xc4215aa5a0,canname=cscc:1.0.5 +peer1.org2.example.com | [1fc 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [1f4 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [139 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [1b1 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer0.org2.example.com | [293 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a87be8b]Init get response status: 200 +peer0.org1.example.com | [1f5 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [1b2 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [13a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +peer1.org2.example.com | [1fd 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [1f6 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [294 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a87be8b]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1b3 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +orderer.example.com | [13b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1fe 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [1f7 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [13c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [295 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a87be8b]Move state message COMPLETED +peer0.org1.example.com | [1f8 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [1b4 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [296c2ff8]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [1ff 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [296 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a87be8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1f9 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [13d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [1b5 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [200 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [1fa 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [13e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [297 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a87be8b]send state message COMPLETED +peer1.org1.example.com | [1b6 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [201 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [298 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a87be8b]Received message COMPLETED from shim +peer0.org1.example.com | [1fb 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [13f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [202 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [1fc 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [299 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a87be8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [140 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1b7 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [296c2ff8]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [203 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [1fd 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [1b8 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [296c2ff8]Move state message TRANSACTION +orderer.example.com | [141 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer1.org1.example.com | [1b9 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [296c2ff8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [204 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [29a 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a87be8b-992f-46df-b615-9b52f76c8694]HandleMessage- COMPLETED. Notify +orderer.example.com | [142 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer1.org1.example.com | [1ba 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1fe 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [205 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [1bb 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [296c2ff8]sending state message TRANSACTION +peer0.org2.example.com | [29b 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a87be8b-992f-46df-b615-9b52f76c8694 +peer1.org2.example.com | [206 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [1ff 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [1bc 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [296c2ff8]Received message TRANSACTION from shim +orderer.example.com | [143 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org2.example.com | [207 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [200 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [29c 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1bd 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [296c2ff8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [144 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [201 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [1be 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [296c2ff8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [208 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [29d 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org1.example.com | [1bf 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +orderer.example.com | [145 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [202 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [1c0 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [29e 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [74133a1e-bb21-4849-a7f9-689fbfb1f0db] +peer1.org2.example.com | [209 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [203 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [1c1 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org2.example.com | [29f 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [146 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [20a 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [1c2 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer0.org1.example.com | [204 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [2a0 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [da480485-eaad-46eb-a60e-0eeee474d5fe] +peer1.org1.example.com | [1c3 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | [147 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [20b 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [205 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [1c4 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org2.example.com | [2a1 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=f9924717-35c8-4e9d-a9df-15c246de3fa4,syscc=true,proposal=0x0,canname=qscc:1.0.5 +orderer.example.com | [148 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [20c 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [1c5 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer0.org1.example.com | [206 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [207 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [20d 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [1c6 01-12 22:56:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [1c7 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org2.example.com | [20e 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [208 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [149 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1c8 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42170f6a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer0.org2.example.com | [2a2 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +peer1.org2.example.com | [20f 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [209 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [14a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [1c9 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org1.example.com | [20a 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1ca 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [2a3 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [210 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [14b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [1cb 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420131ac0), Data:(*common.BlockData)(0xc4216e5280), Metadata:(*common.BlockMetadata)(0xc4216e52c0)}, doMVCCValidation=true +peer0.org2.example.com | [2a4 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer0.org1.example.com | [20b 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [211 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [1cc 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | [14c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [2a5 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f9924717]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [212 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [20c 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [1cd 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [20d 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [14d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [2a6 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1ce 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +peer1.org2.example.com | [213 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [20e 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [14e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [214 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2a7 01-12 22:56:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f9924717]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [20f 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [14f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11883 +peer1.org2.example.com | [215 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2a8 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9924717]Move state message INIT +peer0.org1.example.com | [210 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | ] +orderer.example.com | [150 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [211 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [2a9 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9924717]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [216 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1cf 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx ID: [] to index +peer0.org1.example.com | [212 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | [217 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2aa 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1d0 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [218 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [213 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2ab 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9924717]sending state message INIT +peer1.org1.example.com | [1d1 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11927], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [214 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [219 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [1d2 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer0.org2.example.com | [2ac 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9924717]Received message INIT from shim +peer0.org1.example.com | [215 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [21a 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [1d3 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [2ad 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9924717]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [216 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [21b 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [1d4 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [2ae 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [217 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [21c 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [1d5 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [2af 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f9924717]Received INIT, initializing chaincode +peer0.org1.example.com | [218 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [21d 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer1.org1.example.com | [1d6 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org2.example.com | [2b0 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer1.org2.example.com | [21e 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org1.example.com | [219 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [2b1 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9924717]Init get response status: 200 +peer1.org1.example.com | [1d7 01-12 22:56:38.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [21a 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [21f 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +peer0.org2.example.com | [2b2 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9924717]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1d8 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org1.example.com | [21b 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [220 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer1.org1.example.com | [1d9 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [21c 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [221 01-12 22:56:39.15 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [2b3 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9924717]Move state message COMPLETED +peer0.org1.example.com | [21d 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [1da 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer1.org2.example.com | [222 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [223 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [224 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [2b4 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9924717]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [21e 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [1db 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [225 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [21f 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [2b5 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9924717]send state message COMPLETED +peer1.org1.example.com | [1dc 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [151 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [220 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [2b6 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9924717]Received message COMPLETED from shim +peer1.org2.example.com | [226 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [1dd 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [221 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [2b7 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9924717]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [227 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [222 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [1ae 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 channel id: version: 1.0.5 -peer1.org2.example.com | [259 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5c06109]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1ab 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba73cac7-0972-45a8-a45a-7e6850a37ec4]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [1e5 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [223 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [228 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [25a 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5c06109]Move state message COMPLETED -peer1.org1.example.com | [1ac 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ba73cac7-0972-45a8-a45a-7e6850a37ec4 -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer0.org1.example.com | [1af 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582,syscc=true,proposal=0xc421581cc0,canname=cscc:1.0.5 -peer0.org2.example.com | [1e6 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [1de 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [2b8 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9924717-35c8-4e9d-a9df-15c246de3fa4]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [224 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org2.example.com | [2b9 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f9924717-35c8-4e9d-a9df-15c246de3fa4 +peer1.org1.example.com | [1df 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [225 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [1b0 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -peer1.org1.example.com | [1ad 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [1b1 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [1ae 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [1b2 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer0.org2.example.com | [1e7 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [1b3 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25cce164]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [25b 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5c06109]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [1af 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org1.example.com | [1b4 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1e8 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [1b5 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [1e9 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [1b0 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1b6 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25cce164]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [25c 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5c06109]send state message COMPLETED -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [1b7 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25cce164]Move state message TRANSACTION -peer0.org2.example.com | [1ea 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org1.example.com | [1b8 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25cce164]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [1eb 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [25d 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5c06109]Received message COMPLETED from shim -peer0.org1.example.com | [1b9 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1ec 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [25e 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5c06109]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1ed 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [1ba 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25cce164]sending state message TRANSACTION -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -peer0.org2.example.com | [1ee 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org1.example.com | [1bb 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]Received message TRANSACTION from shim -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [25f 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5c06109-1eec-46d0-be9a-a24e932b5c59]HandleMessage- COMPLETED. Notify -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer0.org2.example.com | [1ef 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [1bc 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25cce164]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [2ba 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [229 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [226 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [2bb 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [227 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer1.org2.example.com | [22a 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6fe0d6f6-6f40-4041-a7ba-73aa4d16a24d] +peer0.org1.example.com | [228 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer0.org1.example.com | [229 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [1e0 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [2bc 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [da480485-eaad-46eb-a60e-0eeee474d5fe] +peer1.org2.example.com | [22b 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=dfcc9fb3-73ba-4d32-bffd-04e121c66f4b,syscc=true,proposal=0x0,canname=cscc:1.0.5 +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [22a 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5b5abc6c-c981-4eda-8cda-c68918e6b2e6] +peer1.org2.example.com | [22c 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer1.org1.example.com | [1e1 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [2bd 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [22b 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=3e6e0763-f1c9-492d-941a-9af31987998e,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer1.org2.example.com | [22d 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [22c 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer0.org2.example.com | [2be 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer1.org2.example.com | [22e 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer1.org1.example.com | [1e2 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [22d 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [22f 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dfcc9fb3]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [22e 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org2.example.com | [2bf 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [1e3 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [230 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [22f 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3e6e0763]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2c0 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [1e4 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [230 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [231 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dfcc9fb3]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [1e5 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [2c1 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [231 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3e6e0763]sendExecuteMsg trigger event INIT orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [1f0 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -peer0.org1.example.com | [1bd 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [25cce164]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [260 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5c06109-1eec-46d0-be9a-a24e932b5c59 -orderer.example.com | [151 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [1f1 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -peer0.org1.example.com | [1be 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [261 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [1f2 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -peer0.org1.example.com | [1bf 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -peer0.org2.example.com | [1f3 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [262 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -peer0.org1.example.com | [1c0 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [1f4 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | PjNMGC1fMR/dFfg4xQ== -peer1.org2.example.com | [263 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [8e9497f4-d5e8-4cba-a1ee-ad6225247878] -peer0.org1.example.com | [1c1 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org2.example.com | [1f5 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [1c2 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org1.example.com | [1b1 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer0.org2.example.com | [1f6 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [1c3 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [1b2 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:4243292464331484447 tag:EMPTY mem_req: > > , Envelope: 1062 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [264 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [1c4 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org2.example.com | [1f7 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [1b3 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:4243292464331484447 tag:EMPTY mem_req: > > , Envelope: 1062 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b4 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [143 82 170 12 147 98 180 175 202 109 176 15 125 139 169 198 18 42 139 13 51 79 107 174 236 26 68 151 60 128 120 0] -peer0.org1.example.com | [1c5 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org2.example.com | [1f8 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [1b5 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer0.org1.example.com | [1c6 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [1f9 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer1.org2.example.com | [265 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cf967a67-d8a1-4271-aa8a-2c8b4ea5f297] -peer1.org1.example.com | [1b6 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org2.example.com | [1fa 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [1c7 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421720700)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [1b7 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org2.example.com | [266 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=1f853cd0-5936-4c15-824e-fe056f235c4d,syscc=true,proposal=0x0,canname=escc:1.0.5 -peer1.org1.example.com | [1b8 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1fb 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [1c8 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org2.example.com | [232 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfcc9fb3]Move state message INIT +peer0.org1.example.com | [232 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e6e0763]Move state message INIT +peer0.org2.example.com | [2c2 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [1e6 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [152 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [233 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e6e0763]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [233 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfcc9fb3]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2c3 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [234 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1e7 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [234 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [2c4 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [45347702]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [235 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e6e0763]sending state message INIT +peer1.org1.example.com | [1e8 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [235 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfcc9fb3]sending state message INIT +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [236 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Received message INIT from shim +peer0.org2.example.com | [2c5 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [45347702]Move state message COMPLETED +peer1.org1.example.com | [1e9 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [236 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcc9fb3]Received message INIT from shim +peer0.org1.example.com | [237 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e6e0763]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [237 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfcc9fb3]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [238 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1ea 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org2.example.com | [2c6 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [45347702]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [238 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [239 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3e6e0763]Received INIT, initializing chaincode +peer1.org1.example.com | [1eb 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [2c7 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [45347702]send state message COMPLETED +peer1.org2.example.com | [239 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dfcc9fb3]Received INIT, initializing chaincode +peer1.org1.example.com | [1ec 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [23a 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [2c8 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [45347702]Received message COMPLETED from shim +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [1ed 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [23b 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Init get response status: 200 +peer1.org2.example.com | [23a 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org2.example.com | [2c9 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [45347702]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1ee 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [23c 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [23b 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcc9fb3]Init get response status: 200 +peer0.org2.example.com | [2ca 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [45347702c5d33037295b0cc218a144b851ce927fd472f6c9a901037c54a4e92f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [23d 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Move state message COMPLETED +peer1.org1.example.com | [1ef 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [2cb 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:45347702c5d33037295b0cc218a144b851ce927fd472f6c9a901037c54a4e92f +peer1.org2.example.com | [23c 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcc9fb3]Init succeeded. Sending COMPLETED +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org1.example.com | [23e 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e6e0763]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1f0 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [2cc 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [23d 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcc9fb3]Move state message COMPLETED +peer1.org1.example.com | [1f1 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [23f 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]send state message COMPLETED +peer1.org2.example.com | [23e 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfcc9fb3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1f2 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [2cd 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [1b9 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1c9 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [1fc 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [1ba 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -orderer.example.com | [152 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [267 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer0.org1.example.com | [1ca 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215e8a80), Data:(*common.BlockData)(0xc421607c00), Metadata:(*common.BlockMetadata)(0xc421607c40)}, doMVCCValidation=true -peer1.org1.example.com | [1bb 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1fd 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [1bc 12-19 06:47:34.23 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 | [1cb 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [1fe 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [268 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [1bd 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [1ff 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [1cc 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org1.example.com | [1be 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer0.org2.example.com | [200 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org2.example.com | [269 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org1.example.com | [1bf 12-19 06:47:34.23 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 | [1cd 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -peer0.org2.example.com | [201 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [1c0 12-19 06:47:34.23 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 | [202 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11892 -peer1.org2.example.com | [26a 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f853cd0]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [203 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [1c1 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | ] -peer0.org2.example.com | [204 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [1ce 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx ID: [] to index -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org1.example.com | [1c2 12-19 06:47:34.23 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 | [205 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [1cf 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [26b 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [206 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [1c3 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer0.org2.example.com | [207 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [1c4 12-19 06:47:34.23 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer0.org1.example.com | [1d0 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11936], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org2.example.com | [208 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [1c5 12-19 06:47:34.23 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 | [1d1 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer1.org2.example.com | [26c 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f853cd0]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [209 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [1d2 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [20a 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [1c6 12-19 06:47:34.23 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 | [26d 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f853cd0]Move state message INIT -peer0.org2.example.com | [20b 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org2.example.com | [20c 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [1c7 12-19 06:47:34.23 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 | [1d3 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [20d 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [240 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e6e0763]Received message COMPLETED from shim +peer1.org2.example.com | [23f 01-12 22:56:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcc9fb3]send state message COMPLETED +peer0.org2.example.com | [2ce 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [153 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [1f3 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [240 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfcc9fb3]Received message COMPLETED from shim +orderer.example.com | [154 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [155 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [1f4 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [1f5 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [1f6 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [241 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e6e0763]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [156 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [2cf 01-12 22:56:39.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [241 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfcc9fb3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1f7 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [157 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org2.example.com | [2d0 01-12 22:56:45.00 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 | [242 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e6e0763-f1c9-492d-941a-9af31987998e]HandleMessage- COMPLETED. Notify +orderer.example.com | [158 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [242 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfcc9fb3-73ba-4d32-bffd-04e121c66f4b]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1f8 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [2d1 01-12 22:56:45.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [243 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e6e0763-f1c9-492d-941a-9af31987998e +peer1.org1.example.com | [1f9 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [2d2 01-12 22:56:45.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [244 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [1fa 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [2d3 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org1.example.com | [245 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [243 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dfcc9fb3-73ba-4d32-bffd-04e121c66f4b +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +peer0.org2.example.com | [2d4 01-12 22:56:45.02 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 | [1fb 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [246 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5b5abc6c-c981-4eda-8cda-c68918e6b2e6] +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [244 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1fc 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [247 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2d5 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org1.example.com | [1fd 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [248 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e65856bb-50be-4d87-b928-4fea0bc450e6] +peer1.org2.example.com | [245 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [2d6 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [249 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=52660561-ed6f-4d0d-a57b-756a9c70b196,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org1.example.com | [1fe 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [246 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6fe0d6f6-6f40-4041-a7ba-73aa4d16a24d] +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +peer0.org2.example.com | [2d7 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +peer0.org1.example.com | [24a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org1.example.com | [1ff 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [24b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +peer1.org1.example.com | [200 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [2d8 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +peer0.org1.example.com | [24c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer1.org2.example.com | [247 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [201 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [2d9 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer0.org1.example.com | [24d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [52660561]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [248 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3b526c1b-d216-418d-bf7e-8d72aa0cff31] +orderer.example.com | ymzPpM2K +peer1.org2.example.com | [249 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=421d498f-1c16-46dc-8cba-ac0164d599ad,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org1.example.com | [202 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [20e 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [26e 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f853cd0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [1c8 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [20f 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1d4 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | [153 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org1.example.com | [1c9 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421677ec0 -peer0.org2.example.com | [210 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [154 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [1d5 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [211 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [26f 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1ca 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [212 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [1d6 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [155 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [1cb 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [213 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [156 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [1d7 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [270 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f853cd0]sending state message INIT -peer0.org2.example.com | [214 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1d8 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [1cc 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -orderer.example.com | [157 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [1d9 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [215 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [1cd 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [271 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f853cd0]Received message INIT from shim -orderer.example.com | [158 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [216 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [1da 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [1ce 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [1db 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [217 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [272 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f853cd0]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [1cf 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42169d540, header 0xc421677f50 -peer0.org1.example.com | [1dc 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [218 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [24e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [2da 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [203 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [24a 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +orderer.example.com | [159 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [204 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [24f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [52660561]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [2db 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b83530 +peer1.org2.example.com | [24b 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [273 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [1d0 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org2.example.com | [219 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [1dd 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [250 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [52660561]Move state message INIT +peer1.org1.example.com | [205 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [24c 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [2dc 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +peer1.org2.example.com | [24d 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [421d498f]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [206 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org2.example.com | [2dd 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [24e 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [251 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [52660561]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [207 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [24f 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [421d498f]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [252 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2de 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [253 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [52660561]sending state message INIT +peer1.org1.example.com | [208 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [250 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [421d498f]Move state message INIT +peer0.org2.example.com | [2df 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [254 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Received message INIT from shim +peer1.org2.example.com | [251 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [421d498f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [209 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | [255 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [52660561]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [2e0 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +peer1.org1.example.com | [20a 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [252 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [256 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2e1 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [20b 01-12 22:56:38.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer1.org2.example.com | [253 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [421d498f]sending state message INIT +peer0.org1.example.com | [257 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [52660561]Received INIT, initializing chaincode +peer1.org1.example.com | [20c 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [258 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Init get response status: 200 +peer0.org2.example.com | [2e2 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +peer1.org2.example.com | [254 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [421d498f]Received message INIT from shim +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [259 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2e3 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [255 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [421d498f]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [25a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Move state message COMPLETED +peer1.org1.example.com | [20d 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [256 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [15a 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [2e4 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c72000, header channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +peer0.org1.example.com | [25b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [52660561]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [25c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]send state message COMPLETED +peer1.org2.example.com | [257 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [421d498f]Received INIT, initializing chaincode +peer1.org1.example.com | [20e 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [2e5 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [25d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [52660561]Received message COMPLETED from shim +peer1.org1.example.com | [20f 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [258 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [421d498f]Init get response status: 200 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [25e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [52660561]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2e6 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [259 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [421d498f]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [210 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [25f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [52660561-ed6f-4d0d-a57b-756a9c70b196]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2e7 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [25a 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [421d498f]Move state message COMPLETED +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [260 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:52660561-ed6f-4d0d-a57b-756a9c70b196 +peer1.org1.example.com | [211 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [2e8 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [25b 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [421d498f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [261 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org2.example.com | [25c 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [421d498f]send state message COMPLETED +peer1.org1.example.com | [212 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2e9 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [262 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org2.example.com | [25d 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [421d498f]Received message COMPLETED from shim +peer0.org1.example.com | [263 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e65856bb-50be-4d87-b928-4fea0bc450e6] +peer1.org1.example.com | [213 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org2.example.com | [25e 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [421d498f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [264 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2ea 01-12 22:56:45.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer1.org2.example.com | [25f 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [421d498f-1c16-46dc-8cba-ac0164d599ad]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [214 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [265 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a224683b-b9d3-4892-aa5b-4aa0f75f4224] +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org2.example.com | [260 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:421d498f-1c16-46dc-8cba-ac0164d599ad +peer0.org1.example.com | [266 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=6f7b8c6d-14de-4527-b78e-650d03df23f1,syscc=true,proposal=0x0,canname=escc:1.0.5 +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org2.example.com | [261 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [215 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2eb 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [267 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [262 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [268 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [15b 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [2ec 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [263 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [3b526c1b-d216-418d-bf7e-8d72aa0cff31] +peer1.org1.example.com | [216 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [269 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [264 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2ed 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [26a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f7b8c6d]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [265 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [152114ca-0682-407e-a64e-ee1e8c748f57] +orderer.example.com | [15c 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [217 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [26b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [266 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=b25cc760-08e1-4a6f-a41f-b256f0ab7307,syscc=true,proposal=0x0,canname=escc:1.0.5 +orderer.example.com | [15d 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [2ee 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [218 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [26c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f7b8c6d]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [267 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer0.org1.example.com | [26d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f7b8c6d]Move state message INIT +peer1.org1.example.com | [219 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [268 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [15e 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [2ef 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [269 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org1.example.com | [21a 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [15f 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org1.example.com | [26e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6f7b8c6d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [26a 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b25cc760]Inside sendExecuteMessage. Message INIT +orderer.example.com | [160 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [26b 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [26f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [21b 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2f0 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [26c 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b25cc760]sendExecuteMsg trigger event INIT +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [2f1 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [270 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f7b8c6d]sending state message INIT +peer1.org1.example.com | [21c 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [26d 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b25cc760]Move state message INIT +peer0.org2.example.com | [2f2 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [271 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Received message INIT from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [21d 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [26e 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b25cc760]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2f3 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [272 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f7b8c6d]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [26f 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [21e 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [2f4 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [1d1 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0878462ac2fada2aa837e3bf2fa1c0f975514526cac059a8af0ac63e9c5b2265 -peer0.org2.example.com | [21a 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [1de 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [274 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1f853cd0]Received INIT, initializing chaincode -peer1.org1.example.com | [1d2 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0878462ac2fada2aa837e3bf2fa1c0f975514526cac059a8af0ac63e9c5b2265 channel id: -peer0.org2.example.com | [21b 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [1df 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [1d3 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0878462ac2fada2aa837e3bf2fa1c0f975514526cac059a8af0ac63e9c5b2265 channel id: version: 1.0.5 +peer1.org2.example.com | [270 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b25cc760]sending state message INIT +peer0.org1.example.com | [273 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2f5 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [271 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b25cc760]Received message INIT from shim +peer1.org2.example.com | [272 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b25cc760]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [21f 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [2f6 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [274 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6f7b8c6d]Received INIT, initializing chaincode +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org2.example.com | [273 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2f7 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [275 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [220 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [21c 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1e0 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [1d4 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=0878462ac2fada2aa837e3bf2fa1c0f975514526cac059a8af0ac63e9c5b2265,syscc=true,proposal=0xc42169d540,canname=cscc:1.0.5 -peer0.org2.example.com | [21d 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [275 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org1.example.com | [1e1 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [274 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b25cc760]Received INIT, initializing chaincode +peer0.org2.example.com | [2f8 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [276 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Init get response status: 200 orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [21e 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [1d5 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -peer0.org1.example.com | [1e2 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [2f9 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [275 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [221 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [276 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b25cc760]Init get response status: 200 orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -peer0.org2.example.com | [21f 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [1e3 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [1d6 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [220 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [1e4 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [276 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f853cd0]Init get response status: 200 -peer0.org1.example.com | [1e5 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [1d7 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer0.org2.example.com | [221 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [1d8 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0878462a]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [277 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f853cd0]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [222 12-19 06:47:35.43 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [1e6 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -peer1.org1.example.com | [1d9 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [223 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [278 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f853cd0]Move state message COMPLETED -peer1.org1.example.com | [1da 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer1.org1.example.com | [1db 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0878462a]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [279 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f853cd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [224 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [1e7 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [27a 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f853cd0]send state message COMPLETED -orderer.example.com | XXreRTw6jXg= -peer1.org1.example.com | [1dc 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0878462a]Move state message TRANSACTION -peer0.org2.example.com | [225 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [1e8 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [2fa 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [277 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2fb 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [277 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b25cc760]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [222 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +peer0.org1.example.com | [278 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Move state message COMPLETED +peer0.org2.example.com | [2fc 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [278 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b25cc760]Move state message COMPLETED +peer1.org1.example.com | [223 01-12 22:56:38.77 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [2fd 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [279 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f7b8c6d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [224 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [279 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b25cc760]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [2fe 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [27a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]send state message COMPLETED +peer1.org1.example.com | [225 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [27a 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b25cc760]send state message COMPLETED +peer0.org2.example.com | [2ff 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer1.org1.example.com | [226 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [27b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f7b8c6d]Received message COMPLETED from shim +peer1.org2.example.com | [27b 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b25cc760]Received message COMPLETED from shim +peer0.org2.example.com | [300 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer0.org1.example.com | [27c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6f7b8c6d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [27c 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b25cc760]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [301 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [227 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [27d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6f7b8c6d-14de-4527-b78e-650d03df23f1]HandleMessage- COMPLETED. Notify +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer1.org2.example.com | [27d 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b25cc760-08e1-4a6f-a41f-b256f0ab7307]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [302 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [228 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [27e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6f7b8c6d-14de-4527-b78e-650d03df23f1 +peer1.org2.example.com | [27e 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b25cc760-08e1-4a6f-a41f-b256f0ab7307 +peer0.org2.example.com | [303 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [229 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +orderer.example.com | RTCauNNt1A== +peer1.org2.example.com | [27f 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [304 01-12 22:56:45.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [22a 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [27f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [305 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [1dd 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0878462a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [27b 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f853cd0]Received message COMPLETED from shim -peer0.org2.example.com | [226 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [27c 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f853cd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1e9 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [1de 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [159 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [227 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [27d 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f853cd0-5936-4c15-824e-fe056f235c4d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [1ea 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [1df 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0878462a]sending state message TRANSACTION -peer0.org2.example.com | [228 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer1.org2.example.com | [27e 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1f853cd0-5936-4c15-824e-fe056f235c4d -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [1e0 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0878462a]Received message TRANSACTION from shim -peer0.org1.example.com | [1eb 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [22b 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [31f71fd8-e2b7-442b-9fec-e580f9105e56] +peer0.org2.example.com | [306 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [22c 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=5a950ecb-18e0-4714-8d65-41e5b46e5d2c,syscc=true,proposal=0x0,canname=cscc:1.0.5 +peer0.org2.example.com | [307 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [280 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org2.example.com | [280 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +orderer.example.com | [161 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [22d 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer0.org2.example.com | [308 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [281 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [152114ca-0682-407e-a64e-ee1e8c748f57] +peer1.org1.example.com | [22e 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [281 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a224683b-b9d3-4892-aa5b-4aa0f75f4224] orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [229 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [27f 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [1ec 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [1e1 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0878462a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [22a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [739e86d8-d0da-4791-9818-aced998073ed] -peer1.org2.example.com | [280 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [22f 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +peer0.org1.example.com | [282 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [282 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [230 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5a950ecb]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [309 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [231 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [283 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b0c4b2e4-69b9-4eb7-8061-aa27cb4e369c] orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [1ed 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [1e2 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0878462a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [22b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=c6c65e3f-4980-4d3b-b011-97872c846d83,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer1.org2.example.com | [281 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cf967a67-d8a1-4271-aa8a-2c8b4ea5f297] +peer1.org2.example.com | [283 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [99bb0d36-80bc-46d9-8a92-efdb42946299] +peer1.org1.example.com | [232 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5a950ecb]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [284 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=00eace57-7c6b-486b-8930-c572599c0f02,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org2.example.com | [30a 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org1.example.com | [233 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a950ecb]Move state message INIT +peer1.org2.example.com | [284 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=c7916c1e-cc58-4f39-a405-2e8d8335d4c5,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [285 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org2.example.com | [30b 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [234 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a950ecb]Fabric side Handling ChaincodeMessage of type: INIT in state ready orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [1ee 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [1e3 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org2.example.com | [22c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +peer0.org1.example.com | [286 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [235 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [285 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [1ef 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [282 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [1e4 12-19 06:47:35.25 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [22d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [283 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [fe253836-1d75-40b5-9b1f-f66fa84897ff] -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org1.example.com | [1e5 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [1f0 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [22e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer1.org2.example.com | [284 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=35fbe988-a66d-41a8-b292-bc6b9879de66,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org1.example.com | [1f1 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer1.org2.example.com | [285 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org2.example.com | [22f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c6c65e3f]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [1f2 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org1.example.com | [1e6 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org2.example.com | [286 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [1f3 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [230 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [1e7 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer1.org1.example.com | [1e8 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org1.example.com | [1f4 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [1e9 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org2.example.com | [287 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org2.example.com | [231 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c6c65e3f]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [1f5 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [1ea 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org2.example.com | [232 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6c65e3f]Move state message INIT -peer1.org2.example.com | [288 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [35fbe988]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [30c 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [236 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a950ecb]sending state message INIT +peer0.org1.example.com | [287 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org1.example.com | [237 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a950ecb]Received message INIT from shim +peer1.org2.example.com | [286 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org1.example.com | [238 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a950ecb]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [30d 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [288 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [00eace57]Inside sendExecuteMessage. Message INIT +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer1.org2.example.com | [287 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org1.example.com | [239 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [289 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [23a 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5a950ecb]Received INIT, initializing chaincode +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org2.example.com | [288 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c7916c1e]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [30e 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [28a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [00eace57]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [23b 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org2.example.com | [30f 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [289 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [23c 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a950ecb]Init get response status: 200 +peer0.org1.example.com | [28b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00eace57]Move state message INIT +peer0.org2.example.com | [310 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org1.example.com | [23d 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a950ecb]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [28c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00eace57]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [28a 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c7916c1e]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [23e 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a950ecb]Move state message COMPLETED +peer0.org2.example.com | [311 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [23f 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a950ecb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [28d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer1.org2.example.com | [28b 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c7916c1e]Move state message INIT +peer1.org1.example.com | [240 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a950ecb]send state message COMPLETED orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [1eb 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org1.example.com | [1f6 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [233 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6c65e3f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [289 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [1ec 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42170d660)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org1.example.com | [1f7 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [28a 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [35fbe988]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [234 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1ed 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -orderer.example.com | [15a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1f8 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [28b 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35fbe988]Move state message INIT -peer0.org2.example.com | [235 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6c65e3f]sending state message INIT -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [1f9 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [1ee 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [28c 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [35fbe988]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [236 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6c65e3f]Received message INIT from shim -peer0.org1.example.com | [1fa 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [312 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [28e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00eace57]sending state message INIT +peer1.org1.example.com | [241 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a950ecb]Received message COMPLETED from shim +orderer.example.com | [162 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [242 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a950ecb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [28f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Received message INIT from shim +peer1.org2.example.com | [28c 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c7916c1e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [313 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [243 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a950ecb-18e0-4714-8d65-41e5b46e5d2c]HandleMessage- COMPLETED. Notify +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [28d 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [244 01-12 22:56:38.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5a950ecb-18e0-4714-8d65-41e5b46e5d2c +peer0.org2.example.com | [314 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [290 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00eace57]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [245 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [1ef 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005f780), Data:(*common.BlockData)(0xc4215ad580), Metadata:(*common.BlockMetadata)(0xc4215ad5c0)}, doMVCCValidation=true -peer1.org2.example.com | [28d 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [237 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6c65e3f]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [315 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [28e 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c7916c1e]sending state message INIT +peer1.org1.example.com | [246 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [1fb 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [28e 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35fbe988]sending state message INIT -peer1.org1.example.com | [1f0 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [238 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [1fc 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [1f1 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [239 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c6c65e3f]Received INIT, initializing chaincode -peer0.org1.example.com | [1fd 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [23a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [316 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [291 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [28f 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7916c1e]Received message INIT from shim +peer0.org2.example.com | [317 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [247 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [31f71fd8-e2b7-442b-9fec-e580f9105e56] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [292 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [00eace57]Received INIT, initializing chaincode +peer0.org2.example.com | [318 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [290 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c7916c1e]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [248 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [293 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Init get response status: 200 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [1f2 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11892 -peer0.org1.example.com | [1fe 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [23b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6c65e3f]Init get response status: 200 +peer0.org2.example.com | [319 01-12 22:56:45.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [291 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [294 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Init succeeded. Sending COMPLETED orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org2.example.com | [23c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6c65e3f]Init succeeded. Sending COMPLETED -peer1.org1.example.com | ] -peer1.org2.example.com | [28f 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35fbe988]Received message INIT from shim -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [1ff 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [290 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35fbe988]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [23d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6c65e3f]Move state message COMPLETED -peer1.org1.example.com | [1f3 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx ID: [] to index -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | [291 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [23e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6c65e3f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [200 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [1f4 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer1.org2.example.com | [292 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [35fbe988]Received INIT, initializing chaincode -peer0.org1.example.com | [201 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [1f5 12-19 06:47:35.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11936], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org2.example.com | [23f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6c65e3f]send state message COMPLETED -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer1.org2.example.com | [293 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35fbe988]Init get response status: 200 -peer0.org1.example.com | [202 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [240 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6c65e3f]Received message COMPLETED from shim -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer1.org1.example.com | [1f6 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer0.org1.example.com | [203 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [241 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6c65e3f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [294 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35fbe988]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1f7 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [31a 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [249 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bdb82434-c925-4201-9fdd-2e7574d48e96] +peer1.org2.example.com | [292 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c7916c1e]Received INIT, initializing chaincode +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer0.org2.example.com | [31b 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [295 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Move state message COMPLETED +peer1.org1.example.com | [24a 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=476cd146-0462-40e3-8b98-d3488a47710e,syscc=true,proposal=0x0,canname=lscc:1.0.5 +peer1.org2.example.com | [293 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7916c1e]Init get response status: 200 +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer1.org1.example.com | [24b 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org1.example.com | [296 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00eace57]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [294 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7916c1e]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [31c 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org1.example.com | [24c 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [297 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]send state message COMPLETED +peer1.org2.example.com | [295 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7916c1e]Move state message COMPLETED +peer0.org2.example.com | [31d 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer1.org1.example.com | [24d 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer1.org2.example.com | [296 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c7916c1e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [298 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00eace57]Received message COMPLETED from shim +peer0.org2.example.com | [31e 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org1.example.com | [24e 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [476cd146]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [297 01-12 22:56:39.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7916c1e]send state message COMPLETED +peer0.org2.example.com | [31f 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [299 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00eace57]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [24f 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [298 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c7916c1e]Received message COMPLETED from shim +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org2.example.com | [320 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [29a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00eace57-7c6b-486b-8930-c572599c0f02]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [250 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [476cd146]sendExecuteMsg trigger event INIT orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [204 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [1f8 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [242 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6c65e3f-4980-4d3b-b011-97872c846d83]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [205 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [295 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35fbe988]Move state message COMPLETED -orderer.example.com | [15b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [206 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [1f9 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [243 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c6c65e3f-4980-4d3b-b011-97872c846d83 -orderer.example.com | [15c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [207 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [1fa 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [244 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [208 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [296 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35fbe988]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [15d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [245 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [209 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [1fb 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [297 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35fbe988]send state message COMPLETED -peer0.org1.example.com | [20a 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [246 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [739e86d8-d0da-4791-9818-aced998073ed] -orderer.example.com | [15e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [298 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35fbe988]Received message COMPLETED from shim -peer0.org1.example.com | [20b 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [1fc 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org2.example.com | [247 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [299 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [35fbe988]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [15f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [248 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c0bfe017-ec28-4246-a7f1-998300009eea] -peer0.org1.example.com | [20c 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [1fd 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [29a 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [35fbe988-a66d-41a8-b292-bc6b9879de66]HandleMessage- COMPLETED. Notify -orderer.example.com | [160 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [249 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=cac38e53-d237-43f3-89b5-9a918721e971,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer0.org1.example.com | [20d 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [1fe 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [20e 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [24a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [29b 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:35fbe988-a66d-41a8-b292-bc6b9879de66 -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [20f 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [1ff 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [24b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [29c 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [210 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [200 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [299 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c7916c1e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [29b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:00eace57-7c6b-486b-8930-c572599c0f02 +peer0.org2.example.com | [321 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [251 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [476cd146]Move state message INIT +orderer.example.com | [163 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [29a 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c7916c1e-cc58-4f39-a405-2e8d8335d4c5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [29c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [322 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [252 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [476cd146]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [164 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer1.org2.example.com | [29b 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c7916c1e-cc58-4f39-a405-2e8d8335d4c5 +peer0.org1.example.com | [29d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org2.example.com | [323 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [165 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org1.example.com | [253 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [29e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b0c4b2e4-69b9-4eb7-8061-aa27cb4e369c] +peer1.org2.example.com | [29c 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [166 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [324 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [29d 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [29f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [254 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [476cd146]sending state message INIT +orderer.example.com | [167 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org2.example.com | [29e 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [99bb0d36-80bc-46d9-8a92-efdb42946299] +peer0.org2.example.com | [325 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [255 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [476cd146]Received message INIT from shim +peer0.org1.example.com | [2a0 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [997282d1-a8f3-46c9-808b-2bdf504387af] +peer1.org2.example.com | [29f 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [168 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [326 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [256 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [476cd146]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [2a0 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [db13f6f9-327e-4aa3-91d6-ed96e3360acf] +peer0.org1.example.com | [2a1 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=c341cc8d-8819-4a95-a847-c4d75196a21a,syscc=true,proposal=0x0,canname=qscc:1.0.5 +orderer.example.com | [169 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org2.example.com | [327 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2a2 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +peer1.org2.example.com | [2a1 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=67fbb102-478c-4169-8bc6-6aea28154011,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer1.org1.example.com | [257 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2a3 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | [16a 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [328 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2a4 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org2.example.com | [2a2 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +orderer.example.com | [16b 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org1.example.com | [258 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [476cd146]Received INIT, initializing chaincode +peer0.org1.example.com | [2a5 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c341cc8d]Inside sendExecuteMessage. Message INIT +orderer.example.com | [16c 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [2a3 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [329 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [259 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [476cd146]Init get response status: 200 +peer0.org1.example.com | [2a6 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [16d 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [32a 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2a4 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer1.org1.example.com | [25a 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [476cd146]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2a7 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c341cc8d]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [32b 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [16e 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [2a5 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [67fbb102]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2a8 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c341cc8d]Move state message INIT +peer1.org1.example.com | [25b 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [476cd146]Move state message COMPLETED +orderer.example.com | [16f 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [32c 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2a9 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c341cc8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2a6 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [25c 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [476cd146]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [170 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [32d 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [2aa 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2a7 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [67fbb102]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [25d 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [476cd146]send state message COMPLETED +peer0.org2.example.com | [32e 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [171 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer1.org2.example.com | [2a8 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67fbb102]Move state message INIT +peer0.org1.example.com | [2ab 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c341cc8d]sending state message INIT +peer0.org1.example.com | [2ac 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Received message INIT from shim +peer1.org1.example.com | [25e 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [476cd146]Received message COMPLETED from shim +peer1.org2.example.com | [2a9 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67fbb102]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [32f 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [172 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [2ad 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c341cc8d]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [2aa 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [330 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [173 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +peer1.org1.example.com | [25f 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [476cd146]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2ae 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [331 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [2ab 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67fbb102]sending state message INIT +peer1.org1.example.com | [260 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [476cd146-0462-40e3-8b98-d3488a47710e]HandleMessage- COMPLETED. Notify +orderer.example.com | [174 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [2af 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c341cc8d]Received INIT, initializing chaincode +peer0.org2.example.com | [332 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [175 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer1.org2.example.com | [2ac 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67fbb102]Received message INIT from shim +peer1.org1.example.com | [261 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:476cd146-0462-40e3-8b98-d3488a47710e +peer0.org1.example.com | [2b0 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [333 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [176 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [2ad 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67fbb102]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [262 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [2b1 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Init get response status: 200 +peer0.org2.example.com | [334 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [2ae 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [177 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer1.org1.example.com | [263 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [2af 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [67fbb102]Received INIT, initializing chaincode +peer0.org1.example.com | [2b2 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [335 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [264 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [bdb82434-c925-4201-9fdd-2e7574d48e96] +orderer.example.com | [178 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [2b0 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org1.example.com | [2b3 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Move state message COMPLETED +peer1.org1.example.com | [265 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [179 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org2.example.com | [336 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [2b1 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67fbb102]Init get response status: 200 +peer1.org1.example.com | [266 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7748924d-3741-4f20-a085-68c5703b0a72] +peer0.org1.example.com | [2b4 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c341cc8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [337 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [17a 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [267 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=1cbf2e68-7f60-4db8-9a4e-8d72bdbba06a,syscc=true,proposal=0x0,canname=escc:1.0.5 +peer0.org1.example.com | [2b5 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]send state message COMPLETED +peer1.org2.example.com | [2b2 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67fbb102]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [338 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [268 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [17b 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [2b6 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c341cc8d]Received message COMPLETED from shim +peer0.org2.example.com | [339 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [269 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [2b3 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67fbb102]Move state message COMPLETED +orderer.example.com | [17c 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [2b7 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c341cc8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [33a 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [26a 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [17d 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [2b4 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67fbb102]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2b8 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c341cc8d-8819-4a95-a847-c4d75196a21a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [33b 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [17e 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [2b5 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67fbb102]send state message COMPLETED +peer0.org1.example.com | [2b9 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c341cc8d-8819-4a95-a847-c4d75196a21a +peer1.org1.example.com | [26b 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1cbf2e68]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [33c 01-12 22:56:45.08 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [2ba 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [17f 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org1.example.com | [26c 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [33d 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [180 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [2bb 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [26d 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1cbf2e68]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [2b6 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67fbb102]Received message COMPLETED from shim +orderer.example.com | [181 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [2bc 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [997282d1-a8f3-46c9-808b-2bdf504387af] +peer0.org2.example.com | [33e 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [2b7 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67fbb102]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [26e 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbf2e68]Move state message INIT +peer0.org1.example.com | [2bd 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [33f 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [2b8 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67fbb102-478c-4169-8bc6-6aea28154011]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [26f 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1cbf2e68]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | [182 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [340 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [2b9 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:67fbb102-478c-4169-8bc6-6aea28154011 +peer0.org1.example.com | [2be 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +orderer.example.com | [183 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org1.example.com | [270 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [341 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [2bf 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [2ba 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | [184 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer1.org1.example.com | [271 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbf2e68]sending state message INIT +peer0.org2.example.com | [342 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [2c0 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [2bb 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +orderer.example.com | [185 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org2.example.com | [343 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [272 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbf2e68]Received message INIT from shim +peer0.org1.example.com | [2c1 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2bc 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [db13f6f9-327e-4aa3-91d6-ed96e3360acf] +peer1.org1.example.com | [273 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbf2e68]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [344 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [186 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer1.org1.example.com | [274 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [345 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [187 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer1.org2.example.com | [2bd 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [2c2 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [275 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1cbf2e68]Received INIT, initializing chaincode +peer0.org2.example.com | [346 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [2be 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +orderer.example.com | [188 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [2c3 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [276 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [347 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2bf 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [189 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [2c4 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [277 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbf2e68]Init get response status: 200 +peer0.org2.example.com | [348 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [2c0 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [18a 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer1.org1.example.com | [278 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbf2e68]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2c5 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]Move state message COMPLETED +peer0.org2.example.com | [349 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [2c1 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [18b 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer1.org1.example.com | [279 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbf2e68]Move state message COMPLETED +peer0.org1.example.com | [2c6 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9015c99b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2c2 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [18c 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer1.org1.example.com | [27a 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1cbf2e68]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [34a 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [2c7 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]send state message COMPLETED +peer1.org2.example.com | [2c3 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [18d 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer1.org1.example.com | [27b 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1cbf2e68]send state message COMPLETED +peer0.org2.example.com | [34b 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [18e 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer1.org2.example.com | [2c4 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c845738]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2c8 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9015c99b]Received message COMPLETED from shim +peer1.org1.example.com | [27c 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1cbf2e68]Received message COMPLETED from shim +peer0.org2.example.com | [34c 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [2c5 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c845738]Move state message COMPLETED +peer1.org1.example.com | [27d 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1cbf2e68]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2c9 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9015c99b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [18f 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer1.org1.example.com | [27e 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1cbf2e68-7f60-4db8-9a4e-8d72bdbba06a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [34d 01-12 22:56:45.09 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [2c6 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8c845738]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2ca 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca]HandleMessage- COMPLETED. Notify +orderer.example.com | [190 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer1.org1.example.com | [27f 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1cbf2e68-7f60-4db8-9a4e-8d72bdbba06a +peer0.org1.example.com | [2cb 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca +peer1.org2.example.com | [2c7 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8c845738]send state message COMPLETED +peer0.org2.example.com | [34e 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [191 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer1.org2.example.com | [2c8 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8c845738]Received message COMPLETED from shim +orderer.example.com | [192 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [2cc 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [280 01-12 22:56:38.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [281 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org2.example.com | [2c9 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8c845738]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2cd 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [282 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [7748924d-3741-4f20-a085-68c5703b0a72] +orderer.example.com | [193 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org2.example.com | [34f 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [2ca 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8c8457383a5b87175038e8022bb553b48fff178c0c019a67fcd66f219c3de7a0]HandleMessage- COMPLETED. Notify +orderer.example.com | [194 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer0.org1.example.com | [2ce 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [350 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [283 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [2cb 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8c8457383a5b87175038e8022bb553b48fff178c0c019a67fcd66f219c3de7a0 +peer0.org2.example.com | [351 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [2cf 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [2cc 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [284 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [97918122-e7d1-460c-aa14-77be52475298] +orderer.example.com | [195 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer0.org2.example.com | [352 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [285 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=5005d630-61bc-4538-9d1b-f549b63aecb7,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [2d0 01-12 22:56:44.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [2cd 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [196 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer0.org2.example.com | [353 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [286 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +orderer.example.com | [197 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org1.example.com | [2d1 01-12 22:56:44.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421652210 +peer1.org2.example.com | [2ce 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [287 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [354 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | [198 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [2d2 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [2cf 01-12 22:56:39.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [288 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org2.example.com | [355 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [2d0 01-12 22:56:45.17 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 | [199 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org1.example.com | [289 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5005d630]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2d3 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [356 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a533c0), Data:(*common.BlockData)(0xc421b89900), Metadata:(*common.BlockMetadata)(0xc421b89940)}, doMVCCValidation=true +peer1.org2.example.com | [2d1 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | [19a 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org1.example.com | [28a 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [357 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [2d4 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer1.org2.example.com | [2d2 01-12 22:56:45.18 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 | [28b 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5005d630]sendExecuteMsg trigger event INIT +orderer.example.com | [19b 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +peer0.org1.example.com | [2d5 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [28c 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5005d630]Move state message INIT +orderer.example.com | [19c 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [358 01-12 22:56:45.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [2d6 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [2d3 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +orderer.example.com | [19d 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +peer1.org1.example.com | [28d 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5005d630]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2d4 01-12 22:56:45.18 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 | [359 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +peer0.org1.example.com | [2d7 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421886230, header 0xc421652240 +orderer.example.com | [19e 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [28e 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2d5 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11906 +orderer.example.com | [19f 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +peer0.org1.example.com | [2d8 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [28f 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5005d630]sending state message INIT +orderer.example.com | [1a0 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [2d6 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +peer0.org1.example.com | [2d9 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 +peer0.org2.example.com | ] +orderer.example.com | [1a1 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [2d7 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +peer1.org1.example.com | [290 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5005d630]Received message INIT from shim +peer0.org1.example.com | [2da 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 channel id: +peer0.org2.example.com | [35a 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx ID: [] to index +orderer.example.com | [1a2 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [2d8 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [2db 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 channel id: version: 1.0.5 +peer0.org2.example.com | [35b 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [291 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5005d630]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [1a3 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [2dc 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53,syscc=true,proposal=0xc421886230,canname=lscc:1.0.5 +peer0.org2.example.com | [35c 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25655], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [1a4 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [292 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | [1a5 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [35d 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer0.org1.example.com | [2dd 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org2.example.com | [2d9 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [293 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5005d630]Received INIT, initializing chaincode +orderer.example.com | [1a6 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [2de 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [35e 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [2da 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | [1a7 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [294 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5005d630]Init get response status: 200 +orderer.example.com | [1a8 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [2df 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [35f 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [1a9 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2db 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421960390 +peer1.org1.example.com | [295 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5005d630]Init succeeded. Sending COMPLETED +orderer.example.com | [1aa 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [360 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [2dc 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +peer0.org1.example.com | [2e0 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c5772f4d]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [1ab 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [296 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5005d630]Move state message COMPLETED +peer1.org2.example.com | [2dd 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [361 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org1.example.com | [2e1 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [1ac 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [2de 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [297 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5005d630]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2df 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +orderer.example.com | [1ad 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer0.org2.example.com | [362 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [298 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5005d630]send state message COMPLETED +peer0.org1.example.com | [2e2 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [2e0 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +orderer.example.com | [1ae 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017d238 gate 1515797797831256948 evaluation starts +peer0.org1.example.com | [2e3 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c5772f4d]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [363 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer1.org2.example.com | [2e1 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [299 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5005d630]Received message COMPLETED from shim +peer0.org1.example.com | [2e4 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5772f4d]Move state message TRANSACTION +peer1.org2.example.com | [2e2 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [1af 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [29a 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5005d630]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [364 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [2e5 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c5772f4d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [2e3 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4219eb000, header channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +orderer.example.com | [1b0 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org1.example.com | [29b 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5005d630-61bc-4538-9d1b-f549b63aecb7]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [365 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org1.example.com | [2e6 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [1b1 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [29c 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5005d630-61bc-4538-9d1b-f549b63aecb7 +peer0.org2.example.com | [366 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [2e4 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [2e7 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5772f4d]sending state message TRANSACTION +peer1.org1.example.com | [29d 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [367 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [2e8 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]Received message TRANSACTION from shim orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [211 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [29d 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [24c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer1.org2.example.com | [2e5 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [368 01-12 22:56:45.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [29e 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [2e9 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5772f4d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [212 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [29e 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [fe253836-1d75-40b5-9b1f-f66fa84897ff] -peer1.org1.example.com | [201 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org2.example.com | [24d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cac38e53]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [213 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [29f 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [202 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [214 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [24e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [215 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [203 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [24f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cac38e53]sendExecuteMsg trigger event INIT -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer0.org1.example.com | [216 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2a0 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f5c17885-4cbe-4226-a03b-7475d6969367] -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [217 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [250 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cac38e53]Move state message INIT -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -peer1.org1.example.com | [204 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [2a1 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=02176534-2c4f-4bb0-b0b6-6365adbd7159,syscc=true,proposal=0x0,canname=qscc:1.0.5 -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer0.org1.example.com | [218 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [205 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [251 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cac38e53]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer1.org1.example.com | [206 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [2a2 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -peer0.org1.example.com | [219 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | IEhjT+WlcQ== -peer0.org2.example.com | [252 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [207 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [21a 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [2a3 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [21b 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [208 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [253 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cac38e53]sending state message INIT -orderer.example.com | [161 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [2a4 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -peer1.org1.example.com | [209 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [21c 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [254 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cac38e53]Received message INIT from shim -peer1.org2.example.com | [2a5 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [02176534]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [21d 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [255 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cac38e53]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [20a 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [21e 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [2a6 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org2.example.com | [256 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [20b 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [21f 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [369 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [2e6 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [2ea 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c5772f4d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [29f 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [97918122-e7d1-460c-aa14-77be52475298] +peer0.org2.example.com | [36a 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [2e7 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [2eb 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [2a0 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [36b 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [2ec 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]Move state message COMPLETED +peer0.org2.example.com | [36c 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2e8 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [2a7 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [02176534]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [257 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cac38e53]Received INIT, initializing chaincode -peer1.org1.example.com | [20c 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [36d 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [2e9 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [2a1 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b2e5858d-c89c-4185-81bb-003ceb7415cb] +peer0.org1.example.com | [2ed 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5772f4d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [36e 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421843170 orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [2a8 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [02176534]Move state message INIT -peer0.org2.example.com | [258 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cac38e53]Init get response status: 200 -peer1.org1.example.com | [20d 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [220 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org2.example.com | [2a9 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [02176534]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [259 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cac38e53]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [221 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org2.example.com | [2aa 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [20e 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org2.example.com | [25a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cac38e53]Move state message COMPLETED -peer0.org1.example.com | [222 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org2.example.com | [2ab 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [02176534]sending state message INIT -peer1.org1.example.com | [20f 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [223 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [25b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cac38e53]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org1.example.com | [210 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [2ac 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [02176534]Received message INIT from shim -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org2.example.com | [25c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cac38e53]send state message COMPLETED -peer0.org1.example.com | [224 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [2ea 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [2ee 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]send state message COMPLETED +peer0.org2.example.com | [36f 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer1.org1.example.com | [2a2 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=af5b6116-f6fd-412f-b724-b21a501d347c,syscc=true,proposal=0x0,canname=qscc:1.0.5 +peer1.org2.example.com | [2eb 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [2ef 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5772f4d]Received message COMPLETED from shim +peer0.org2.example.com | [370 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [2ec 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org1.example.com | [2a3 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +peer0.org1.example.com | [2f0 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c5772f4d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [371 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [2ed 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org1.example.com | [2a4 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [2f1 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [372 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +peer1.org2.example.com | [2ef 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [2f2 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 +peer0.org2.example.com | [373 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [2f0 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [2f3 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [374 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [2f1 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [2f4 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [2a5 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer0.org2.example.com | [375 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421603000, header channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer1.org2.example.com | [2f2 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [2f5 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org2.example.com | [376 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [2f3 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [2f6 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [2f4 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [377 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org1.example.com | [2a6 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [af5b6116]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [2f7 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +peer1.org2.example.com | [2ee 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org1.example.com | [2a7 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [378 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [2f8 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org2.example.com | [2f5 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [2ad 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [02176534]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [211 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [162 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [225 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [25d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cac38e53]Received message COMPLETED from shim -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [212 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [379 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [2a8 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [af5b6116]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [2f9 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer1.org2.example.com | [2f6 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [1b2 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org1.example.com | [2a9 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af5b6116]Move state message INIT +peer0.org2.example.com | [37a 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [2fa 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org2.example.com | [2f7 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [2aa 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [af5b6116]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [2fb 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +orderer.example.com | [1b3 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 principal matched by identity 0 +peer0.org2.example.com | [37b 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [2f8 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [2ab 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2fc 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +orderer.example.com | [1b4 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +peer1.org2.example.com | [2f9 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [2fd 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer0.org2.example.com | [37c 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +peer1.org1.example.com | [2ac 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af5b6116]sending state message INIT +peer1.org2.example.com | [2fa 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [2fe 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +orderer.example.com | [1b5 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +peer1.org2.example.com | [2fb 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [37d 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [2ff 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [2fc 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +peer1.org1.example.com | [2ad 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af5b6116]Received message INIT from shim +peer0.org1.example.com | [300 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2fd 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2fe 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [2ae 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af5b6116]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [37e 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +peer0.org1.example.com | [301 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [2ff 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org1.example.com | [2af 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [302 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421876ea0 +orderer.example.com | 00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +peer1.org2.example.com | [300 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [37f 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [303 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +peer1.org1.example.com | [2b0 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [af5b6116]Received INIT, initializing chaincode +orderer.example.com | 00000040 88 95 6d d3 74 2c 02 |..m.t,.| +peer1.org2.example.com | [301 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [2b1 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [380 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [302 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [1b6 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [2b2 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af5b6116]Init get response status: 200 +peer0.org2.example.com | [381 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [304 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [303 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [1b7 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017d238 gate 1515797797831256948 evaluation succeeds +peer0.org2.example.com | [382 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [304 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [1b8 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2b3 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af5b6116]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [305 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [1b9 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [305 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [383 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [1ba 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2b4 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af5b6116]Move state message COMPLETED +orderer.example.com | [1bb 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [306 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [306 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +peer0.org2.example.com | [384 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [2b5 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af5b6116]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [1bc 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [307 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [307 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [385 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [2b6 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af5b6116]send state message COMPLETED +orderer.example.com | [1bd 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [308 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [308 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [2b7 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af5b6116]Received message COMPLETED from shim +peer0.org2.example.com | [386 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [1be 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [309 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [387 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [309 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42160a000, header channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +orderer.example.com | [1bf 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2b8 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [af5b6116]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [388 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [389 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [38a 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [38b 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [30a 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [30a 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [1c0 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [38c 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [30b 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [30b 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [2b9 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [af5b6116-f6fd-412f-b724-b21a501d347c]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [38d 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [1c1 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2ba 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:af5b6116-f6fd-412f-b724-b21a501d347c +peer0.org1.example.com | [30c 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [30c 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [38e 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [1c2 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2bb 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [30d 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [38f 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [2bc 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org2.example.com | [30d 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [1c3 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [30e 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [390 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [2bd 01-12 22:56:38.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b2e5858d-c89c-4185-81bb-003ceb7415cb] +peer1.org2.example.com | [30e 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [1c4 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2be 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [30f 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [391 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [2bf 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer1.org2.example.com | [30f 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [310 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [392 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [2c0 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [310 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [1c5 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2c1 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [393 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [311 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [1c6 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [311 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [2c2 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [394 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [312 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [1c7 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2c3 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [395 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [313 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [312 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [2c4 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [1c8 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [314 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [313 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [396 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [2c5 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [296c2ff8]Transaction completed. Sending COMPLETED +orderer.example.com | [1c9 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [315 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [2c6 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [296c2ff8]Move state message COMPLETED +peer0.org1.example.com | [314 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [397 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [2c7 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [296c2ff8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [316 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [1ca 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2c8 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [296c2ff8]send state message COMPLETED +peer0.org1.example.com | [315 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [398 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [317 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [2c9 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [296c2ff8]Received message COMPLETED from shim +orderer.example.com | [1cb 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [316 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [318 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [399 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [1cc 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [2ca 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [296c2ff8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [317 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [319 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [39a 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [2cb 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [296c2ff83c7baea29aceac85881b14f04e7f03398e3fe2524c387bbced4d3f04]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [318 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [1cd 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [2cc 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:296c2ff83c7baea29aceac85881b14f04e7f03398e3fe2524c387bbced4d3f04 +peer1.org2.example.com | [31a 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [39b 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [319 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [1ce 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [2cd 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [31b 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [39c 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [2ce 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [1cf 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [31b 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer1.org2.example.com | [31c 01-12 22:56:45.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2cf 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [39d 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [31a 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [2d0 01-12 22:56:38.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [31d 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1d0 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [2d1 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [31c 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [2d2 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [39e 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [1d1 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [31e 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [2d3 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [39f 01-12 22:56:45.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [1d2 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [31d 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [31f 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2d4 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421645d40 +peer0.org2.example.com | [3a0 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [31e 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [31f 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [2d5 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +peer1.org2.example.com | [320 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1d3 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [320 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3a1 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [2d6 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [321 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [321 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [3a2 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [2d7 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [1d4 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [322 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [322 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [2d8 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +peer0.org2.example.com | [3a3 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [323 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [3a4 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [2d9 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [1d5 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [323 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3a5 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [2da 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [1d6 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [3a6 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [3a7 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [324 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [324 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3a8 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [1d7 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [2db 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc420385000, header channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +peer0.org1.example.com | [325 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [325 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3a9 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [2dc 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [1d8 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [326 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [2dd 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [326 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3aa 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [327 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [2de 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [327 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1d9 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [328 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [2df 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [3ab 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [1da 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [329 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [328 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3ac 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1db 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer1.org1.example.com | [2e0 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [3ad 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [32a 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [329 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2e1 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [3ae 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1dc 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer1.org1.example.com | [2e2 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [32b 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [1dd 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer1.org2.example.com | [32a 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3af 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [32c 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [2e3 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [32b 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1de 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3b0 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [32d 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [2e4 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [1df 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3b1 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [32e 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [32c 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3b2 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2e5 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [1e0 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org2.example.com | [32d 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [32f 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [2e6 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [3b3 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [330 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [332 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [333 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [334 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [335 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [336 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [1e1 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [32e 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [2e7 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [337 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [32f 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [3b4 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1e2 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [338 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [2e8 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [330 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [3b5 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [331 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +orderer.example.com | [1e3 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [2e9 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [331 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [3b6 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [1e4 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +peer0.org1.example.com | [339 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [2ea 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [3b7 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [1e5 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +peer0.org1.example.com | [33a 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [2eb 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [332 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [33b 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [3b8 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [1e6 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +peer1.org2.example.com | [333 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [2ec 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [1e7 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [33c 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [3b9 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [334 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [2ed 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [1e8 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [33d 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [335 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [1e9 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [2ee 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [3ba 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [33e 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [336 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [1ea 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [2ef 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [2f0 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [3bb 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [33f 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [340 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [341 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [342 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [343 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [344 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [337 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [1eb 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2f1 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3bc 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [345 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [346 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3bd 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [338 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [1ec 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [347 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2f2 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [1ed 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org2.example.com | [339 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3be 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [348 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [1ee 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer1.org1.example.com | [2f3 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [33a 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [349 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [34a 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [1ef 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [1f0 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [1f1 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [1f2 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [1f3 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [1f4 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2f4 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [33b 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [1f5 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3bf 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [34b 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2f5 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [33c 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3c0 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [1f6 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [34c 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2f6 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [33d 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3c1 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [1f7 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [2f7 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [34d 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3c2 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [1f8 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer1.org2.example.com | [33e 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [2f8 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [34e 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [34f 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [350 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [351 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [352 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [353 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [354 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [33f 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [2f9 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [3c3 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [1f9 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [355 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [340 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2fa 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [3c4 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [1fa 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [341 01-12 22:56:45.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [342 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [343 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3c5 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [2fb 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [2fc 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [1fb 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [356 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [3c6 01-12 22:56:45.15 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [2fd 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [344 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [345 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [346 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [357 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [358 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [2fe 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [2ff 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [1fc 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [359 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [35a 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [35b 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [300 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [3c7 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [226 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [2ae 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [25e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cac38e53]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [213 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [2af 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [02176534]Received INIT, initializing chaincode -peer0.org1.example.com | [227 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [25f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cac38e53-d237-43f3-89b5-9a918721e971]HandleMessage- COMPLETED. Notify -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [214 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [228 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [215 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [260 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cac38e53-d237-43f3-89b5-9a918721e971 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org1.example.com | [216 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [229 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [217 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [2b0 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [261 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org1.example.com | [218 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [22a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6bb87e06-382d-44b7-abdf-c278c8e59d69] -peer1.org1.example.com | [219 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [22b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=244b1f37-b1ed-4d40-a748-22d9bf5667dc,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer0.org2.example.com | [262 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [21a 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org2.example.com | [263 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c0bfe017-ec28-4246-a7f1-998300009eea] -peer0.org1.example.com | [22c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -peer1.org2.example.com | [2b1 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [02176534]Init get response status: 200 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer1.org1.example.com | [21b 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [2b2 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [02176534]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [264 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [22d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [347 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [35c 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [301 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [3c8 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [348 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [35d 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [302 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer0.org2.example.com | [3c9 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [35e 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [349 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [35f 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [360 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [303 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [3ca 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [34a 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [361 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [304 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [362 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3cb 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [34b 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer1.org1.example.com | [305 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [363 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [3cc 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer0.org1.example.com | [364 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [34c 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [34d 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [3cd 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [306 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [365 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [34e 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [307 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +peer0.org1.example.com | [366 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [34f 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [3ce 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [308 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [367 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [3cf 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [350 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [368 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer0.org2.example.com | [3d0 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [351 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [309 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [369 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [3d1 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer0.org1.example.com | [36a 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [352 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [30a 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [36b 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [3d2 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [21c 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [2b3 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [02176534]Move state message COMPLETED -peer0.org2.example.com | [265 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a8374cb9-327a-4953-b667-4add4fb6989d] -peer0.org1.example.com | [22e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -orderer.example.com | [163 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [21d 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2b4 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [02176534]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [266 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=c0ef0164-b84d-43d4-ad3e-bc3426c1f554,syscc=true,proposal=0x0,canname=escc:1.0.5 -orderer.example.com | [164 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org1.example.com | [21e 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [22f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [244b1f37]Inside sendExecuteMessage. Message INIT -orderer.example.com | [165 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [21f 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [267 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer1.org2.example.com | [2b5 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [02176534]send state message COMPLETED -orderer.example.com | [166 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [220 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [230 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [2b6 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [02176534]Received message COMPLETED from shim -orderer.example.com | [167 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer1.org1.example.com | [221 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [268 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [231 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [244b1f37]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [222 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [168 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [2b7 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [02176534]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [223 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [232 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244b1f37]Move state message INIT -peer0.org2.example.com | [269 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [169 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer1.org1.example.com | [224 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [233 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [244b1f37]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [16a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [225 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [26a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c0ef0164]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [2b8 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [02176534-2c4f-4bb0-b0b6-6365adbd7159]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [226 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [16b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer1.org1.example.com | [227 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [234 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [26b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [2b9 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:02176534-2c4f-4bb0-b0b6-6365adbd7159 -peer1.org1.example.com | [228 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [16c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [235 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244b1f37]sending state message INIT -peer1.org2.example.com | [2ba 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [26c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c0ef0164]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [229 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [236 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Received message INIT from shim -orderer.example.com | [16d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [26d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0ef0164]Move state message INIT -peer1.org1.example.com | [22a 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [2bb 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [237 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [244b1f37]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [26e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c0ef0164]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [16e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [2bc 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f5c17885-4cbe-4226-a03b-7475d6969367] -peer1.org1.example.com | [22b 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [26f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [238 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [16f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [2bd 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [270 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0ef0164]sending state message INIT -peer1.org1.example.com | [22c 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [239 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [244b1f37]Received INIT, initializing chaincode -peer1.org2.example.com | [2be 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -orderer.example.com | [170 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [271 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0ef0164]Received message INIT from shim -peer1.org2.example.com | [2bf 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [23a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [22d 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [171 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org2.example.com | [272 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0ef0164]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [2c0 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [22e 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [23b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Init get response status: 200 -orderer.example.com | [172 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [273 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [22f 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [23c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2c1 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | [173 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org2.example.com | [274 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c0ef0164]Received INIT, initializing chaincode -peer1.org2.example.com | [2c2 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [23d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Move state message COMPLETED -orderer.example.com | [174 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [230 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [275 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [276 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0ef0164]Init get response status: 200 -peer0.org2.example.com | [277 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0ef0164]Init succeeded. Sending COMPLETED -orderer.example.com | [175 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [23e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [244b1f37]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2c3 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [231 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [278 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0ef0164]Move state message COMPLETED -orderer.example.com | [176 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [2c4 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d01f420]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [23f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]send state message COMPLETED -peer0.org2.example.com | [279 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0ef0164]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [232 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [2c5 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d01f420]Move state message COMPLETED -orderer.example.com | [177 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org2.example.com | [27a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0ef0164]send state message COMPLETED -peer0.org1.example.com | [240 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244b1f37]Received message COMPLETED from shim -peer1.org1.example.com | [233 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [27b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0ef0164]Received message COMPLETED from shim -orderer.example.com | [178 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [2c6 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0d01f420]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [241 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [244b1f37]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [234 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [179 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer1.org2.example.com | [2c7 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0d01f420]send state message COMPLETED -peer0.org1.example.com | [242 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [244b1f37-b1ed-4d40-a748-22d9bf5667dc]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [27c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c0ef0164]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2c8 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0d01f420]Received message COMPLETED from shim -peer1.org1.example.com | [235 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [17a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | [27d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c0ef0164-b84d-43d4-ad3e-bc3426c1f554]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [243 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:244b1f37-b1ed-4d40-a748-22d9bf5667dc -peer1.org2.example.com | [2c9 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d01f420]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [236 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [27e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c0ef0164-b84d-43d4-ad3e-bc3426c1f554 -orderer.example.com | [17b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [244 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [27f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2ca 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0d01f42057b400c8744f0a531dfb38ecaf9f90f499ee6046524abe7713945d50]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [237 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [17c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org2.example.com | [280 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [245 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [238 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [2cb 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0d01f42057b400c8744f0a531dfb38ecaf9f90f499ee6046524abe7713945d50 -peer0.org1.example.com | [246 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6bb87e06-382d-44b7-abdf-c278c8e59d69] -peer0.org2.example.com | [281 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a8374cb9-327a-4953-b667-4add4fb6989d] -orderer.example.com | [17d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [2cc 12-19 06:47:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [239 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [247 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [23a 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [282 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [17e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer1.org2.example.com | [2cd 12-19 06:47:35.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [283 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [eede7358-8096-4fba-ab74-1de9bca78446] -peer0.org1.example.com | [248 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [088ff8ee-541b-4314-b5dd-25312f70079b] -orderer.example.com | [17f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org2.example.com | [284 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=4bdfac45-4bb7-4cdf-aa5d-494f1ef806d2,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer1.org1.example.com | [23b 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2ce 12-19 06:47:35.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [285 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -orderer.example.com | [180 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [249 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=1f51b4e6-8dce-4eeb-8dd2-cc7928bd3620,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer0.org2.example.com | [286 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [287 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org1.example.com | [23c 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [2cf 12-19 06:47:35.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [24a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org2.example.com | [288 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4bdfac45]Inside sendExecuteMessage. Message INIT -orderer.example.com | [181 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer1.org2.example.com | [2d0 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer0.org2.example.com | [289 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [23d 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [24b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [28a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4bdfac45]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [2d1 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -orderer.example.com | [182 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer0.org2.example.com | [28b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bdfac45]Move state message INIT -peer1.org1.example.com | [23e 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [24c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org2.example.com | [28c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bdfac45]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2d2 12-19 06:47:41.61 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 | [23f 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [183 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [24d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f51b4e6]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [28d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [240 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [184 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [24e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [2d3 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [28e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bdfac45]sending state message INIT -peer1.org1.example.com | [241 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [24f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f51b4e6]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [28f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bdfac45]Received message INIT from shim -orderer.example.com | [185 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [2d4 12-19 06:47:41.61 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 | [290 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bdfac45]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [250 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f51b4e6]Move state message INIT -peer0.org2.example.com | [291 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [186 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [2d5 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org1.example.com | [242 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [251 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f51b4e6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [292 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4bdfac45]Received INIT, initializing chaincode -orderer.example.com | [187 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer1.org2.example.com | [2d6 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org2.example.com | [293 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bdfac45]Init get response status: 200 -peer0.org1.example.com | [252 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [188 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [243 12-19 06:47:35.27 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [294 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bdfac45]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [253 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f51b4e6]sending state message INIT -orderer.example.com | [189 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer1.org2.example.com | [2d7 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org2.example.com | [295 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bdfac45]Move state message COMPLETED -peer1.org1.example.com | [244 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [254 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Received message INIT from shim -orderer.example.com | [18a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [2d8 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [296 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bdfac45]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [255 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f51b4e6]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [245 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [297 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bdfac45]send state message COMPLETED -peer1.org2.example.com | [2d9 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [298 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bdfac45]Received message COMPLETED from shim -peer0.org1.example.com | [256 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [18b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer1.org1.example.com | [246 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [2da 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [299 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bdfac45]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [18c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [257 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1f51b4e6]Received INIT, initializing chaincode -peer1.org1.example.com | [247 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [29a 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bdfac45-4bb7-4cdf-aa5d-494f1ef806d2]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2db 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219f4450 -peer0.org2.example.com | [29b 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4bdfac45-4bb7-4cdf-aa5d-494f1ef806d2 -orderer.example.com | [18d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [258 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Init get response status: 200 -peer1.org1.example.com | [248 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [2dc 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer0.org2.example.com | [29c 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [18e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer0.org2.example.com | [29d 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [2dd 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [249 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [259 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2de 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [18f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [25a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Move state message COMPLETED -peer1.org1.example.com | [24a 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [29e 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [eede7358-8096-4fba-ab74-1de9bca78446] -peer1.org2.example.com | [2df 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -orderer.example.com | [190 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer1.org1.example.com | [24b 12-19 06:47:35.28 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [29f 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [2e0 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [25b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f51b4e6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2a0 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bf8fc2fc-d8be-4584-b2ef-9789129fae5f] -peer1.org2.example.com | [2e1 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [191 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [25c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]send state message COMPLETED -peer1.org1.example.com | [24c 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [2a1 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=d9713bb1-3282-40a5-bbd1-0d62f582a85d,syscc=true,proposal=0x0,canname=qscc:1.0.5 -peer0.org1.example.com | [25d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f51b4e6]Received message COMPLETED from shim -orderer.example.com | [192 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer1.org2.example.com | [2e2 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a18000, header channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer1.org1.example.com | [24d 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [2a2 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -peer1.org2.example.com | [2e3 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [25e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f51b4e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [193 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer1.org1.example.com | [24e 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [2e4 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [2a3 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [25f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f51b4e6-8dce-4eeb-8dd2-cc7928bd3620]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [24f 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [31e70590-a05a-44b6-bb30-cbb92c695848] -orderer.example.com | [194 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org2.example.com | [2a4 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -peer1.org2.example.com | [2e5 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [250 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=61df8436-f377-43b7-af19-2b636536680a,syscc=true,proposal=0x0,canname=cscc:1.0.5 -peer0.org1.example.com | [260 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1f51b4e6-8dce-4eeb-8dd2-cc7928bd3620 -peer0.org2.example.com | [2a5 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d9713bb1]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [2e6 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [195 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org2.example.com | [2e7 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [251 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -orderer.example.com | [196 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer1.org1.example.com | [252 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2a6 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [261 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2e8 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [197 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer1.org1.example.com | [253 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -peer0.org1.example.com | [262 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [2e9 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [2a7 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d9713bb1]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [254 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [61df8436]Inside sendExecuteMessage. Message INIT -orderer.example.com | [198 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [263 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [088ff8ee-541b-4314-b5dd-25312f70079b] -peer1.org2.example.com | [2ea 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [2a8 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d9713bb1]Move state message INIT -peer1.org1.example.com | [255 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [199 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer1.org2.example.com | [2eb 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [264 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [19a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [2a9 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d9713bb1]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [256 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [61df8436]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [265 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f503ac9c-90eb-4a5e-b44f-62db064656c8] -peer1.org2.example.com | [2ec 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [19b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer1.org1.example.com | [257 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [61df8436]Move state message INIT -peer0.org2.example.com | [2aa 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2ed 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [19c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [266 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=69d7c277-b133-41e3-9b1d-b91c766a37ed,syscc=true,proposal=0x0,canname=escc:1.0.5 -peer1.org1.example.com | [258 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [61df8436]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2ee 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [2ab 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d9713bb1]sending state message INIT -peer0.org1.example.com | [267 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | [19d 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -peer1.org1.example.com | [259 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2ac 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9713bb1]Received message INIT from shim -peer1.org2.example.com | [2f0 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org1.example.com | [268 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [25a 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [61df8436]sending state message INIT -orderer.example.com | [19e 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [269 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org2.example.com | [2ef 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [2ad 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d9713bb1]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [25b 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [61df8436]Received message INIT from shim -orderer.example.com | [19f 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer1.org2.example.com | [2f2 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [26a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [69d7c277]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2ae 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2f1 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [25c 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [61df8436]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [1a0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [26b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [2af 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d9713bb1]Received INIT, initializing chaincode -peer1.org2.example.com | [2f3 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [25d 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1a1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [26c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [69d7c277]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [2f4 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [2b0 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [25e 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [61df8436]Received INIT, initializing chaincode -orderer.example.com | [1a2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [2f5 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [26d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69d7c277]Move state message INIT -peer1.org1.example.com | [25f 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | [1a3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [2b1 12-19 06:47:35.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9713bb1]Init get response status: 200 -orderer.example.com | [1a4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [2f6 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [26e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69d7c277]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [260 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [61df8436]Init get response status: 200 -peer0.org2.example.com | [2b2 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9713bb1]Init succeeded. Sending COMPLETED -orderer.example.com | [1a5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [26f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2f7 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [261 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [61df8436]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2b3 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9713bb1]Move state message COMPLETED -peer0.org1.example.com | [270 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69d7c277]sending state message INIT -orderer.example.com | [1a6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [2f8 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [1a7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [262 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [61df8436]Move state message COMPLETED -peer0.org2.example.com | [2b4 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d9713bb1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [271 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Received message INIT from shim -peer1.org2.example.com | [2f9 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [1a8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [272 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [69d7c277]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [263 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [61df8436]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2b5 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9713bb1]send state message COMPLETED -orderer.example.com | [1a9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2fa 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [2b6 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d9713bb1]Received message COMPLETED from shim -peer1.org1.example.com | [264 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [61df8436]send state message COMPLETED -peer0.org1.example.com | [273 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [1aa 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [2fb 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2b7 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d9713bb1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [274 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [69d7c277]Received INIT, initializing chaincode -orderer.example.com | [1ab 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [265 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [61df8436]Received message COMPLETED from shim -peer0.org1.example.com | [275 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [2b8 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d9713bb1-3282-40a5-bbd1-0d62f582a85d]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2fc 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [1ac 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [276 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Init get response status: 200 -peer1.org1.example.com | [266 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [61df8436]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2fd 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [2b9 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d9713bb1-3282-40a5-bbd1-0d62f582a85d -peer0.org1.example.com | [277 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Init succeeded. Sending COMPLETED -orderer.example.com | [1ad 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer1.org1.example.com | [267 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [61df8436-f377-43b7-af19-2b636536680a]HandleMessage- COMPLETED. Notify -orderer.example.com | [1ae 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181310 gate 1513666054541945100 evaluation starts -peer1.org2.example.com | [2fe 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [2ba 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [278 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Move state message COMPLETED -peer1.org1.example.com | [268 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:61df8436-f377-43b7-af19-2b636536680a -orderer.example.com | [1af 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [2ff 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [2bb 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [279 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [69d7c277]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [269 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [300 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [27a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]send state message COMPLETED -orderer.example.com | [1b0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org2.example.com | [2bc 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [bf8fc2fc-d8be-4584-b2ef-9789129fae5f] -peer1.org1.example.com | [26a 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [301 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [1b1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [27b 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69d7c277]Received message COMPLETED from shim -peer1.org1.example.com | [26b 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [31e70590-a05a-44b6-bb30-cbb92c695848] -peer0.org2.example.com | [2bd 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [27c 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69d7c277]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2be 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org2.example.com | [302 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [26c 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [303 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [2bf 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [304 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [27d 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69d7c277-b133-41e3-9b1d-b91c766a37ed]HandleMessage- COMPLETED. Notify -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [305 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [26d 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8a8078cd-60b6-479a-a016-e78835d43410] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [27e 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:69d7c277-b133-41e3-9b1d-b91c766a37ed -peer1.org2.example.com | [306 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [2c0 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [26e 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=4348bea5-bcba-41ee-8d57-d20ba484f8e5,syscc=true,proposal=0x0,canname=lscc:1.0.5 -peer1.org2.example.com | [307 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org2.example.com | [2c1 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [26f 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [27f 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [308 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [270 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [280 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [309 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org1.example.com | [271 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org2.example.com | [2c2 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [30a 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [281 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f503ac9c-90eb-4a5e-b44f-62db064656c8] -peer1.org2.example.com | [30b 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [272 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4348bea5]Inside sendExecuteMessage. Message INIT -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org2.example.com | [2c3 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [30c 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [30d 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [30e 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer1.org1.example.com | [273 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [282 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [2c4 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9d9b8df]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [30f 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [283 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [dde36446-2216-4513-a077-383906d07c65] -peer1.org2.example.com | [310 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [1b2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer1.org1.example.com | [274 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4348bea5]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [311 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [1b3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 principal evaluation fails -peer0.org1.example.com | [284 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=55b1faef-f5b4-465f-957f-03cab6e6c178,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer1.org1.example.com | [275 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4348bea5]Move state message INIT -peer0.org2.example.com | [2c5 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9d9b8df]Move state message COMPLETED -peer1.org2.example.com | [312 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [1b4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181310 gate 1513666054541945100 evaluation fails -peer1.org1.example.com | [276 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4348bea5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [285 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org2.example.com | [313 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [1b5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420180020 gate 1513666054543313800 evaluation starts -peer0.org2.example.com | [2c6 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b9d9b8df]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [277 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [286 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [314 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [1b6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [278 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4348bea5]sending state message INIT -peer0.org2.example.com | [2c7 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9d9b8df]send state message COMPLETED -peer0.org1.example.com | [287 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [315 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [1b7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [288 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55b1faef]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [316 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [1b8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [279 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4348bea5]Received message INIT from shim -peer0.org1.example.com | [289 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [317 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [2c8 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b9d9b8df]Received message COMPLETED from shim -peer0.org1.example.com | [28a 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55b1faef]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [318 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [28b 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55b1faef]Move state message INIT -peer1.org1.example.com | [27a 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4348bea5]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [319 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2c9 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b9d9b8df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [28c 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55b1faef]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [31a 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [28d 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2ca 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b9d9b8dfec311686ac7f88f17d171316845e13fb7b480cde2e8917bae6973463]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [27b 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [31b 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [28e 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55b1faef]sending state message INIT -peer1.org2.example.com | [31c 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [28f 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Received message INIT from shim -peer0.org2.example.com | [2cb 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b9d9b8dfec311686ac7f88f17d171316845e13fb7b480cde2e8917bae6973463 -peer1.org1.example.com | [27c 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4348bea5]Received INIT, initializing chaincode -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [290 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55b1faef]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [31d 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27d 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4348bea5]Init get response status: 200 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [291 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2cc 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [31e 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [292 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [55b1faef]Received INIT, initializing chaincode -peer1.org1.example.com | [27e 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4348bea5]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [293 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Init get response status: 200 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org2.example.com | [2cd 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [294 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [27f 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4348bea5]Move state message COMPLETED -peer1.org2.example.com | [31f 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [295 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Move state message COMPLETED -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [280 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4348bea5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [320 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [2ce 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [296 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55b1faef]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org2.example.com | [321 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [281 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4348bea5]send state message COMPLETED -peer0.org1.example.com | [297 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]send state message COMPLETED -peer0.org1.example.com | [298 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55b1faef]Received message COMPLETED from shim -peer1.org2.example.com | [322 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2cf 12-19 06:47:35.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [282 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4348bea5]Received message COMPLETED from shim -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [299 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55b1faef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [323 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [283 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4348bea5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [29a 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55b1faef-f5b4-465f-957f-03cab6e6c178]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2d0 12-19 06:47:41.44 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 | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [29b 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55b1faef-f5b4-465f-957f-03cab6e6c178 -peer1.org2.example.com | [324 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [284 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4348bea5-bcba-41ee-8d57-d20ba484f8e5]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [29c 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org2.example.com | [2d1 12-19 06:47:41.45 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer0.org1.example.com | [29d 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [325 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [29e 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [dde36446-2216-4513-a077-383906d07c65] -peer1.org1.example.com | [285 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4348bea5-bcba-41ee-8d57-d20ba484f8e5 -peer0.org2.example.com | [2d2 12-19 06:47:41.45 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 | [29f 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [326 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [286 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1b9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer0.org1.example.com | [2a0 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4420853f-2399-408b-86db-6b2c4e70d1db] -peer0.org2.example.com | [2d3 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer1.org1.example.com | [287 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [2a1 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=321fe956-6241-40d7-aef4-69a9c5c7c83e,syscc=true,proposal=0x0,canname=qscc:1.0.5 -peer1.org2.example.com | [327 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [1ba 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 principal matched by identity 0 -peer1.org1.example.com | [288 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [8a8078cd-60b6-479a-a016-e78835d43410] -peer0.org1.example.com | [2a2 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -peer0.org2.example.com | [2d4 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org2.example.com | [328 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [289 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2a3 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [329 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [28a 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f46ec9ca-7110-437a-bb1d-66e73c4f9bbe] -peer0.org2.example.com | [2d5 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -orderer.example.com | [1bb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -peer1.org2.example.com | [32a 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [28b 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=aff97eac-3395-4bbc-9413-3968a9e53f60,syscc=true,proposal=0x0,canname=escc:1.0.5 -peer0.org1.example.com | [2a4 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -orderer.example.com | 00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -peer0.org2.example.com | [2d6 12-19 06:47:41.48 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer1.org1.example.com | [28c 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | [1bc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -peer0.org2.example.com | [2d7 12-19 06:47:41.48 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org1.example.com | [2a5 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [321fe956]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [32b 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [28d 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -peer0.org2.example.com | [2d8 12-19 06:47:41.48 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org1.example.com | [2a6 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [28e 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org2.example.com | [32c 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -peer0.org2.example.com | [2d9 12-19 06:47:41.48 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [2a7 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [321fe956]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [28f 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [aff97eac]Inside sendExecuteMessage. Message INIT -orderer.example.com | 00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -peer1.org2.example.com | [32d 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [2db 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [2a8 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [321fe956]Move state message INIT -orderer.example.com | 00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -peer1.org2.example.com | [32e 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [2da 12-19 06:47:41.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [290 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2a9 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [321fe956]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1bd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [32f 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [2dc 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [291 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [aff97eac]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2aa 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [1be 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420180020 gate 1513666054543313800 evaluation succeeds -peer1.org1.example.com | [292 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aff97eac]Move state message INIT -peer1.org2.example.com | [330 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [2dd 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c13f50 -peer1.org1.example.com | [293 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [aff97eac]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2ab 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [321fe956]sending state message INIT -orderer.example.com | [1bf 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [331 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [294 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2de 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer0.org1.example.com | [2ac 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Received message INIT from shim -peer1.org1.example.com | [295 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aff97eac]sending state message INIT -peer0.org2.example.com | [2df 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [1c0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [296 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aff97eac]Received message INIT from shim -peer1.org1.example.com | [297 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aff97eac]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [332 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [2ad 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [321fe956]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2e0 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [1c1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [298 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2ae 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2e1 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer1.org2.example.com | [333 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [1c2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [299 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [aff97eac]Received INIT, initializing chaincode -peer0.org1.example.com | [2af 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [321fe956]Received INIT, initializing chaincode -peer1.org2.example.com | [334 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [29a 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [2e2 12-19 06:47:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [1c3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [335 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [29b 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aff97eac]Init get response status: 200 -peer0.org1.example.com | [2b0 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [336 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [2b1 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Init get response status: 200 -peer1.org1.example.com | [29c 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aff97eac]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2e3 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [29d 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aff97eac]Move state message COMPLETED -peer1.org2.example.com | [337 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [1c4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [29e 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aff97eac]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2b2 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [338 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [29f 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aff97eac]send state message COMPLETED -orderer.example.com | [1c5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2e4 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4215ae000, header channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer0.org1.example.com | [2b3 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Move state message COMPLETED -peer1.org1.example.com | [2a0 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aff97eac]Received message COMPLETED from shim -peer0.org2.example.com | [2e5 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | [1c6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2a1 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [aff97eac]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [339 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [2e6 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [2b4 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [321fe956]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2a2 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [aff97eac-3395-4bbc-9413-3968a9e53f60]HandleMessage- COMPLETED. Notify -orderer.example.com | [1c7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [33a 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [2b5 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]send state message COMPLETED -peer1.org1.example.com | [2a3 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:aff97eac-3395-4bbc-9413-3968a9e53f60 -peer0.org2.example.com | [2e7 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [1c8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2b6 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [321fe956]Received message COMPLETED from shim -peer1.org1.example.com | [2a4 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [33b 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [2a5 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [2b7 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [321fe956]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1c9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2e8 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [2a6 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f46ec9ca-7110-437a-bb1d-66e73c4f9bbe] -peer1.org2.example.com | [33c 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2b8 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [321fe956-6241-40d7-aef4-69a9c5c7c83e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2e9 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [1ca 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2a7 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2a8 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [92d76e9c-1b4e-4973-9472-7260e7a0c59c] -peer0.org1.example.com | [2b9 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:321fe956-6241-40d7-aef4-69a9c5c7c83e -peer0.org2.example.com | [2ea 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [1cb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [33d 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2a9 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=3851a147-5f6a-4da6-bc0a-12bafef4991a,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org1.example.com | [2ba 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1cc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2eb 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [2aa 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org2.example.com | [33e 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [1cd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2ab 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2bb 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [2ec 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [33f 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [1ce 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2ac 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [340 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2bc 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4420853f-2399-408b-86db-6b2c4e70d1db] -peer0.org2.example.com | [2ed 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [2ad 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3851a147]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1cf 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2bd 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [2ee 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [341 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2ae 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2be 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org2.example.com | [342 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [2ef 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [1d0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2bf 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [2af 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3851a147]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [343 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2f0 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [2c0 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2b0 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3851a147]Move state message INIT -orderer.example.com | [1d1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [344 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [2c1 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [2f1 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [2b1 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3851a147]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1d2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [345 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [2f2 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [2b2 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2c2 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | [1d3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [346 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [2f3 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [2c3 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [347 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2b3 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3851a147]sending state message INIT -orderer.example.com | [1d4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [2f4 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [1d5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [2c4 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [2b4 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3851a147]Received message INIT from shim -peer1.org2.example.com | [348 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [2f5 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [2c5 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]Move state message COMPLETED -orderer.example.com | [1d6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [2b5 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3851a147]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [349 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [2c6 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25cce164]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2f6 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [1d7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [2b6 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [34a 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [2f7 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [1d8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [2c7 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]send state message COMPLETED -peer1.org1.example.com | [2b7 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3851a147]Received INIT, initializing chaincode -peer0.org2.example.com | [2f8 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [1d9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [34b 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [1da 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org2.example.com | [2f9 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [34c 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [2c8 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25cce164]Received message COMPLETED from shim -peer1.org1.example.com | [2b8 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3851a147]Init get response status: 200 -orderer.example.com | [1db 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [34d 12-19 06:47:41.66 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [2fa 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [2c9 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25cce164]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2b9 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3851a147]Init succeeded. Sending COMPLETED -orderer.example.com | [1dc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [34e 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [2fb 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [2ca 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2fc 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [1dd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [2ba 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3851a147]Move state message COMPLETED -peer1.org2.example.com | [34f 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [2fd 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [1de 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [2cb 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 -peer1.org2.example.com | [350 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [2bb 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3851a147]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [1df 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [2fe 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [351 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [2cc 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2bc 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3851a147]send state message COMPLETED -peer0.org2.example.com | [2ff 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [352 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -orderer.example.com | [1e0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [300 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [2cd 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [2bd 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3851a147]Received message COMPLETED from shim -peer1.org2.example.com | [353 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | [1e1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org1.example.com | [2ce 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [2be 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3851a147]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [301 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [354 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [1e2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org2.example.com | [302 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [2cf 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [2bf 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3851a147-5f6a-4da6-bc0a-12bafef4991a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [355 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [303 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [1e3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer1.org1.example.com | [2c0 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3851a147-5f6a-4da6-bc0a-12bafef4991a -peer0.org1.example.com | [2d0 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [304 12-19 06:47:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [356 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219f6140), Data:(*common.BlockData)(0xc421a027c0), Metadata:(*common.BlockMetadata)(0xc421a02800)}, doMVCCValidation=true -orderer.example.com | [1e4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [2c1 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [305 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [2d1 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420350630 -peer1.org2.example.com | [357 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | [1e5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2c2 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [358 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [306 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [2d2 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [2c3 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [92d76e9c-1b4e-4973-9472-7260e7a0c59c] -orderer.example.com | [1e6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [2d3 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [359 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -peer0.org2.example.com | [307 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [1e7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [2d4 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer1.org1.example.com | [2c4 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [308 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [1e8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [36c 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [353 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [30b 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [36d 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [1fd 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [3d3 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [354 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [30c 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [3d4 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [36e 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [355 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [30d 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [356 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42193e300), Data:(*common.BlockData)(0xc4218f1720), Metadata:(*common.BlockMetadata)(0xc4218f1760)}, doMVCCValidation=true +peer1.org1.example.com | [30e 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [3d5 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [30f 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [36f 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [357 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [3d6 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [310 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org1.example.com | [370 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [358 01-12 22:56:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org1.example.com | [311 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3d7 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [359 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +peer0.org1.example.com | [371 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [312 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3d8 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [372 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3d9 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [313 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11906 +peer0.org2.example.com | [3da 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer1.org1.example.com | [314 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [373 01-12 22:56:44.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [3db 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [315 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" peer1.org2.example.com | ] -peer0.org1.example.com | [2d5 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [2c5 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [623455cc-ceda-4b36-a8e0-62d9f03fd47e] -orderer.example.com | [1e9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org2.example.com | [309 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [2d6 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [35a 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx ID: [] to index -orderer.example.com | [1ea 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [2c6 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=8fcfce64-723a-402b-87ba-2d5cca78d3ca,syscc=true,proposal=0x0,canname=qscc:1.0.5 -peer0.org2.example.com | [30a 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [2d7 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420294f00, header 0xc420350660 -orderer.example.com | [1eb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer1.org2.example.com | [35b 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [2c7 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -peer0.org1.example.com | [2d8 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [30b 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [35c 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25671], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | [1ec 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -peer0.org1.example.com | [2d9 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 -peer1.org1.example.com | [2c8 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [35d 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer0.org2.example.com | [30c 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [2c9 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -peer0.org1.example.com | [2da 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 channel id: -orderer.example.com | [1ed 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer1.org2.example.com | [35e 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [30d 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [2db 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 channel id: version: 1.0.5 -orderer.example.com | [1ee 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2ca 12-19 06:47:35.29 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8fcfce64]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [30e 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [2dc 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1,syscc=true,proposal=0xc420294f00,canname=lscc:1.0.5 -peer1.org2.example.com | [35f 12-19 06:47:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [30f 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [1ef 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2cb 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2dd 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org2.example.com | [310 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [360 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [2cc 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8fcfce64]sendExecuteMsg trigger event INIT -orderer.example.com | [1f0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [311 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [2de 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2cd 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fcfce64]Move state message INIT -peer1.org2.example.com | [361 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org2.example.com | [312 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [1f1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [313 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [362 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [2ce 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fcfce64]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2df 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org2.example.com | [314 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [1f2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2cf 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [363 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org2.example.com | [315 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [2e0 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39a4ec75]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [1f3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [316 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [2d0 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fcfce64]sending state message INIT -peer1.org2.example.com | [364 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | [1f4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [2e1 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [317 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [1f5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer1.org1.example.com | [2d1 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fcfce64]Received message INIT from shim -peer1.org2.example.com | [365 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer0.org2.example.com | [318 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [2e2 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [319 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [366 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [2d2 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fcfce64]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [31a 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [1f6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org2.example.com | [31b 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2e3 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39a4ec75]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [2d3 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [367 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [1f7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [31c 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2d4 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8fcfce64]Received INIT, initializing chaincode -peer0.org1.example.com | [2e4 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39a4ec75]Move state message TRANSACTION -peer1.org2.example.com | [368 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | [1f8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [31d 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2d5 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [2e5 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39a4ec75]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [1f9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [31e 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [369 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [2d6 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fcfce64]Init get response status: 200 -orderer.example.com | [1fa 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [31f 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [1fb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [320 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [2d7 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fcfce64]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2e6 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [36a 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [1fc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [321 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [2e7 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39a4ec75]sending state message TRANSACTION -orderer.example.com | [1fd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [36b 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [2d8 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fcfce64]Move state message COMPLETED -orderer.example.com | [1fe 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org2.example.com | [322 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [36c 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [2e8 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]Received message TRANSACTION from shim -peer1.org1.example.com | [2d9 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fcfce64]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [1ff 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer1.org2.example.com | [36d 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | [200 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [2e9 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39a4ec75]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [323 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [2da 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fcfce64]send state message COMPLETED -orderer.example.com | [201 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [36e 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421807650 -peer0.org1.example.com | [2ea 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [39a4ec75]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [324 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [202 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [2eb 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [2db 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fcfce64]Received message COMPLETED from shim -peer1.org2.example.com | [36f 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -peer0.org2.example.com | [325 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [203 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [2ec 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]Move state message COMPLETED -peer0.org2.example.com | [326 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2dc 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fcfce64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [370 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [2ed 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39a4ec75]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [3dc 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [374 01-12 22:56:44.70 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer1.org1.example.com | [316 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3dd 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org2.example.com | [35a 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx ID: [] to index +peer0.org1.example.com | [375 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [3de 01-12 22:56:45.16 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [35b 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [376 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [3df 01-12 22:56:45.17 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [317 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3e0 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [377 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [35c 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25655], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [3e1 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [318 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [35d 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer0.org2.example.com | [3e2 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [378 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [35e 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [3e3 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [319 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [1fe 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [379 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [35f 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [3e4 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [37a 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [360 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [3e5 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [31a 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [361 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [3e6 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [362 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [37b 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [37c 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [37d 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421505c80), Data:(*common.BlockData)(0xc421af41e0), Metadata:(*common.BlockMetadata)(0xc421af4220)}, doMVCCValidation=true +peer0.org2.example.com | [3e7 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [327 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2dd 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fcfce64-723a-402b-87ba-2d5cca78d3ca]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [371 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [363 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org1.example.com | [37e 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [31b 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3e8 01-12 22:56:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42160c1c0), Data:(*common.BlockData)(0xc4219179c0), Metadata:(*common.BlockMetadata)(0xc421917a00)}, doMVCCValidation=true +peer1.org2.example.com | [364 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [2ee 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]send state message COMPLETED -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer1.org1.example.com | [2de 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8fcfce64-723a-402b-87ba-2d5cca78d3ca +peer0.org2.example.com | [3e9 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [365 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer1.org1.example.com | [31c 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [37f 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org2.example.com | [3ea 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [366 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [31d 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3eb 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [328 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [372 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer0.org1.example.com | [2ef 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39a4ec75]Received message COMPLETED from shim -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org2.example.com | [329 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [373 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [2f0 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39a4ec75]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer1.org1.example.com | [2df 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [374 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [32a 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f1 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2e0 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org2.example.com | [32b 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f2 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 -peer1.org1.example.com | [2e1 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [623455cc-ceda-4b36-a8e0-62d9f03fd47e] -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer1.org2.example.com | [375 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421453000, header channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -peer0.org1.example.com | [2f3 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [32c 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [376 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [2f4 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [2e2 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer1.org2.example.com | [377 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [32d 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [2f5 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [378 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [2e3 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer0.org2.example.com | [32e 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [379 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer1.org2.example.com | [37a 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [2f6 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [2e4 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [32f 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [37b 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [2e5 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [2f7 12-19 06:47:41.14 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 | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer1.org2.example.com | [37c 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [330 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [2e6 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [367 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [380 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11963 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [368 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | ] +peer1.org1.example.com | [31e 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [369 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [3ec 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx ID: [] to index +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11906 +peer1.org2.example.com | [36a 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org2.example.com | [3ed 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [36b 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [31f 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | ] +peer1.org2.example.com | [36c 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [3ee 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39438], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org1.example.com | [381 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx ID: [] to index +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [36d 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [320 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3ef 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org1.example.com | [382 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [36e 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e0c630 +peer1.org1.example.com | [321 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [36f 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer0.org1.example.com | [383 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25655], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [3f0 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [370 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [384 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer1.org1.example.com | [322 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [371 01-12 22:56:45.27 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [3f1 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [2f8 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [37d 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [2e7 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [331 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [37e 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [204 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [2f9 12-19 06:47:41.14 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 | [332 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [37f 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [2e8 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [380 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [381 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [333 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [2e9 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0878462a]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2fa 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [382 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [2ea 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0878462a]Move state message COMPLETED -peer0.org2.example.com | [334 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2fb 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org2.example.com | [383 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [384 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [335 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [2fc 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org1.example.com | [2eb 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0878462a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [385 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org2.example.com | [386 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [336 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [2ec 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0878462a]send state message COMPLETED -peer0.org1.example.com | [2fd 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -peer1.org2.example.com | [387 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [388 12-19 06:47:41.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [337 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [2ff 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [2ed 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0878462a]Received message COMPLETED from shim -peer1.org2.example.com | [389 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [338 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2ee 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0878462a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [300 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [38a 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [339 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [301 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [2ef 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0878462ac2fada2aa837e3bf2fa1c0f975514526cac059a8af0ac63e9c5b2265]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [38b 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [38c 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [33a 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2f0 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0878462ac2fada2aa837e3bf2fa1c0f975514526cac059a8af0ac63e9c5b2265 -peer1.org2.example.com | [38d 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [302 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42148d440 -peer0.org2.example.com | [33b 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [38e 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [303 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer0.org2.example.com | [33c 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer1.org2.example.com | [38f 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [304 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [33d 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org1.example.com | [2f1 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [390 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [305 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [33e 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2f2 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [385 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [323 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [372 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +orderer.example.com | [1ff 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [3f2 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [373 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [200 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [324 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [374 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [386 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [325 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [3f3 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +orderer.example.com | [201 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [375 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421e78000, header channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer0.org1.example.com | [387 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [326 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [202 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [3f4 01-12 22:56:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [388 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org2.example.com | [376 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [327 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [203 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [389 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [3f5 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +orderer.example.com | [204 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [377 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [328 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [38a 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [378 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [3f6 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [329 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [379 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [38b 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [3f7 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org1.example.com | [32a 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [38c 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer1.org2.example.com | [37a 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [3f8 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +peer0.org2.example.com | [3f9 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [3fa 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [3fb 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [3fc 01-12 22:56:45.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [32b 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [38d 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [37b 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [37c 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [37d 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [37e 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [37f 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [380 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [381 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [382 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [383 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [3fd 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [3fe 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f6c000 +peer0.org2.example.com | [3ff 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [400 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [38e 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [38f 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [390 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [401 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer1.org2.example.com | [384 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [32c 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [391 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [402 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [32d 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [385 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [403 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [32e 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +peer0.org1.example.com | [392 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [404 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4217267d0, header 0xc421f6c030 +peer1.org1.example.com | [32f 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [393 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [386 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [394 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [405 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [330 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [387 01-12 22:56:45.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [395 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217e3c80 +peer0.org1.example.com | [396 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer1.org1.example.com | [331 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [388 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [406 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 4b5b39934f224f0d467581d3b6fb1dea887e96122b2e6b2894bf3a71f149d309 +orderer.example.com | ymzPpM2K +peer0.org1.example.com | [397 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [332 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [398 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [407 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4b5b39934f224f0d467581d3b6fb1dea887e96122b2e6b2894bf3a71f149d309 channel id: +peer1.org2.example.com | [389 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [391 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [306 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer1.org1.example.com | [2f3 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [33f 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [392 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [307 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [340 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [2f4 12-19 06:47:35.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [205 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [308 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [341 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [393 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [2f5 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [309 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4202f8000, header channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer0.org2.example.com | [342 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [394 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [2f6 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [30a 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [343 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [333 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [399 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +peer1.org2.example.com | [38a 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [334 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [408 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4b5b39934f224f0d467581d3b6fb1dea887e96122b2e6b2894bf3a71f149d309 channel id: version: 1.0.5 +peer0.org1.example.com | [39a 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [335 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [205 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [409 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=4b5b39934f224f0d467581d3b6fb1dea887e96122b2e6b2894bf3a71f149d309,syscc=true,proposal=0xc4217267d0,canname=lscc:1.0.5 +peer0.org2.example.com | [40a 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org2.example.com | [40b 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [38b 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [336 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [40c 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org1.example.com | [39b 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [337 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [338 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [339 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [33a 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [33b 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [33c 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [33d 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [33e 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [33f 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [340 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [341 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [342 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [38c 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [40d 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4b5b3993]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [40e 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [30b 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [2f7 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [344 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [345 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [395 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [2f8 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421436990 -peer0.org1.example.com | [30c 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [396 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [346 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2f9 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [30d 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [397 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [347 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2fa 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [30e 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [348 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [398 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [30f 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer1.org1.example.com | [2fb 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [349 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [399 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [2fc 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer0.org1.example.com | [310 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [311 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [39a 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [2fd 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [312 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [313 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [34a 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [2fe 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [39b 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [314 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [34b 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer1.org1.example.com | [2ff 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4202bb000, header channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -peer0.org1.example.com | [315 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [39c 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [300 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [34c 12-19 06:47:41.51 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [316 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer1.org2.example.com | [39d 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [34d 12-19 06:47:41.52 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [317 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [301 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org2.example.com | [34e 12-19 06:47:41.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [318 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [39e 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [302 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [34f 12-19 06:47:41.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [319 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [303 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [350 12-19 06:47:41.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [39f 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [206 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [31a 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [351 12-19 06:47:41.54 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [304 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [207 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [3a0 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [31b 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [352 12-19 06:47:41.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [305 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [31c 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [3a1 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [31d 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [208 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [306 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [3a2 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [31e 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [209 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com |[0m [353 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [307 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [3a3 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [31f 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [354 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [20a 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [308 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [3a4 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [320 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [309 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [355 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [20b 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [2fe 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer1.org1.example.com | [30a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [3a5 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [322 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer0.org2.example.com | [356 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421ab2000), Data:(*common.BlockData)(0xc421ca0a40), Metadata:(*common.BlockMetadata)(0xc421ca0a80)}, doMVCCValidation=true -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [3a6 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [323 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -peer1.org1.example.com | [30b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [357 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [321 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [3a7 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [30c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [358 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org1.example.com | [324 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [3a8 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [325 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [359 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -peer1.org1.example.com | [30d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [3a9 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [326 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org1.example.com | [30e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [327 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3aa 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [328 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer1.org2.example.com | [3ab 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [30f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [329 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | ] -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [3ac 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [32a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [310 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [3ad 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [35a 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx ID: [] to index -peer0.org1.example.com | [32b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -peer1.org2.example.com | [3ae 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [35b 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [311 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [32c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [3af 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [35c 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25671], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org1.example.com | [32d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer0.org2.example.com | [35d 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer1.org1.example.com | [312 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [3b0 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [32e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [35e 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -peer1.org1.example.com | [313 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [32f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [35f 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [3b1 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [314 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer0.org1.example.com | [330 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [3b2 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [360 12-19 06:47:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [315 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | XXreRTw6jXg= -peer0.org1.example.com | [331 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [3b3 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [316 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [361 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [332 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [317 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [3b4 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [362 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [20c 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [333 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [318 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [3b5 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [363 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [319 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3b6 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [334 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [3b7 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [364 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [31a 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [335 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [3b8 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [365 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org1.example.com | [31b 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [336 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [31c 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [366 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [3b9 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [31d 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [367 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [3ba 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [337 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [31e 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [368 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [31f 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org2.example.com | [3bb 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [338 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org1.example.com | [320 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [369 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [321 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [3bc 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [339 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [322 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org2.example.com | [36a 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [323 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [33a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [324 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [3bd 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [36b 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org1.example.com | [325 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [33b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [36c 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [3be 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer1.org1.example.com | [326 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [36d 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [327 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [33c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer1.org2.example.com | [3bf 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [328 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [33d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org2.example.com | [36e 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42185f500 -peer1.org1.example.com | [329 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [3c0 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [36f 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -peer1.org1.example.com | [32a 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [33e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [3c1 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [32b 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [370 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [20d 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [32c 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3c2 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [33f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [32d 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [371 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [340 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3c3 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [32e 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [341 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [32f 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [372 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer1.org1.example.com | [330 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [342 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [331 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [373 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [332 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org2.example.com | [3c4 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [374 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [343 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [333 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [375 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421654000, header channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -peer0.org1.example.com | [344 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [334 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3c5 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [376 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [377 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [345 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [335 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org2.example.com | [378 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [3c6 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [346 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [379 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [336 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3c7 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [37a 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [347 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [337 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3c8 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [37b 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [348 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org1.example.com | [338 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [37c 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [349 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [3c9 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [37d 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org2.example.com | [37e 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [339 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ca 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [34a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org2.example.com | [37f 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [3cb 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [33a 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [380 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer1.org1.example.com | [33b 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3cc 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [381 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [34c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [33c 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [382 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [34d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [383 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3cd 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [20e 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | [33d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [384 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [34e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [33e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [385 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [20f 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [3ce 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [386 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [210 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [33f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [387 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [3cf 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [388 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [350 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [211 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [340 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [389 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [3d0 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [351 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [212 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org2.example.com | [38a 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [341 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [352 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3d1 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [342 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [38b 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [213 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [353 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [343 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3d2 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [38c 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [354 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [344 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [3d3 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [355 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [38d 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [345 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3d4 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [356 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [38e 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [346 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [343 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [39c 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421bf5000, header channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer0.org2.example.com | [40f 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [38d 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [344 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [357 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [347 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [38f 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [3d5 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [358 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [348 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [390 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [3d6 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [359 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [391 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [3d7 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [349 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [35a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [392 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [34a 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3d8 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [393 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [35b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [34b 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [3d9 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [394 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer0.org1.example.com | [35c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [3da 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [34c 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [35d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [395 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [34d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [3db 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [396 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [35e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -peer1.org1.example.com | [34e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [3dc 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [35f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [397 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [34f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer0.org1.example.com | [360 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3dd 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [398 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer1.org1.example.com | [350 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [361 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | IEhjT+WlcQ== -peer1.org2.example.com | [3de 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [399 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [351 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [362 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [3df 12-19 06:47:41.70 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [39a 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [352 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [363 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [214 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [39b 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [3e0 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [364 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [353 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [39c 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [3e1 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [365 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [354 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [39d 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [3e2 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [355 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [366 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [39e 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [3e3 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [367 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [356 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [3e4 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [39f 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [368 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3e5 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [357 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [410 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4b5b3993]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [38e 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [39d 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [345 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [3a0 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [358 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [369 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3e6 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [3a1 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [359 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [36a 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3e7 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [35a 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org2.example.com | [3a2 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [36b 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [35b 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3e8 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42176c4c0), Data:(*common.BlockData)(0xc4201a4fe0), Metadata:(*common.BlockMetadata)(0xc4201a5020)}, doMVCCValidation=true -peer0.org2.example.com | [3a3 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [36c 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [35c 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3e9 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org2.example.com | [3a4 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [3ea 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org1.example.com | [35d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [36d 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3eb 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -peer0.org2.example.com | [3a5 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11971 -peer0.org1.example.com | [36e 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [35e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [39e 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [38f 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [411 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b5b3993]Move state message TRANSACTION +peer0.org2.example.com | [412 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4b5b3993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [413 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [414 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b5b3993]sending state message TRANSACTION +peer0.org2.example.com | [415 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b5b3993]Received message TRANSACTION from shim +peer0.org2.example.com | [416 01-12 22:56:45.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b5b3993]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [417 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4b5b3993]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [418 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b5b3993]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [39f 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [3a0 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [3a1 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [3a2 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [3a3 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [3a4 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [346 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [3a5 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [3a6 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [3a7 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [3a8 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [3a9 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [3aa 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [3ab 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [3ac 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [3ad 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [390 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [391 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [392 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [393 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [394 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [395 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [419 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b5b3993]Move state message COMPLETED +peer0.org2.example.com | [41a 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4b5b3993]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [41b 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4b5b3993]send state message COMPLETED +peer0.org2.example.com | [41c 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4b5b3993]Received message COMPLETED from shim +peer0.org2.example.com | [41d 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4b5b3993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [41e 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4b5b39934f224f0d467581d3b6fb1dea887e96122b2e6b2894bf3a71f149d309]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [41f 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4b5b39934f224f0d467581d3b6fb1dea887e96122b2e6b2894bf3a71f149d309 +peer0.org2.example.com | [420 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org1.example.com | [347 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [421 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [422 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [3ae 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [3af 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [3b0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [3b1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3b2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [348 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [396 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [423 01-12 22:56:45.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [206 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [349 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [34a 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [34b 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [34c 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [34d 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215ad200), Data:(*common.BlockData)(0xc421a04760), Metadata:(*common.BlockMetadata)(0xc421a047a0)}, doMVCCValidation=true +peer0.org1.example.com | [3b3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [397 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [398 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [399 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [39a 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [39b 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [39c 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [39d 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [39e 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [34e 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [34f 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org1.example.com | [350 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11906 +peer1.org1.example.com | ] +peer0.org2.example.com | [424 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering +peer0.org1.example.com | [3b4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [39f 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [425 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting +peer1.org1.example.com | [351 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx ID: [] to index +peer1.org2.example.com | [3a0 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3b5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org2.example.com | [427 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering +peer1.org2.example.com | [3a1 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [352 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [3b6 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [428 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting +peer1.org2.example.com | [3a2 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [353 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25655], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org1.example.com | [3b7 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [429 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Canceled desc = context canceled ,at 1 attempt. Retrying in 1s +peer1.org2.example.com | [3a3 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [354 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [3b8 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [3a4 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [42a 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | [3b9 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [355 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [426 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org2.example.com | [3a5 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [3ba 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [356 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [3bb 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [357 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [42b 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering +peer1.org2.example.com | [3a6 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [3bc 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [358 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [42c 01-12 22:56:50.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting +peer1.org2.example.com | [3a7 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org1.example.com | [359 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [3bd 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [42d 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [35a 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer1.org2.example.com | [3a8 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3be 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [42e 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c70090 +orderer.example.com | [207 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [35b 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [3bf 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [3c0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [3c1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [3c2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [3c3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [3a9 01-12 22:56:45.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [42f 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [430 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [431 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org1.example.com | [3c4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [208 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [3aa 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [3ab 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [3ac 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ad 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [209 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [3c5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [3c6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [3c7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3c8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [3c9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [3ca 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [3cb 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [432 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [3ae 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3af 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b0 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b1 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b2 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b3 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b4 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [35c 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +orderer.example.com | [20a 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [20b 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [20c 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [3cc 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [433 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [434 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219e8960, header 0xc421c70210 +peer1.org2.example.com | [3b5 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b6 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [3b7 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org2.example.com | [435 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [436 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +peer0.org2.example.com | [437 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] +peer0.org2.example.com | [438 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [439 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [286ab1ba-5fdf-4af0-984d-ebe142f89bf8] +peer0.org2.example.com | [43a 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 channel id: businesschannel +peer0.org2.example.com | [43b 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [3cd 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [35d 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [3b8 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer0.org1.example.com | [3ce 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [43c 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95,syscc=true,proposal=0xc4219e8960,canname=lscc:1.0.5 +peer1.org1.example.com | [35e 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [3b9 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [20d 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [3cf 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [43d 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org2.example.com | [3ba 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [20e 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [20f 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [210 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [211 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org1.example.com | [35f 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [43e 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [3d0 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [3d1 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [3d2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [360 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [361 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [362 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [363 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [364 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [365 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217f5470 +peer1.org2.example.com | [3bb 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [212 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [3d3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [43f 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer1.org1.example.com | [366 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer0.org1.example.com | [3d4 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [213 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [3bc 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [440 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a616a3ec]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [367 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [3d5 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3d6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3d7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3d8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [3d9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3da 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3db 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3dc 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3dd 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [3de 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [3df 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [441 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [3bd 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3e0 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [368 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [3be 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [214 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [3e1 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [442 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [3e2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3bf 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [369 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +peer0.org2.example.com | [443 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a616a3ec]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [215 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [3e3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3e4 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3c0 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [444 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message TRANSACTION +orderer.example.com | [216 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A5FAE4D20522...A2667F95CE58E3F3354DF83B1ABA5E95 +peer1.org1.example.com | [36a 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [3e5 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3c1 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [217 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 8318C17289CA5CD40B416699E4D21C66C0E551246D8D9350C33FED81D4990345 +peer0.org2.example.com | [445 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [3e6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [36b 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [3c2 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [3e7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [218 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [446 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [36c 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c24000, header channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +peer1.org2.example.com | [3c3 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [219 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [3e8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [447 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message TRANSACTION +peer1.org2.example.com | [3c4 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [36d 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [3e9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [21a 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [448 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Received message TRANSACTION from shim +peer1.org1.example.com | [36e 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [3ea 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [3c5 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [21b 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [449 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a616a3ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [3c6 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [3eb 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [36f 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [21c 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB3060A1708041A0608A5FAE4D20522...C0AE1306F50929FF618B4B5E68D4020D +peer1.org2.example.com | [3c7 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [44a 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a616a3ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [370 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [3ec 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [21d 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 4536B3B19680140FDD43DA6736C960A89C366D442F429DEA314B84A25C7BC944 +peer0.org2.example.com | [44b 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [a616a3ec]Sending GET_STATE +peer1.org2.example.com | [3c8 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [3ed 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [21e 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +peer1.org1.example.com | [371 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [3c9 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [3ee 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [21f 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [372 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [44c 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message GET_STATE from shim +peer0.org1.example.com | [3ef 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [220 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cb80 gate 1515797797855267836 evaluation starts +peer1.org2.example.com | [3ca 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [373 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [3f0 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [44d 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [221 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [374 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [3f1 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [222 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org2.example.com | [44e 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [a616a3ec]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [3cb 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [375 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [3f2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [44f 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [223 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [376 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [3cc 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [450 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org1.example.com | [3f3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [377 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [3cd 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org2.example.com | [451 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [3f4 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [3ce 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [378 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [452 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]No state associated with key: mycc. Sending RESPONSE with an empty payload +peer0.org1.example.com | [3f5 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [3cf 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [379 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [453 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a616a3ec]handleGetState serial send RESPONSE +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +peer0.org1.example.com | [3f6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3d0 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [37a 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [3f7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [454 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Received message RESPONSE from shim +peer1.org2.example.com | [3d1 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [37b 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org2.example.com | [3d2 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [455 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a616a3ec]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [3f8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +peer1.org1.example.com | [37c 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [3d3 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [456 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a616a3ec]before send +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org2.example.com | [3d4 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3f9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +peer1.org2.example.com | [3d5 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [37d 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +peer1.org2.example.com | [3d6 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [3fa 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [457 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a616a3ec]after send +peer1.org1.example.com | [37e 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +peer1.org2.example.com | [3d7 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [3d8 01-12 22:56:45.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3fb 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [37f 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [3d9 01-12 22:56:45.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [458 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a616a3ec]Received RESPONSE, communicated (state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [3fc 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3da 01-12 22:56:45.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [380 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [224 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [3fd 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [3db 01-12 22:56:45.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [459 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [a616a3ec]GetState received payload RESPONSE +peer1.org1.example.com | [381 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [225 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | [3dc 01-12 22:56:45.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [226 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 principal matched by identity 0 +peer0.org1.example.com | [3fe 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [227 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 36 b3 b1 96 80 14 0f dd 43 da 67 36 c9 60 a8 |E6.......C.g6.`.| +peer0.org1.example.com | [3ff 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 00000010 9c 36 6d 44 2f 42 9d ea 31 4b 84 a2 5c 7b c9 44 |.6mD/B..1K..\{.D| +peer1.org2.example.com | [3dd 01-12 22:56:45.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [45a 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a616a3ec]Inside putstate +peer1.org1.example.com | [382 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [228 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9f 5b b3 92 38 90 64 31 a5 58 2e |0E.!..[..8.d1.X.| +peer1.org2.example.com | [3de 01-12 22:56:45.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [45b 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a616a3ec]Sending PUT_STATE +orderer.example.com | 00000010 1a b5 5a 27 e7 21 f4 8a 58 5c ac 5f d9 56 4e 5d |..Z'.!..X\._.VN]| +peer1.org2.example.com | [3df 01-12 22:56:45.32 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [383 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [400 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 00000020 a1 51 78 fe e4 02 20 0c 47 a0 82 40 76 1a 05 e7 |.Qx... .G..@v...| +peer0.org2.example.com | [45c 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message PUT_STATE from shim +peer0.org2.example.com | [45d 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [45e 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 00000030 c2 8d b6 c7 15 59 74 1d a4 49 0d e8 5c 86 8a b4 |.....Yt..I..\...| +peer1.org2.example.com | [3e0 01-12 22:56:45.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [45f 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]state is ready +peer0.org1.example.com | [401 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [384 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 00000040 e7 a4 a6 5f 6e 98 10 |..._n..| +peer1.org2.example.com | [3e1 01-12 22:56:45.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [460 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [402 01-12 22:56:44.80 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [385 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [229 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [3e2 01-12 22:56:45.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [461 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a616a3ec]enterBusyState trigger event RESPONSE +orderer.example.com | [22a 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cb80 gate 1515797797855267836 evaluation succeeds +orderer.example.com | [22b 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420397fa0 1 [0xc42017c700]})]} +orderer.example.com | [22c 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [3e3 01-12 22:56:45.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [462 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message RESPONSE +peer1.org1.example.com | [386 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [403 01-12 22:56:44.80 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [3e4 01-12 22:56:45.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [463 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | [22d 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [3e5 01-12 22:56:45.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [387 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [464 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [404 01-12 22:56:44.82 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [22e 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [3e6 01-12 22:56:45.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [465 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message RESPONSE +orderer.example.com | [22f 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [3e7 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [466 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Received message RESPONSE from shim +peer0.org1.example.com | [405 01-12 22:56:44.82 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [388 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [230 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A5FAE4D20522...07577269746572731A0641646D696E73 +peer0.org2.example.com | [467 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a616a3ec]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [3e8 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421c511c0), Data:(*common.BlockData)(0xc421df0d80), Metadata:(*common.BlockMetadata)(0xc421df0dc0)}, doMVCCValidation=true +peer1.org1.example.com | [389 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [231 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: CE2867E845CF2CE5B5DBDABF0472093C8DC35E209745785B1B524BFD9FF2C201 +peer0.org2.example.com | [468 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a616a3ec]before send +peer0.org1.example.com | [406 01-12 22:56:44.82 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [3e9 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | [232 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [469 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a616a3ec]after send +peer1.org1.example.com | [38a 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [407 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [233 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [46a 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a616a3ec]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [38b 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [3ea 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [408 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | [234 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [46b 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a616a3ec]Received RESPONSE. Successfully updated state +peer1.org1.example.com | [38c 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [235 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [409 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [46c 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [3eb 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= +orderer.example.com | [236 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [46d 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Move state message COMPLETED +peer1.org1.example.com | [38d 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [237 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11963 +peer0.org2.example.com | [46e 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a616a3ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [40a 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [46f 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]send state message COMPLETED +orderer.example.com | [238 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [470 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message COMPLETED from shim peer1.org2.example.com | ] -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org2.example.com | [3a6 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [3ec 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx ID: [] to index -peer0.org1.example.com | [36f 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [35f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [3ed 12-19 06:47:41.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3a7 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [3ee 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39463], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org1.example.com | [370 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [360 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [3ef 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer0.org2.example.com | [3a8 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [215 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [3f0 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [371 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [361 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3f1 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [372 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [3a9 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3f2 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [362 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [373 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [3f3 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org1.example.com | [40b 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [38e 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [471 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [38f 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [239 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [40c 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [3ec 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx ID: [] to index +peer0.org2.example.com | [472 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95]HandleMessage- COMPLETED. Notify +orderer.example.com | [23a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [473 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +peer1.org1.example.com | [390 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [40d 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [3ed 01-12 22:56:45.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [474 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [23b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [391 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [392 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [40e 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [475 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95,syscc=false,proposal=0xc4219e8960,canname=mycc:1.0 +orderer.example.com | [23c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [3ee 01-12 22:56:45.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39438], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org1.example.com | [393 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [476 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system +peer0.org1.example.com | [40f 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42185d440), Data:(*common.BlockData)(0xc421b868c0), Metadata:(*common.BlockMetadata)(0xc421b86900)}, doMVCCValidation=true +orderer.example.com | [23d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [3ef 01-12 22:56:45.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer0.org2.example.com | [477 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer1.org1.example.com | [394 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [23e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [410 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [3f0 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [478 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [395 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [396 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [411 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [3f1 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [479 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | [23f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [3f2 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [397 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [412 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= +peer0.org2.example.com | [47a 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | [3f3 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +orderer.example.com | [240 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [398 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11963 +peer0.org2.example.com | [47b 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org2.example.com | [3f4 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | [241 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [399 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | ] +peer0.org2.example.com | [47c 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [3f5 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [39a 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [242 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [413 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx ID: [] to index +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer1.org2.example.com | [3f6 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [39b 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [3f7 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +orderer.example.com | [243 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [39c 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [414 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [244 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [245 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [415 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39438], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [3f8 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [39d 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [246 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [416 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer1.org2.example.com | [3f9 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [39e 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [247 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [417 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [39f 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [3fa 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [3a0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [418 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [248 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [47d 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock +peer1.org2.example.com | [3fb 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [419 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [3a1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [249 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [47e 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock +peer1.org2.example.com | [3fc 01-12 22:56:45.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [41a 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +orderer.example.com | [24a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [3fd 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [3a2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [24b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [41b 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [47f 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 +peer1.org2.example.com | [3fe 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ae7980 +peer1.org1.example.com | [3a3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3a4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ff 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [41c 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org2.example.com | [480 01-12 22:57:03.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) +peer0.org2.example.com | [481 01-12 22:57:03.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) +peer1.org2.example.com | [400 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [3a5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [41d 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [24c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [482 01-12 22:57:03.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) +peer1.org2.example.com | [401 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer1.org1.example.com | [3a6 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [483 01-12 22:57:03.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 +orderer.example.com | [24d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [41e 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org1.example.com | [3a7 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [402 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [24e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [484 01-12 22:57:03.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +peer0.org1.example.com | [41f 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [3a8 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [24f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [485 01-12 22:57:03.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 +peer1.org1.example.com | [3a9 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [403 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [420 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [3aa 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [486 01-12 22:57:03.31 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 | [404 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421addd60, header 0xc421ae79b0 +orderer.example.com | [250 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3ab 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [421 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [405 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [3ac 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [487 01-12 22:57:03.31 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org2.example.com | [406 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: a56a64ee88d223dc238a4d8e51715de1964f465b565f3a972ada94d9785a2f2b +orderer.example.com | [251 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org1.example.com | [422 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [3ad 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org2.example.com | [407 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: a56a64ee88d223dc238a4d8e51715de1964f465b565f3a972ada94d9785a2f2b channel id: +orderer.example.com | [252 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [3ae 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [423 01-12 22:56:44.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin +peer1.org1.example.com | [3af 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [253 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [424 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [408 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a56a64ee88d223dc238a4d8e51715de1964f465b565f3a972ada94d9785a2f2b channel id: version: 1.0.5 +orderer.example.com | [254 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [3b0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +peer0.org1.example.com | [425 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b2a300 +peer1.org1.example.com | [3b1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [409 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=a56a64ee88d223dc238a4d8e51715de1964f465b565f3a972ada94d9785a2f2b,syscc=true,proposal=0xc421addd60,canname=lscc:1.0.5 +orderer.example.com | [255 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [426 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org1.example.com | [3b2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [256 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [427 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [3b3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [40a 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | [3b4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [40b 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [428 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | [257 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [3b5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | org.hyperledger.fabric.version="1.0.5" \ +peer1.org1.example.com | [3b6 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [429 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [258 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [40c 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org1.example.com | [3b7 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [3b8 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [259 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [40d 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a56a64ee]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [42a 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [3b9 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +peer0.org1.example.com | [42b 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421bd69b0, header 0xc421b2a330 +peer1.org2.example.com | [40e 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [3ba 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [25a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [40f 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [3bb 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [42c 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [25b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [3bc 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [410 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a56a64ee]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [42d 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer1.org1.example.com | [3bd 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [25c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [411 01-12 22:56:46.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a56a64ee]Move state message TRANSACTION +peer0.org2.example.com | [488 01-12 22:57:03.31 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +peer1.org1.example.com | [3be 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [3bf 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [42e 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +peer0.org1.example.com | [42f 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [25d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [25e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [25f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [3c0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [412 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a56a64ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [413 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [414 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a56a64ee]sending state message TRANSACTION +peer0.org2.example.com | [489 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | [260 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [3c1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [3c2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [48a 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [48b 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [415 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a56a64ee]Received message TRANSACTION from shim +orderer.example.com | [261 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [430 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bb06bab2-bcfb-43e7-9134-99ff3475f9a2] +peer0.org2.example.com | [48c 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42195ea80 +peer1.org1.example.com | [3c3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [262 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [416 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a56a64ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [48d 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer1.org1.example.com | [3c4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [431 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel +peer1.org2.example.com | [417 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a56a64ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [263 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [48e 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [3c5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [418 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a56a64ee]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [432 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel version: 1.0.5 +orderer.example.com | [264 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [3c6 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [48f 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [419 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a56a64ee]Move state message COMPLETED +peer1.org1.example.com | [3c7 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [433 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e,syscc=true,proposal=0xc421bd69b0,canname=lscc:1.0.5 +peer0.org2.example.com | [490 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | [265 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [41a 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a56a64ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [434 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org1.example.com | [3c8 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [491 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [266 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [435 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [41b 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a56a64ee]send state message COMPLETED +peer1.org1.example.com | [3c9 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [492 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [267 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [41c 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a56a64ee]Received message COMPLETED from shim +orderer.example.com | [268 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer1.org2.example.com | [41d 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a56a64ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [41e 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a56a64ee88d223dc238a4d8e51715de1964f465b565f3a972ada94d9785a2f2b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [436 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [493 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421d72000, header channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer1.org1.example.com | [3ca 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [269 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer1.org2.example.com | [41f 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a56a64ee88d223dc238a4d8e51715de1964f465b565f3a972ada94d9785a2f2b +peer0.org2.example.com | [494 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [437 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [3cb 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [26a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer1.org2.example.com | [420 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [438 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [3cc 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [495 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [421 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [26b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org1.example.com | [439 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [3cd 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [26c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [422 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [496 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [43a 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [3ce 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [26d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [423 01-12 22:56:46.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [497 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [43b 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message TRANSACTION +orderer.example.com | [26e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org1.example.com | [3cf 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [424 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org2.example.com | [498 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +peer0.org1.example.com | [43c 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [26f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer1.org1.example.com | [3d0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [425 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer0.org2.example.com | [499 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [270 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [43d 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [3d1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [49a 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [426 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [43e 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message TRANSACTION +peer1.org1.example.com | [3d2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [271 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org2.example.com | [49b 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [196cf1e4-c299-4f95-bde2-c814d3683dfe] +peer0.org1.example.com | [43f 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message TRANSACTION from shim +peer1.org2.example.com | [427 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [3d3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [272 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +peer0.org2.example.com | [49c 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=f5fd778f-a2a1-4eb3-adc5-5b9a87c294bc,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [440 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [428 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | [273 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [49d 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e chaindID businesschannel +peer1.org1.example.com | [3d4 01-12 22:56:44.80 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [49e 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org1.example.com | [441 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a1c14bb5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [49f 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [442 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [a1c14bb5]Sending GET_STATE +peer1.org2.example.com | [429 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42170c300 +orderer.example.com | [274 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [443 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message GET_STATE from shim +peer1.org1.example.com | [3d5 01-12 22:56:44.80 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [42a 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +orderer.example.com | [275 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [4a0 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [444 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [3d6 01-12 22:56:44.81 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [276 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [42b 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [4a1 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5fd778f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [445 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [a1c14bb5]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [3d7 01-12 22:56:44.83 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [277 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [42c 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [446 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4a2 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [278 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3d8 01-12 22:56:44.83 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [447 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [42d 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org1.example.com | [448 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [3d9 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | [279 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [4a3 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f5fd778f]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [449 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]No state associated with key: mycc. Sending RESPONSE with an empty payload +peer1.org2.example.com | [42e 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [27a 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [44a 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]handleGetState serial send RESPONSE +peer0.org2.example.com | [4a4 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5fd778f]Move state message TRANSACTION +peer1.org1.example.com | [3da 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [42f 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [27b 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [44b 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message RESPONSE from shim +peer1.org2.example.com | [430 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ca2000, header channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer0.org2.example.com | [4a5 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f5fd778f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [3db 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +orderer.example.com | [27c 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [44c 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [27d 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [44d 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]before send +orderer.example.com | [27e 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [4a6 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [44f 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [a1c14bb5]GetState received payload RESPONSE +orderer.example.com | [27f 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [431 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [44e 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]after send +orderer.example.com | [280 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3dc 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [4a7 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5fd778f]sending state message TRANSACTION +peer0.org1.example.com | [450 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a1c14bb5]Received RESPONSE, communicated (state:ready) +orderer.example.com | [281 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [451 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a1c14bb5]Inside putstate +orderer.example.com | [282 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [452 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a1c14bb5]Sending PUT_STATE +peer1.org2.example.com | [432 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [283 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [453 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message PUT_STATE from shim +peer1.org1.example.com | [3dd 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | [284 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [454 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | [285 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [4a8 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5fd778f]Received message TRANSACTION from shim +peer0.org2.example.com | [4a9 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5fd778f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [286 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [433 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [287 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org1.example.com | [3de 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [455 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4aa 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f5fd778f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [288 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [456 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]state is ready +peer1.org2.example.com | [434 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [3df 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a001c0), Data:(*common.BlockData)(0xc421bcaea0), Metadata:(*common.BlockMetadata)(0xc421bcaee0)}, doMVCCValidation=true +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [457 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [4ab 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [458 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [3e0 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [435 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +peer0.org2.example.com | [4ac 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [459 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message RESPONSE orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [3aa 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [363 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [374 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [3f4 12-19 06:47:41.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [3ab 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [3f5 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org1.example.com | [364 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org2.example.com | [3ac 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [375 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [3f6 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [365 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [3ad 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3f7 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [376 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [3ae 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [366 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [3f8 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [377 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [3f9 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [3af 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [367 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [3fa 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [378 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [3b0 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [368 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org2.example.com | [3fb 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [379 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [3b1 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [3fc 12-19 06:47:41.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [369 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [3fd 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [37a 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [3b2 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3fe 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b1e8a0 -peer1.org1.example.com | [36a 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [37b 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [3b3 12-19 06:47:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ff 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [36b 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org2.example.com | [400 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [3b4 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [37c 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org1.example.com | [36c 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [401 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer0.org2.example.com | [3b5 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer1.org1.example.com | [36d 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [37d 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420147fc0), Data:(*common.BlockData)(0xc421669140), Metadata:(*common.BlockMetadata)(0xc421669180)}, doMVCCValidation=true -peer1.org2.example.com | [402 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [36e 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3b6 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [403 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [36f 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [37e 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [3b7 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [216 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [370 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [37f 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [404 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b40550, header 0xc421b1e8d0 -peer0.org2.example.com | [3b8 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [371 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a29ac0), Data:(*common.BlockData)(0xc421987860), Metadata:(*common.BlockMetadata)(0xc4219878a0)}, doMVCCValidation=true -orderer.example.com | [217 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [405 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [380 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -peer0.org2.example.com | [3b9 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [372 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | [218 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer0.org2.example.com | [3ba 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [406 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c6eaff63df8dd6b02340caabc411f6dbfddfe4a2082631d09e20366fdfd80aea -orderer.example.com | [219 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [373 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org1.example.com | ] -peer0.org2.example.com | [3bb 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [21a 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [381 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx ID: [] to index -peer1.org2.example.com | [407 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c6eaff63df8dd6b02340caabc411f6dbfddfe4a2082631d09e20366fdfd80aea channel id: -peer1.org1.example.com | [374 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -peer0.org2.example.com | [3bc 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [21b 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [408 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c6eaff63df8dd6b02340caabc411f6dbfddfe4a2082631d09e20366fdfd80aea channel id: version: 1.0.5 -peer0.org1.example.com | [382 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer0.org2.example.com | [3bd 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [21c 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [409 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=c6eaff63df8dd6b02340caabc411f6dbfddfe4a2082631d09e20366fdfd80aea,syscc=true,proposal=0xc421b40550,canname=lscc:1.0.5 -peer1.org1.example.com | ] -orderer.example.com | [21d 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...488780820C3C3E8C22D6CCFEDD500E43 -peer0.org2.example.com | [3be 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [40a 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [383 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25671], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org1.example.com | [375 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx ID: [] to index -orderer.example.com | [21e 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 4D29DAA95535E27FF83012D2B8931B3E58C4633CF65F8CF740E61EC9D41A7415 -peer0.org2.example.com | [3bf 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [40b 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [384 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer1.org1.example.com | [376 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [21f 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [3c0 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [385 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [377 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25671], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [40c 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org2.example.com | [3c1 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [220 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [386 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [40d 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c6eaff63]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [3c2 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [378 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -orderer.example.com | [221 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [387 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [40e 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [3c3 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [222 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [379 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [40f 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [3c4 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [388 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org1.example.com | [37a 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [3c5 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [410 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c6eaff63]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [389 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [223 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB3060A1708041A060886ECE2D10522...0650462399B80ECCE0163527164AE827 -peer1.org1.example.com | [37b 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [3c6 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [224 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: CAC37FD6AB7214856C82CF23F6090E90335BA221CB72910BD06BD73C16956C04 -peer1.org2.example.com | [411 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6eaff63]Move state message TRANSACTION -peer0.org1.example.com | [38a 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org1.example.com | [37c 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org2.example.com | [3c7 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [225 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -peer0.org1.example.com | [38b 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [412 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6eaff63]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [37d 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [3c8 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [226 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [38c 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org1.example.com | [37e 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org2.example.com | [413 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [227 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666054558468200 evaluation starts -peer0.org2.example.com | [3c9 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [38d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [37f 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | [228 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [3ca 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [414 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6eaff63]sending state message TRANSACTION -orderer.example.com | [229 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [38e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [380 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org2.example.com | [415 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6eaff63]Received message TRANSACTION from shim -orderer.example.com | [22a 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3cb 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [381 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [416 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6eaff63]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [38f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [3cc 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [417 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c6eaff63]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [382 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [390 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [383 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [418 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6eaff63]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [3cd 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [391 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [3e1 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org2.example.com | [4ad 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [45a 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [436 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [45b 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4ae 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [45c 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message RESPONSE +peer1.org1.example.com | [3e2 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= +peer0.org1.example.com | [45d 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message RESPONSE from shim orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [3ce 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [384 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [419 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6eaff63]Move state message COMPLETED -peer0.org1.example.com | [392 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -peer0.org2.example.com | [3cf 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [393 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [41a 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6eaff63]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [394 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [4af 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [45e 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer1.org2.example.com | [437 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [45f 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]before send +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11963 orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [395 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a80480 -peer1.org1.example.com | [385 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [3d0 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [41b 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6eaff63]send state message COMPLETED -peer0.org1.example.com | [396 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -peer0.org2.example.com | [3d1 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer0.org1.example.com | [397 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [386 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [41c 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6eaff63]Received message COMPLETED from shim -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -peer0.org2.example.com | [3d2 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [398 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [41d 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6eaff63]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [387 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -peer0.org1.example.com | [399 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer1.org1.example.com | [388 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [3d3 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [41e 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6eaff63df8dd6b02340caabc411f6dbfddfe4a2082631d09e20366fdfd80aea]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [39a 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -peer0.org1.example.com | [39b 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [41f 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c6eaff63df8dd6b02340caabc411f6dbfddfe4a2082631d09e20366fdfd80aea -peer1.org1.example.com | [389 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219b3b00 -peer0.org1.example.com | [39c 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b51000, header channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -peer0.org2.example.com | [3d4 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [39d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [420 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [38a 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -peer0.org2.example.com | [3d5 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [39e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [421 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -peer0.org1.example.com | [39f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [38b 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [3d6 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [4b0 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [460 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]after send +peer1.org2.example.com | [438 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3d72ed7a-ab0b-41b9-8088-ec2bab4b3d11] +peer1.org2.example.com | [439 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=990e983f-622b-4331-8af7-fbcb1de4b771,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [43a 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e chaindID businesschannel +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [4b1 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d1197770-d9ca-48c7-8791-4d994189bd98] +peer1.org1.example.com | ] +peer0.org1.example.com | [461 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a1c14bb5]Received RESPONSE. Successfully updated state +peer1.org2.example.com | [43b 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer1.org1.example.com | [3e3 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx ID: [] to index +peer0.org1.example.com | [463 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [43c 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [4b2 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer1.org1.example.com | [3e4 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [462 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a1c14bb5]Received RESPONSE, communicated (state:ready) +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [4b3 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [d1197770-d9ca-48c7-8791-4d994189bd98] +peer0.org1.example.com | [464 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Move state message COMPLETED +peer1.org1.example.com | [3e5 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39438], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org2.example.com | [43d 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [465 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [3e6 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer0.org2.example.com | [4b4 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +peer0.org1.example.com | [466 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]send state message COMPLETED +peer1.org1.example.com | [3e7 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [4b5 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer0.org1.example.com | [467 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message COMPLETED from shim +peer1.org2.example.com | [43e 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [990e983f]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer1.org1.example.com | [3e8 01-12 22:56:44.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [4b6 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [468 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [3a0 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [38c 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [3a1 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [3d7 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [422 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [22b 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org1.example.com | [3a2 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [423 12-19 06:47:42.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [38d 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -peer0.org2.example.com | [3d8 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3a3 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [22c 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [424 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -peer0.org2.example.com | [3d9 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [38e 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [22d 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 principal matched by identity 0 -peer0.org1.example.com | [3a4 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [22e 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ca c3 7f d6 ab 72 14 85 6c 82 cf 23 f6 09 0e 90 |.....r..l..#....| -peer1.org1.example.com | [38f 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [3da 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [425 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -peer0.org1.example.com | [3a5 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 00000010 33 5b a2 21 cb 72 91 0b d0 6b d7 3c 16 95 6c 04 |3[.!.r...k.<..l.| -peer0.org2.example.com | [3db 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [3a6 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [426 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -peer1.org1.example.com | [390 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c18000, header channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -orderer.example.com | [22f 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 06 57 4c 7f 81 cf d0 37 e6 9f 79 f2 |0D. .WL....7..y.| -peer0.org2.example.com | [3dc 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [391 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [3a7 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [427 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -peer0.org2.example.com | [3dd 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org1.example.com | [392 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | 00000010 a3 60 5a 2a 8c 8c 00 7d ca 40 69 10 ce 25 1d 89 |.`Z*...}.@i..%..| -peer0.org1.example.com | [3a8 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [3de 12-19 06:47:41.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [428 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -peer1.org1.example.com | [393 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 00000020 d8 d5 34 e7 02 20 41 83 ae b2 89 0d 1e 2b 31 10 |..4.. A......+1.| -peer1.org2.example.com | [429 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Internal desc = transport is closing ,at 1 attempt. Retrying in 1s -peer0.org1.example.com | [3a9 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [3df 12-19 06:47:41.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [394 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 00000030 38 dc 40 ea 37 a7 f2 34 b9 f1 d5 27 bd 5f e6 a7 |8.@.7..4...'._..| -peer1.org1.example.com | [395 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [3e0 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [42a 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -peer0.org1.example.com | [3aa 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 00000040 54 c8 d3 c1 65 7c |T...e|| -peer1.org1.example.com | [396 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [3e1 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [3ab 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [42b 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -peer1.org1.example.com | [397 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [398 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [3ac 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [3e2 12-19 06:47:41.63 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [42c 12-19 06:47:46.46 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -orderer.example.com | [230 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 principal evaluation succeeds for identity 0 -peer1.org1.example.com | [399 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [42d 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [3ad 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [231 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666054558468200 evaluation succeeds -peer1.org1.example.com | [39a 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [3e3 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [3ae 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [39b 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [42e 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [39c 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [3af 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [39d 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [232 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc4203c4c00 1 [0xc420180810]})]} -peer0.org2.example.com | [3e4 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [42f 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [39e 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [3e5 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [3b0 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [39f 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [3e6 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [430 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421fcbe90 -orderer.example.com | [233 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [3a0 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [3e7 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [234 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [3a1 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3b1 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [431 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -peer0.org2.example.com | [3e8 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420177300), Data:(*common.BlockData)(0xc42196f0e0), Metadata:(*common.BlockMetadata)(0xc42196f120)}, doMVCCValidation=true -orderer.example.com | [235 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [3a2 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [3e9 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [432 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [236 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [3a3 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [3b2 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3ea 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -orderer.example.com | [237 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...07526561646572731A0641646D696E73 -peer1.org1.example.com | [3a4 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [3eb 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -orderer.example.com | [238 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 56F978AE51A3706CE37FF02F5D9BBB6B13CFAD0A8E79342EDABBBB5AD1A7E369 -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11971 -peer1.org1.example.com | [3a5 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [239 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | ] -peer1.org1.example.com | [3a6 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [3b3 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [23a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [3ec 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx ID: [] to index -peer1.org1.example.com | [3a7 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [433 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [23b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [3ed 12-19 06:47:41.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [3a8 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [3b4 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [434 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -orderer.example.com | [23c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [3ee 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39463], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [3a9 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [23d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [435 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [3b5 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [3ef 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org1.example.com | [3aa 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [23e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [436 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [3f0 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [3ab 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [23f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [3f1 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [3b6 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [240 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [3f2 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [437 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421d02a80, header channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -orderer.example.com | [241 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [3f3 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org1.example.com | [3b7 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [242 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [3f4 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [3ac 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [3b8 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [438 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [243 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [3f5 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org1.example.com | [3b9 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [3ad 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [439 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [244 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [3f6 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [3ba 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [43a 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [245 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [3f7 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer1.org1.example.com | [3ae 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [3bb 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [3f8 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | [246 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [43b 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [3f9 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [3bc 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [3af 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [247 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [3fa 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [43c 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -peer1.org1.example.com | [3b0 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [3fb 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [3bd 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [248 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [43d 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [3fc 12-19 06:47:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [3be 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [3b1 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [3fd 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [249 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [3bf 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [3b2 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org2.example.com | [43e 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [3fe 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ffbf50 -peer0.org1.example.com | [3c0 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [24a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [3ff 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [43f 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6eee542a-b45e-43e2-aa56-c8078db1324e] -peer1.org1.example.com | [3b3 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [400 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [24b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [3c1 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [3b4 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [24c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [401 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer1.org2.example.com | [440 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=daec4451-ce1e-4f96-954b-b494944507b1,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org1.example.com | [3c2 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [3b5 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [24d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [402 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [441 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 chaindID businesschannel -peer0.org1.example.com | [3c3 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [3b6 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [24e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [403 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [442 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org1.example.com | [3c4 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [3b7 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [24f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [404 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ffdea0, header 0xc421ffbf80 -peer1.org2.example.com | [443 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [3c5 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [3b8 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [405 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [250 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [3b9 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [444 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [3c6 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [251 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [406 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: de870074b2402adde4230d8c8cf9a90b20a9648f0a23192ce74c2a0db7fc451c -peer1.org1.example.com | [3ba 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [445 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [daec4451]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [3bb 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [3c7 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [252 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [407 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: de870074b2402adde4230d8c8cf9a90b20a9648f0a23192ce74c2a0db7fc451c channel id: -peer1.org2.example.com | [446 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [3bc 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [3c8 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [253 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [447 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [daec4451]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [3bd 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3c9 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [408 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: de870074b2402adde4230d8c8cf9a90b20a9648f0a23192ce74c2a0db7fc451c channel id: version: 1.0.5 -orderer.example.com | [254 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [3be 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [3ca 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [448 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [daec4451]Move state message TRANSACTION -orderer.example.com | [255 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [409 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=de870074b2402adde4230d8c8cf9a90b20a9648f0a23192ce74c2a0db7fc451c,syscc=true,proposal=0xc421ffdea0,canname=lscc:1.0.5 -peer1.org1.example.com | [3bf 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [449 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [daec4451]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [3cb 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [256 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [40a 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [44a 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3c0 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [257 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3cc 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [40b 12-19 06:47:42.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [3c1 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [258 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [44b 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [daec4451]sending state message TRANSACTION -peer0.org1.example.com | [3cd 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [259 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [40c 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org1.example.com | [3c2 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [44c 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [daec4451]Received message TRANSACTION from shim -peer0.org1.example.com | [3ce 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [40d 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de870074]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [25a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [3cf 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [3c3 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [25b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [44d 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [daec4451]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [40e 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [25c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [3c4 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [3d0 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [40f 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [44e 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [daec4451]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [25d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [3d1 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [44f 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [410 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de870074]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [3c5 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [411 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de870074]Move state message TRANSACTION -peer0.org2.example.com | [412 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de870074]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [450 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [25e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3d2 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [3c6 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [451 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [3d3 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [413 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [25f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [3c7 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d4 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [452 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [414 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de870074]sending state message TRANSACTION -orderer.example.com | [260 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [3c8 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d5 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [453 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | [261 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [415 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de870074]Received message TRANSACTION from shim -peer1.org1.example.com | [3c9 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d6 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [262 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [416 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de870074]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [454 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [3ca 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d7 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [417 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [de870074]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [263 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [455 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [20ce9632-3688-42f2-8a7e-54baec35a921] -peer0.org2.example.com | [418 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de870074]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [3cb 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [264 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [3d8 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [419 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de870074]Move state message COMPLETED -peer1.org2.example.com | [456 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [3cc 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [265 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [41a 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de870074]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3d9 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3cd 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [266 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [457 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [20ce9632-3688-42f2-8a7e-54baec35a921] -peer0.org2.example.com | [41b 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de870074]send state message COMPLETED -peer0.org1.example.com | [3da 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [3ce 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [267 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [458 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [3db 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [41c 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de870074]Received message COMPLETED from shim -peer1.org1.example.com | [3cf 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [268 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [3dc 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [459 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer0.org2.example.com | [41d 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de870074]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [3d0 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3dd 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [269 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [41e 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de870074b2402adde4230d8c8cf9a90b20a9648f0a23192ce74c2a0db7fc451c]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [3d1 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [45a 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [26a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [3de 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [41f 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:de870074b2402adde4230d8c8cf9a90b20a9648f0a23192ce74c2a0db7fc451c -orderer.example.com | [26b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [45b 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [daec4451]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [3d2 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [420 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [3df 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [45c 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [daec4451]Move state message COMPLETED -orderer.example.com | [26c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [421 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [3e0 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d3 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [45d 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [daec4451]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [26d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [422 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [3d4 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3e1 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [26e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [45e 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [daec4451]send state message COMPLETED -peer0.org2.example.com | [423 12-19 06:47:42.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [26f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [3d5 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3e2 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [45f 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [daec4451]Received message COMPLETED from shim -peer0.org2.example.com | [424 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [270 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org1.example.com | [3e3 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d6 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [425 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421897a40 -peer1.org2.example.com | [460 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [daec4451]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [271 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer1.org1.example.com | [3d7 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3e4 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [426 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [3d8 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [461 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [daec4451-ce1e-4f96-954b-b494944507b1]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [427 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [272 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org1.example.com | [3e5 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [428 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer1.org1.example.com | [3d9 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [462 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:daec4451-ce1e-4f96-954b-b494944507b1 -orderer.example.com | [273 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3e6 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [429 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [463 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [3da 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [274 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [42a 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [3e7 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [3db 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [464 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6eee542a-b45e-43e2-aa56-c8078db1324e] -orderer.example.com | [275 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [3e8 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [3dc 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [42b 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202da1e0, header 0xc421897a70 -peer0.org1.example.com | [3e9 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [465 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [42c 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [276 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer1.org1.example.com | [3dd 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [42d 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer0.org1.example.com | [3ea 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [277 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [466 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [3eb 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [3de 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [42e 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] -peer1.org2.example.com | [467 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42170ccc0), Data:(*common.BlockData)(0xc4218ffc00), Metadata:(*common.BlockMetadata)(0xc4218ffc40)}, doMVCCValidation=true -orderer.example.com | [278 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [3ec 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [468 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [3df 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [42f 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [3ed 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [469 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [279 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -peer1.org1.example.com | [3e0 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [3ee 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [430 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5dad023e-1b2e-4254-b2b2-b3391bdeb7b6] -peer1.org2.example.com | [46a 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] marked as valid by state validator -orderer.example.com | [27a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3e1 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [3ef 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [46b 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -peer0.org2.example.com | [431 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd channel id: businesschannel -peer1.org1.example.com | [3e2 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 -peer0.org1.example.com | [3f0 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [432 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd channel id: businesschannel version: 1.0.5 -peer1.org1.example.com | [3e3 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [27b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | ] -peer0.org2.example.com | [433 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd,syscc=true,proposal=0xc4202da1e0,canname=lscc:1.0.5 -peer1.org1.example.com | [3e4 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [3f1 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [46c 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to index -orderer.example.com | [27c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [3e5 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [434 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [3f2 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [46d 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx number:[0] ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to blockNumTranNum index -orderer.example.com | [27d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3f3 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [435 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [46e 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [3e6 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [27e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3f4 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [436 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [46f 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org1.example.com | [3e7 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [27f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [437 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [65ef6751]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [470 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | [280 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer1.org1.example.com | [3e8 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [3f5 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [471 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [438 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [472 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | [281 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer1.org1.example.com | [3e9 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [439 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [473 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [3f6 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3ea 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [282 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer1.org2.example.com | [474 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer0.org2.example.com | [43a 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [65ef6751]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [475 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [3eb 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [3f7 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [283 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [476 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [43b 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message TRANSACTION -peer0.org1.example.com | [3f8 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [477 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [3ec 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [284 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3f9 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [43c 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [478 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [3ed 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [285 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [43d 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3fa 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [479 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer1.org1.example.com | [3ee 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [286 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [43e 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message TRANSACTION -peer1.org2.example.com | [47a 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org1.example.com | [3ef 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3fb 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [47b 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [43f 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Received message TRANSACTION from shim -orderer.example.com | [287 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [440 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [65ef6751]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [3fc 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3f0 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [47c 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [288 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [441 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [65ef6751]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [3fd 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [3f1 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [289 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer1.org2.example.com | [47d 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | [28a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer1.org1.example.com | [3f2 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3fe 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [442 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [65ef6751]Sending GET_STATE -orderer.example.com | [28b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer1.org2.example.com | [47e 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [3ff 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3f3 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [28c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [443 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message GET_STATE from shim -peer1.org2.example.com | [47f 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [28d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [400 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3f4 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [480 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [444 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [28e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [401 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [481 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42248f800 -peer1.org1.example.com | [3f5 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [28f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [402 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [445 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [65ef6751]Received GET_STATE, invoking get state from ledger -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [403 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [482 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [43f 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [3e9 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [4b7 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5fd778f]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [469 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e]HandleMessage- COMPLETED. Notify +orderer.example.com | [289 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [3ea 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org2.example.com | [440 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [990e983f]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [4b8 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5fd778f]Move state message COMPLETED +peer0.org1.example.com | [46a 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer1.org1.example.com | [3eb 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [441 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [990e983f]Move state message TRANSACTION +peer0.org1.example.com | [46b 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [4b9 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5fd778f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [3ec 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org2.example.com | [442 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [990e983f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [3f6 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [446 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [404 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [46c 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e,syscc=false,proposal=0xc421bd69b0,canname=mycc:1.0 +peer0.org2.example.com | [4ba 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5fd778f]send state message COMPLETED orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [447 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [483 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3f7 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [405 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer1.org2.example.com | [484 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer1.org1.example.com | [3f8 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [406 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [448 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [3ed 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [443 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [46d 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer1.org1.example.com | [3ee 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer0.org2.example.com | [4bb 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f5fd778f]Received message COMPLETED from shim +peer1.org2.example.com | [444 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [990e983f]sending state message TRANSACTION +peer0.org2.example.com | [4bc 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f5fd778f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [407 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [449 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]No state associated with key: mycc. Sending RESPONSE with an empty payload -peer1.org2.example.com | [485 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [408 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [3f9 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [44a 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [65ef6751]handleGetState serial send RESPONSE -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer1.org2.example.com | [486 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [409 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org1.example.com | [40a 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [44b 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Received message RESPONSE from shim -peer1.org1.example.com | [3fa 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [40b 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [487 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422487b80, header 0xc42248f830 -peer0.org2.example.com | [44c 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [65ef6751]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer0.org1.example.com | [40c 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [3fb 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [488 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org1.example.com | [40d 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [44d 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [65ef6751]before send -peer1.org1.example.com | [3fc 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer0.org1.example.com | [40e 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [46e 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer1.org2.example.com | [445 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [990e983f]Received message TRANSACTION from shim +peer1.org1.example.com | [3ef 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [4bd 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f5fd778f-a2a1-4eb3-adc5-5b9a87c294bc]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [46f 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [446 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [990e983f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [3f0 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [470 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [4be 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f5fd778f-a2a1-4eb3-adc5-5b9a87c294bc +peer1.org2.example.com | [447 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [990e983f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer1.org1.example.com | [3f1 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [4bf 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [471 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [448 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [4c0 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [196cf1e4-c299-4f95-bde2-c814d3683dfe] +peer0.org1.example.com | [472 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [3f2 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer1.org2.example.com | [449 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [4c1 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [3f3 01-12 22:56:44.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [473 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer0.org2.example.com | [4c2 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [44a 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer1.org1.example.com | [3f4 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [4c3 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421fb6ec0), Data:(*common.BlockData)(0xc421da4140), Metadata:(*common.BlockMetadata)(0xc421da4180)}, doMVCCValidation=true +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [44b 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [44e 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [65ef6751]after send -peer1.org2.example.com | [489 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 -peer1.org1.example.com | [3fd 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [40f 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42163ba00), Data:(*common.BlockData)(0xc42141df60), Metadata:(*common.BlockMetadata)(0xc42141dfa0)}, doMVCCValidation=true -orderer.example.com | [290 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [48a 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264] -peer1.org1.example.com | [3fe 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [410 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [411 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [48b 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [412 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -peer0.org2.example.com | [44f 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [65ef6751]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [48c 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5750deca-2f9e-427b-a80d-a48178293578] -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [3ff 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11971 -peer0.org2.example.com | [450 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [65ef6751]GetState received payload RESPONSE -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org2.example.com | [48d 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 channel id: businesschannel -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [451 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [65ef6751]Inside putstate -peer1.org1.example.com | [400 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | ] -peer1.org2.example.com | [48e 12-19 06:48:15.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264,syscc=true,proposal=0xc422487b80,canname=lscc:1.0.5 -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [413 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx ID: [] to index -peer0.org2.example.com | [452 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [65ef6751]Sending PUT_STATE -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [414 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [401 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [453 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message PUT_STATE from shim -peer1.org2.example.com | [48f 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [415 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39463], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [402 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [454 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [416 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org2.example.com | [490 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org2.example.com | [455 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [417 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org1.example.com | [403 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42170e100), Data:(*common.BlockData)(0xc4214b6240), Metadata:(*common.BlockMetadata)(0xc4214b6280)}, doMVCCValidation=true -peer1.org2.example.com | [491 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [418 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [456 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]state is ready -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [492 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [291 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [404 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [457 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [493 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [419 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [405 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [494 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [458 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [65ef6751]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [41a 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [495 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [406 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -peer0.org2.example.com | [459 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message RESPONSE -peer0.org1.example.com | [41b 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org2.example.com | [496 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Move state message TRANSACTION -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11971 -peer0.org1.example.com | [41c 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [497 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | ] -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [41d 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [45a 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [498 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org1.example.com | [407 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx ID: [] to index -peer0.org1.example.com | [41e 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer1.org2.example.com | [499 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]sending state message TRANSACTION -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org2.example.com | [45b 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [41f 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [408 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer1.org2.example.com | [49a 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Received message TRANSACTION from shim -peer0.org2.example.com | [45c 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message RESPONSE -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [420 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [409 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39463], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org2.example.com | [49b 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [45d 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Received message RESPONSE from shim -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org2.example.com | [49c 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40bf0a40]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [421 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [40a 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer0.org2.example.com | [45e 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [65ef6751]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [49d 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40bf0a40]Sending GET_STATE -peer0.org2.example.com | [45f 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [65ef6751]before send -peer1.org1.example.com | [40b 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [422 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | [292 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [49e 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message GET_STATE from shim -peer0.org2.example.com | [460 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [65ef6751]after send -peer0.org1.example.com | [423 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [40c 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [293 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [49f 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [424 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [294 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [40d 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [461 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [65ef6751]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [4a0 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40bf0a40]Received GET_STATE, invoking get state from ledger -orderer.example.com | [295 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [425 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420373c20 -peer0.org2.example.com | [462 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [65ef6751]Received RESPONSE. Successfully updated state -peer1.org1.example.com | [40e 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -orderer.example.com | [296 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org2.example.com | [4a1 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [426 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [463 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [40f 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | [297 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [4a2 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40bf0a40] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [427 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [410 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org2.example.com | [464 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Move state message COMPLETED -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [4a3 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [428 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org2.example.com | [465 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [65ef6751]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [411 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [429 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4a4 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40bf0a40]Got state. Sending RESPONSE -peer0.org2.example.com | [466 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]send state message COMPLETED -peer1.org1.example.com | [412 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer0.org1.example.com | [42a 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4a5 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40bf0a40]handleGetState serial send RESPONSE -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [42b 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ec1ef0, header 0xc420373c50 -peer1.org1.example.com | [413 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [4a6 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Received message RESPONSE from shim -peer0.org2.example.com | [467 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message COMPLETED from shim -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org1.example.com | [414 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4a7 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [42c 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [468 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [415 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4a8 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40bf0a40]before send -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [4a9 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40bf0a40]after send -peer0.org2.example.com | [469 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [4aa 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40bf0a40]GetState received payload RESPONSE -peer1.org1.example.com | [416 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [42d 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer0.org2.example.com | [46a 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer1.org2.example.com | [4ac 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Transaction completed. Sending COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [42e 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -peer1.org1.example.com | [417 12-19 06:47:41.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [4ab 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [40bf0a40]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [42f 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [418 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [4ad 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Move state message COMPLETED -peer0.org2.example.com | [46b 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer1.org2.example.com | [4ae 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [46c 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd,syscc=false,proposal=0xc4202da1e0,canname=mycc:1.0 -peer0.org1.example.com | [430 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [26678784-99b4-4c70-af0f-79d1b440b1bb] -peer1.org1.example.com | [419 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422064840 -peer1.org2.example.com | [4af 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]send state message COMPLETED -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [46d 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -peer1.org1.example.com | [41a 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [4b0 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message COMPLETED from shim -peer0.org1.example.com | [431 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel -peer0.org2.example.com | [46e 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [41b 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [4b1 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -peer0.org2.example.com | [46f 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [41c 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org2.example.com | [4b2 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [470 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer0.org1.example.com | [432 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel version: 1.0.5 -peer1.org1.example.com | [41d 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4b3 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 -peer0.org2.example.com | [471 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer1.org1.example.com | [41e 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4b4 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [472 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -orderer.example.com | IEhjT+WlcQ== -peer0.org1.example.com | [433 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89,syscc=true,proposal=0xc421ec1ef0,canname=lscc:1.0.5 -peer1.org1.example.com | [41f 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422066500, header 0xc422064870 -peer1.org2.example.com | [4b5 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [473 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [420 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [4b6 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 channel id: businesschannel version: 1.0 -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org1.example.com | [421 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 60aadbfaecbbdc4fbde93ffdcbccce752b299ad5becb1f35d727535934ae177d -peer0.org1.example.com | [434 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [4b7 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264,syscc=false,proposal=0xc422487b80,canname=mycc:1.0 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [422 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 60aadbfaecbbdc4fbde93ffdcbccce752b299ad5becb1f35d727535934ae177d channel id: -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [4b8 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264,syscc=true,proposal=0xc422487b80,canname=lscc:1.0.5 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [423 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 60aadbfaecbbdc4fbde93ffdcbccce752b299ad5becb1f35d727535934ae177d channel id: version: 1.0.5 -peer0.org1.example.com | [435 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [4b9 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [424 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=60aadbfaecbbdc4fbde93ffdcbccce752b299ad5becb1f35d727535934ae177d,syscc=true,proposal=0xc422066500,canname=lscc:1.0.5 -orderer.example.com | [298 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [436 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [4ba 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.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 | [425 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [4bb 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org2.example.com | [474 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock -peer1.org1.example.com | [426 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [4bc 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [475 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock -peer1.org1.example.com | [427 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [437 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [476 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 -peer1.org1.example.com | [428 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [60aadbfa]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [4bd 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [477 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) -peer1.org1.example.com | [429 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [438 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [4be 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [478 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -peer1.org1.example.com | [42a 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [439 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [479 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -peer1.org1.example.com | [42b 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [60aadbfa]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [4bf 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [47a 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 -peer1.org1.example.com | [42c 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60aadbfa]Move state message TRANSACTION -peer0.org2.example.com | [47b 12-19 06:47:59.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default -peer1.org1.example.com | [42d 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [60aadbfa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [4c0 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Move state message TRANSACTION -peer0.org1.example.com | [43a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [47c 12-19 06:47:59.56 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer1.org1.example.com | [42e 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4c1 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [47d 12-19 06:47:59.56 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer0.org2.example.com | [47e 12-19 06:47:59.56 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org2.example.com | [4c2 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [42f 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60aadbfa]sending state message TRANSACTION -peer0.org1.example.com | [43b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer1.org1.example.com | [430 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60aadbfa]Received message TRANSACTION from shim -peer1.org2.example.com | [4c3 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]sending state message TRANSACTION -peer0.org2.example.com | ADD binpackage.tar /usr/local/bin -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [43c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [431 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [60aadbfa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org1.example.com | [43d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4c4 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Received message TRANSACTION from shim -peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org1.example.com | [432 12-19 06:47:41.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [60aadbfa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [43e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message TRANSACTION -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org2.example.com | [4c5 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org1.example.com | [433 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60aadbfa]Transaction completed. Sending COMPLETED -peer0.org2.example.com | org.hyperledger.fabric.version="1.0.5" \ -peer0.org1.example.com | [43f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message TRANSACTION from shim -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org2.example.com | [4c6 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40bf0a40]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer1.org1.example.com | [434 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60aadbfa]Move state message COMPLETED -peer1.org2.example.com | [4c7 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40bf0a40]Sending GET_STATE -peer0.org1.example.com | [440 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [435 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [60aadbfa]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [4c8 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message GET_STATE from shim -peer0.org2.example.com | [47f 12-19 06:47:59.56 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 -peer0.org1.example.com | [441 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bac3811f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [299 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [436 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [60aadbfa]send state message COMPLETED -peer1.org2.example.com | [4c9 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [480 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org1.example.com | [442 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bac3811f]Sending GET_STATE -peer1.org1.example.com | [437 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [60aadbfa]Received message COMPLETED from shim -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [443 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message GET_STATE from shim -peer0.org2.example.com | [481 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer1.org2.example.com | [4ca 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40bf0a40]Received GET_STATE, invoking get state from ledger -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [444 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [438 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [60aadbfa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [482 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [4cb 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [439 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [60aadbfaecbbdc4fbde93ffdcbccce752b299ad5becb1f35d727535934ae177d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [445 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [bac3811f]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [4cc 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40bf0a40] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [483 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [4cd 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [43a 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:60aadbfaecbbdc4fbde93ffdcbccce752b299ad5becb1f35d727535934ae177d -peer0.org1.example.com | [446 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [484 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [43b 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [4ce 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40bf0a40]Got state. Sending RESPONSE -peer0.org1.example.com | [447 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [485 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421dc91a0 -peer1.org1.example.com | [43c 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [4cf 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40bf0a40]handleGetState serial send RESPONSE -peer0.org1.example.com | [448 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [43d 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org1.example.com | [449 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]No state associated with key: mycc. Sending RESPONSE with an empty payload -peer1.org2.example.com | [4d0 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Received message RESPONSE from shim -peer0.org2.example.com | [486 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -peer1.org1.example.com | [43e 12-19 06:47:41.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [44a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]handleGetState serial send RESPONSE -peer1.org2.example.com | [4d1 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org1.example.com | [43f 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [487 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [44b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message RESPONSE from shim -peer1.org2.example.com | [4d2 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40bf0a40]before send -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [44c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [440 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [4d3 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [40bf0a40]after send -peer0.org2.example.com | [488 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [44d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]before send -peer1.org1.example.com | [441 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org2.example.com | [489 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org2.example.com | [4d4 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [40bf0a40]Received RESPONSE, communicated (state:ready) -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [44e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]after send -peer0.org2.example.com | [48a 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [442 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421848900 -peer1.org2.example.com | [4d5 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40bf0a40]GetState received payload RESPONSE -peer0.org1.example.com | [450 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bac3811f]Received RESPONSE, communicated (state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [48b 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4d6 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [443 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -orderer.example.com | [29a 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [44f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bac3811f]GetState received payload RESPONSE -peer0.org2.example.com | [48c 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4215a0000, header channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -peer1.org1.example.com | [444 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [4d7 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Move state message COMPLETED -orderer.example.com | [29b 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [451 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bac3811f]Inside putstate -peer1.org2.example.com | [4d8 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [48d 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [445 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [452 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bac3811f]Sending PUT_STATE -orderer.example.com | [29c 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [48e 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [4d9 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]send state message COMPLETED -peer1.org1.example.com | [446 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org1.example.com | [453 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message PUT_STATE from shim -orderer.example.com | [29d 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [48f 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [447 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4da 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message COMPLETED from shim -peer0.org1.example.com | [454 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [29e 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [448 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [490 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [4db 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [455 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [449 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a7ea80, header channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -peer1.org2.example.com | [4dc 12-19 06:48:15.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [491 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -orderer.example.com | [29f 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [456 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]state is ready -peer1.org2.example.com | [4dd 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 -peer1.org1.example.com | [44a 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [492 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [44b 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [457 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [4de 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [493 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [44c 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [4df 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer0.org1.example.com | [458 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [494 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c8d30756-7adf-41f2-8a0e-7b6ccb370947] -peer1.org1.example.com | [44d 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [4e0 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [495 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=8d4471ae-1786-4b26-b0ce-2d40793367c6,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org1.example.com | [459 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message RESPONSE -peer1.org2.example.com | [4e1 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [44e 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org2.example.com | [496 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 chaindID businesschannel -peer1.org2.example.com | [4e2 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | [44f 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [45a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [4e3 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org2.example.com | [497 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org1.example.com | [450 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [4e4 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [45b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [498 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [45c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message RESPONSE -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org1.example.com | [451 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [215bc06c-fa2e-48f4-bfdf-90da485479e2] -peer0.org2.example.com | [499 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [45d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message RESPONSE from shim -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [452 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=fa519e71-f510-4ea9-a5dc-1cc8d6d91846,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org2.example.com | [49a 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8d4471ae]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [45e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [453 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 chaindID businesschannel -peer0.org1.example.com | [45f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]before send -peer0.org2.example.com | [49b 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [454 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer0.org2.example.com | [49c 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8d4471ae]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [460 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]after send -peer1.org1.example.com | [455 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -peer0.org2.example.com | [49d 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4471ae]Move state message TRANSACTION -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [461 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bac3811f]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [456 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer0.org2.example.com | [49e 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4471ae]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [4e5 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock -peer0.org1.example.com | [462 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bac3811f]Received RESPONSE. Successfully updated state -peer1.org1.example.com | [457 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa519e71]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | XXreRTw6jXg= -peer0.org2.example.com | [49f 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [463 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [4e6 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock -peer1.org1.example.com | [458 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [4e7 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 -peer0.org2.example.com | [4a0 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4471ae]sending state message TRANSACTION -peer1.org1.example.com | [459 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa519e71]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [464 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Move state message COMPLETED -orderer.example.com | [2a0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [4a1 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4471ae]Received message TRANSACTION from shim -peer1.org1.example.com | [45a 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa519e71]Move state message TRANSACTION -peer1.org2.example.com | [4e8 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [465 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [4a2 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d4471ae]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [45b 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa519e71]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [4e9 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer0.org1.example.com | [466 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]send state message COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [4a3 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8d4471ae]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [45c 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4ea 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer0.org2.example.com | [4a4 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [467 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message COMPLETED from shim -peer1.org1.example.com | [45d 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa519e71]sending state message TRANSACTION -peer0.org2.example.com | [4a5 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [4eb 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 -peer0.org1.example.com | [468 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org1.example.com | [45e 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa519e71]Received message TRANSACTION from shim -peer0.org2.example.com | [4a6 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [4ec 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default -peer0.org1.example.com | [469 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89]HandleMessage- COMPLETED. Notify -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [45f 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa519e71]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [4a7 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [4ed 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [46a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer1.org1.example.com | [460 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fa519e71]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [4a8 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [4ee 12-19 06:48:15.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org1.example.com | [46b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [4a9 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [461 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [4ef 12-19 06:48:15.67 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | [46c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89,syscc=false,proposal=0xc421ec1ef0,canname=mycc:1.0 -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org2.example.com | [4aa 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [04c14f70-ea48-434b-9121-f63abdadec92] -peer1.org1.example.com | [462 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org1.example.com | [46d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org1.example.com | [463 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [4ab 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | ADD binpackage.tar /usr/local/bin -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [46e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [464 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org1.example.com | [46f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [4ac 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [04c14f70-ea48-434b-9121-f63abdadec92] -peer1.org1.example.com | [465 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org2.example.com | [4ad 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [470 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org1.example.com | [466 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [471 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [4ae 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer1.org1.example.com | [467 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [20363e8f-e561-43ef-a025-85abdab19175] -peer1.org2.example.com | org.hyperledger.fabric.version="1.0.5" \ -orderer.example.com | [2a1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [472 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | [468 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | [4af 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [469 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [20363e8f-e561-43ef-a025-85abdab19175] -peer0.org1.example.com | [473 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 -peer0.org2.example.com | [4b0 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4471ae]Transaction completed. Sending COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [46a 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [4b1 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4471ae]Move state message COMPLETED -peer1.org1.example.com | [46b 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [4b2 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d4471ae]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [46c 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [46d 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa519e71]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [4f0 12-19 06:48:15.67 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 -peer0.org2.example.com | [4b3 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4471ae]send state message COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [46e 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa519e71]Move state message COMPLETED -peer1.org2.example.com | [4f1 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [4b4 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4471ae]Received message COMPLETED from shim -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [46f 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa519e71]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org2.example.com | [4f2 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [4b5 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4471ae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [474 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -peer1.org2.example.com | [4f3 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [470 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa519e71]send state message COMPLETED -peer0.org1.example.com | [475 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org2.example.com | [4b6 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4471ae-1786-4b26-b0ce-2d40793367c6]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [476 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -peer1.org1.example.com | [471 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa519e71]Received message COMPLETED from shim -peer1.org2.example.com | [4f4 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219f59e0 -peer0.org2.example.com | [4b7 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8d4471ae-1786-4b26-b0ce-2d40793367c6 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org1.example.com | [477 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) -peer1.org2.example.com | [4f5 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer1.org1.example.com | [472 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa519e71]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [4b8 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [478 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer1.org2.example.com | [4f6 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [473 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa519e71-f510-4ea9-a5dc-1cc8d6d91846]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4b9 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c8d30756-7adf-41f2-8a0e-7b6ccb370947] -peer0.org1.example.com | [479 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer1.org1.example.com | [474 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa519e71-f510-4ea9-a5dc-1cc8d6d91846 -peer1.org2.example.com | [4f7 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [4ba 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [47a 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer1.org1.example.com | [475 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [4f8 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer0.org2.example.com | [4bb 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [47b 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [476 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [215bc06c-fa2e-48f4-bfdf-90da485479e2] -peer0.org2.example.com | [4bc 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219e94c0), Data:(*common.BlockData)(0xc421fd9840), Metadata:(*common.BlockMetadata)(0xc421fd9880)}, doMVCCValidation=true -peer0.org1.example.com | [47c 12-19 06:47:42.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -orderer.example.com | [2a2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [4f9 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [477 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [4bd 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [47d 12-19 06:47:42.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 -orderer.example.com | [2a3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [4fa 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [4be 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [478 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [2a4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [47e 12-19 06:47:42.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer1.org1.example.com | [479 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421523b80), Data:(*common.BlockData)(0xc421ff0900), Metadata:(*common.BlockMetadata)(0xc421ff0940)}, doMVCCValidation=true -peer1.org2.example.com | [4fb 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4214e2000, header channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer0.org2.example.com | [4bf 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] marked as valid by state validator -orderer.example.com | [2a5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org1.example.com | [47a 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [4fc 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org2.example.com | [4c0 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -orderer.example.com | [2a6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer1.org2.example.com | [4fd 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [47b 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -orderer.example.com | [2a7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org2.example.com | txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 -peer1.org1.example.com | [47c 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] marked as valid by state validator -peer1.org2.example.com | [4fe 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [2a8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | [47d 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -peer0.org2.example.com | ] -peer1.org2.example.com | [4ff 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | [2a9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 -peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [4c1 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to index -peer1.org2.example.com | [500 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] -orderer.example.com | [2aa 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | org.hyperledger.fabric.version="1.0.5" \ -peer1.org1.example.com | ] -peer0.org2.example.com | [4c2 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx number:[0] ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to blockNumTranNum index -orderer.example.com | [2ab 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer1.org2.example.com | [501 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [47e 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to index -orderer.example.com | [2ac 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [502 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 -peer0.org2.example.com | [4c3 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [47f 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx number:[0] ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to blockNumTranNum index -orderer.example.com | [2ad 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [503 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [83f5bac0-2045-46fc-bb77-c971913b5fbc] -peer0.org2.example.com | [4c4 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org1.example.com | [480 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [2ae 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [504 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=1ee9793d-2fea-40ad-b588-ae543964fd0b,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer1.org1.example.com | [481 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [4c5 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | [2af 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [505 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd chaindID businesschannel -peer1.org1.example.com | [482 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [4c6 12-19 06:48:14.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -peer0.org1.example.com | [47f 12-19 06:47:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 -orderer.example.com | [2b0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -peer1.org2.example.com | [506 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org1.example.com | [483 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [2b1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [4c7 12-19 06:48:14.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [507 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [480 12-19 06:47:58.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -orderer.example.com | [2b2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer1.org1.example.com | [484 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer1.org2.example.com | [508 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [481 12-19 06:47:58.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [4c8 12-19 06:48:14.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer1.org2.example.com | [509 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ee9793d]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [485 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [482 12-19 06:47:58.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -peer0.org2.example.com | [4c9 12-19 06:48:14.70 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -orderer.example.com | [2b3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [486 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [50a 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [483 12-19 06:47:58.94 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer1.org1.example.com | [487 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | [2b4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org2.example.com | [4ca 12-19 06:48:15.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 -peer1.org2.example.com | [50b 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1ee9793d]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [2b5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org1.example.com | [488 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [4cb 12-19 06:48:15.14 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) -peer0.org1.example.com | [484 12-19 06:47:59.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -peer1.org2.example.com | [50c 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ee9793d]Move state message TRANSACTION -orderer.example.com | [2b6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org2.example.com | [4cc 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [489 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org1.example.com | [485 12-19 06:47:59.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -peer1.org1.example.com | [48a 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [50d 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1ee9793d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [486 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [4cd 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [2b7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org2.example.com | [50e 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [487 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [48b 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer0.org2.example.com | [4ce 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | [2b8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [488 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [50f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ee9793d]sending state message TRANSACTION -peer1.org1.example.com | [48c 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer0.org1.example.com | [489 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [4cf 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [2b9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer1.org2.example.com | [510 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee9793d]Received message TRANSACTION from shim -peer0.org1.example.com | [48a 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer1.org1.example.com | [48d 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [4d0 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer1.org2.example.com | [511 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ee9793d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [48b 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -orderer.example.com | [2ba 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [48c 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [48d 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org1.example.com | [48e 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [512 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1ee9793d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [4d1 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer0.org1.example.com | [48e 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | [2bb 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [48f 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [513 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [4d2 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [48f 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [490 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [514 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [2bc 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [491 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message READY -peer1.org1.example.com | [490 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [4d3 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org2.example.com | [515 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | [2bd 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [491 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [516 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [4d4 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [492 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [517 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | [2be 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [493 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bac3811f]Entered state ready -peer1.org1.example.com | [492 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [518 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [4d5 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [494 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer1.org1.example.com | [493 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | [2bf 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer1.org2.example.com | [519 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [516c14c3-f210-48f6-a796-47a16322d1c8] -peer0.org1.example.com | [495 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message READY -peer0.org2.example.com | [4d6 12-19 06:48:15.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [494 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [495 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421801d70 -peer1.org2.example.com | [51a 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [496 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | [2c0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org2.example.com | [4d7 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message READY -peer1.org1.example.com | [496 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer0.org1.example.com | [497 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [51b 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [516c14c3-f210-48f6-a796-47a16322d1c8] -orderer.example.com | [2c1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer1.org1.example.com | [497 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [4d8 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [498 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [498 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [499 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | [2c2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer1.org2.example.com | [51c 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [4d9 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [65ef6751]Entered state ready -peer0.org1.example.com | [49a 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [499 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -orderer.example.com | [2c3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer0.org2.example.com | [4da 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer1.org1.example.com | [49a 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [49b 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [51d 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer1.org1.example.com | [49b 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [2c4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org2.example.com | [4db 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message READY -peer0.org1.example.com | [49c 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [49c 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b77500, header channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer1.org2.example.com | [51e 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -orderer.example.com | [2c5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [49d 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [49d 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [51f 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee9793d]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [4dc 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [49e 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [2c6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [520 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee9793d]Move state message COMPLETED -peer0.org2.example.com | [4dd 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [49f 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [521 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ee9793d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [4de 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [2c7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [49e 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message INIT -peer1.org1.example.com | [4a0 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [522 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ee9793d]send state message COMPLETED -peer0.org2.example.com | [4df 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [4a1 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] -peer1.org2.example.com | [523 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1ee9793d]Received message COMPLETED from shim -orderer.example.com | [2c8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer1.org1.example.com | [4a2 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [49f 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [4e0 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [65ef6751]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [524 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1ee9793d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [2c9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [4a0 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4e1 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [525 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1ee9793d-2fea-40ad-b588-ae543964fd0b]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [4a3 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [4e2 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [526 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1ee9793d-2fea-40ad-b588-ae543964fd0b -orderer.example.com | [2ca 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org2.example.com | [4e3 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [65ef6751]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [4a1 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message INIT -peer1.org1.example.com | [4a4 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e2fc483a-f283-4b06-ba74-bbdf2ff1e4fe] -peer1.org2.example.com | [527 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [4e4 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message INIT -peer1.org2.example.com | [528 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd, error Chaincode mycc is already instantiated -peer0.org1.example.com | [4a2 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message PUT_STATE from shim -peer1.org1.example.com | [4a5 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=0e7f46ea-51d0-4364-8768-313b9769b979,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org2.example.com | [4e5 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [529 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [83f5bac0-2045-46fc-bb77-c971913b5fbc] -orderer.example.com | [2cb 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer1.org1.example.com | [4a6 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd chaindID businesschannel -peer0.org2.example.com | [4e6 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4a3 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [52a 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd returned error Chaincode mycc is already instantiated -orderer.example.com | [2cc 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org2.example.com | [4e7 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message INIT -peer1.org2.example.com | [52b 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [4a7 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org1.example.com | [4a4 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4e8 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message PUT_STATE from shim -peer1.org2.example.com | [52c 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [2cd 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [4a5 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]state is ready -peer1.org2.example.com | [52d 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421974840), Data:(*common.BlockData)(0xc42220e9c0), Metadata:(*common.BlockMetadata)(0xc42220ea00)}, doMVCCValidation=true -orderer.example.com | [2ce 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org2.example.com | [4e9 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [4a8 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [2cf 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer0.org2.example.com | [4ea 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [52e 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [4a6 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [4eb 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]state is ready -peer1.org2.example.com | [52f 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -orderer.example.com | [2d0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer1.org1.example.com | [4a9 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [530 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -orderer.example.com | [2d1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer0.org2.example.com | [4ec 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [4a7 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]enterBusyState trigger event RESPONSE -orderer.example.com | [2d2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org2.example.com | [4ed 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [65ef6751]enterBusyState trigger event RESPONSE -peer1.org2.example.com | txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 -peer1.org1.example.com | [4aa 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e7f46ea]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [4ee 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message RESPONSE -orderer.example.com | [2d3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer1.org2.example.com | ] -peer0.org1.example.com | [4a8 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message RESPONSE -peer0.org2.example.com | [4ef 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [4ab 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [2d4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer1.org2.example.com | [531 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to index -peer0.org2.example.com | [4f0 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2d5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer1.org2.example.com | [532 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to blockNumTranNum index -peer1.org1.example.com | [4ac 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e7f46ea]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4a9 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [4f1 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message RESPONSE -orderer.example.com | [2d6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org2.example.com | [533 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49882], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org2.example.com | [4f2 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message PUT_STATE from shim -peer1.org1.example.com | [4ad 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e7f46ea]Move state message TRANSACTION -peer0.org1.example.com | [4aa 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2d7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer1.org2.example.com | [534 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer0.org2.example.com | [4f3 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [2d8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer1.org2.example.com | [535 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [4ae 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0e7f46ea]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [4ab 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message RESPONSE -orderer.example.com | [2d9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -peer1.org2.example.com | [536 12-19 06:48:31.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer0.org2.example.com | [4f4 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4af 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2da 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer1.org2.example.com | [537 12-19 06:48:31.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [4f5 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]state is ready -orderer.example.com | [2db 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer1.org1.example.com | [4b0 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e7f46ea]sending state message TRANSACTION -peer0.org1.example.com | [4ac 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message PUT_STATE from shim -orderer.example.com | [2dc 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer0.org2.example.com | [4f6 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [65ef6751]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [538 12-19 06:48:31.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -peer1.org1.example.com | [4b1 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e7f46ea]Received message TRANSACTION from shim -peer0.org1.example.com | [4ad 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [2dd 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org2.example.com | [4f7 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [65ef6751]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [539 12-19 06:48:31.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer0.org1.example.com | [4ae 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4b2 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e7f46ea]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [4f8 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message RESPONSE -peer1.org2.example.com | [53a 12-19 06:48:31.88 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 -orderer.example.com | [2de 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer1.org1.example.com | [4b3 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e7f46ea]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [4af 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]state is ready -peer1.org2.example.com | [53b 12-19 06:48:31.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) -peer0.org2.example.com | [4f9 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [4b4 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [2df 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [53c 12-19 06:48:31.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [4b0 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [4fa 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2e0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [4b5 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [4b1 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [53d 12-19 06:48:31.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [4fb 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message RESPONSE -orderer.example.com | [2e1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [4b6 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [53e 12-19 06:48:31.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [4b2 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message RESPONSE -orderer.example.com | [2e2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [4fc 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message COMPLETED from shim -peer1.org1.example.com | [4b7 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [4b3 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [53f 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [4fd 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [2e3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [4b8 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [4fe 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4b4 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4b9 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [2e4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [540 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org1.example.com | [4b5 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message RESPONSE -peer0.org2.example.com | [4ff 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -orderer.example.com | [2e5 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [4ba 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [05f74ea7-a2ab-4a28-8f7d-2526bbc2eaa2] -peer1.org2.example.com | [541 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer0.org2.example.com | [500 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [2e6 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [4b6 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message COMPLETED from shim -peer1.org2.example.com | [542 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [4bb 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [4b7 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [2e7 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [543 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -orderer.example.com | [2e8 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [501 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [4b8 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [4bc 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [05f74ea7-a2ab-4a28-8f7d-2526bbc2eaa2] -orderer.example.com | [2e9 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [544 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [4b9 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer0.org2.example.com | [502 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [4bd 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -orderer.example.com | [2ea 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [4ba 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [503 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5dad023e-1b2e-4254-b2b2-b3391bdeb7b6] -peer1.org2.example.com | [545 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [4be 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer0.org1.example.com | [4bb 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [504 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [546 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [2eb 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [4bf 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer0.org1.example.com | [4bc 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [506 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [547 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Move state message READY -orderer.example.com | [2ec 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org2.example.com | [507 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer1.org1.example.com | [4c0 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e7f46ea]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [4bd 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [26678784-99b4-4c70-af0f-79d1b440b1bb] -peer1.org2.example.com | [548 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [2ed 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201808e8 gate 1513666054580592700 evaluation starts -peer0.org2.example.com | [508 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [4c1 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e7f46ea]Move state message COMPLETED -peer0.org1.example.com | [4be 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [549 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [40bf0a40]Entered state ready -orderer.example.com | [2ee 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [509 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [54a 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 -peer0.org1.example.com | [4bf 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel chaincode id: name:"lscc" -peer1.org1.example.com | [4c2 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e7f46ea]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [505 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [2ef 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org2.example.com | [54b 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]sending state message READY -peer0.org1.example.com | [4c0 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org1.example.com | [4c3 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e7f46ea]send state message COMPLETED -peer0.org2.example.com | [50a 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [4c1 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel version: 1.0.5 -peer1.org2.example.com | [54c 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | [2f0 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [4c4 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e7f46ea]Received message COMPLETED from shim -peer0.org2.example.com | [50b 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [4c2 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89,syscc=true,proposal=0xc421ec1ef0,canname=escc:1.0.5 -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [4c5 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0e7f46ea]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [54d 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [50c 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd,syscc=true,proposal=0xc4202da1e0,canname=escc:1.0.5 -peer1.org1.example.com | [4c6 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0e7f46ea-51d0-4364-8768-313b9769b979]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4c3 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer1.org2.example.com | [54e 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [50d 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer1.org2.example.com | [54f 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [4c7 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0e7f46ea-51d0-4364-8768-313b9769b979 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org2.example.com | [50e 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [4c4 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4c8 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [550 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [50f 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [4c5 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org1.example.com | [4c9 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd, error Chaincode mycc is already instantiated -peer1.org2.example.com | [551 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [510 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [65ef6751]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [4c6 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [4ca 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e2fc483a-f283-4b06-ba74-bbdf2ff1e4fe] -peer0.org2.example.com | [511 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [552 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [4cb 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd returned error Chaincode mycc is already instantiated -peer0.org1.example.com | [4c7 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org2.example.com | [553 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [512 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [4c8 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [4cc 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org2.example.com | [554 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Move state message TRANSACTION -peer0.org2.example.com | [513 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [65ef6751]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4c9 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [4cd 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org2.example.com | [514 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Move state message TRANSACTION -peer1.org1.example.com | [4ce 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421f7c080), Data:(*common.BlockData)(0xc421dd1920), Metadata:(*common.BlockMetadata)(0xc421dd1960)}, doMVCCValidation=true -peer0.org1.example.com | [4ca 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message TRANSACTION -peer1.org2.example.com | [555 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org1.example.com | [4cf 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [515 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [4cb 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org2.example.com | [556 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4d0 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org2.example.com | [516 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4d1 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -peer1.org2.example.com | [557 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]sending state message TRANSACTION -peer0.org1.example.com | [4cc 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [517 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]sending state message TRANSACTION -peer1.org2.example.com | [558 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message GET_STATE from shim -peer1.org1.example.com | ] -orderer.example.com | [2f1 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer0.org1.example.com | [4cd 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message TRANSACTION -peer1.org2.example.com | [559 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [4d2 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to index -peer0.org2.example.com | [519 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [518 12-19 06:48:15.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Received message TRANSACTION from shim -peer1.org1.example.com | [4d3 12-19 06:48:17.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to blockNumTranNum index -peer0.org1.example.com | [4ce 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message TRANSACTION from shim -orderer.example.com | [2f2 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 principal matched by identity 0 -peer1.org2.example.com | [55a 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [40bf0a40]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [51a 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [65ef6751]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [4cf 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4d4 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49882], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org2.example.com | [55b 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [2f3 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -peer0.org2.example.com | [51b 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org1.example.com | [4d0 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bac3811f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [4d5 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -orderer.example.com | 00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -peer0.org2.example.com | [51c 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [65ef6751]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [55c 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40bf0a40] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | [2f4 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -peer0.org2.example.com | [51d 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [4d6 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [4d1 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [55d 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -peer0.org2.example.com | [51e 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [4d2 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [4d7 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [55e 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40bf0a40]Got state. Sending RESPONSE -orderer.example.com | 00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -peer0.org2.example.com | [51f 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [4d3 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [55f 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [40bf0a40]handleGetState serial send RESPONSE -peer1.org1.example.com | [4d8 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [520 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]Move state message COMPLETED -orderer.example.com | 00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -peer0.org1.example.com | [4d4 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Move state message COMPLETED -peer1.org2.example.com | [560 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message COMPLETED from shim -peer0.org2.example.com | [521 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [65ef6751]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [4d9 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org1.example.com | [4d5 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -peer1.org2.example.com | [561 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [522 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [4da 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org1.example.com | [4d6 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]send state message COMPLETED -orderer.example.com | [2f5 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [523 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [562 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [4db 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer0.org1.example.com | [4d7 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message COMPLETED from shim -peer0.org2.example.com | [524 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -orderer.example.com | [2f6 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201808e8 gate 1513666054580592700 evaluation succeeds -peer1.org1.example.com | [4dc 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [4d8 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [563 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 -orderer.example.com | [2f7 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [525 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [65ef6751]send state message COMPLETED -peer1.org1.example.com | [4dd 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer0.org1.example.com | [4d9 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [564 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [2f8 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [526 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -orderer.example.com | [2f9 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [4de 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org1.example.com | [4da 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer0.org1.example.com | [4db 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [4df 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | [2fa 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [565 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [4e0 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [4dc 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [2fb 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [566 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [527 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [4dd 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org1.example.com | [4e1 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [567 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5750deca-2f9e-427b-a80d-a48178293578] -orderer.example.com | [2fc 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [528 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [568 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [4de 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [26678784-99b4-4c70-af0f-79d1b440b1bb] -orderer.example.com | [2fd 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [4e2 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [529 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [4df 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [2fe 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [569 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [52a 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [4e3 12-19 06:48:17.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [4e0 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org2.example.com | [52b 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [2ff 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [4e4 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [56a 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 channel id: businesschannel chaincode id: name:"mycc" -peer0.org1.example.com | [4e2 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [4e3 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [52c 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [65ef6751]Received message COMPLETED from shim -peer1.org2.example.com | [56b 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | [300 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [4e4 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [4e5 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422613380 -peer0.org2.example.com | [52d 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [301 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [56c 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 channel id: businesschannel version: 1.0.5 -peer1.org1.example.com | [4e6 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [4e5 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217f5560 -orderer.example.com | [302 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [52e 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [56d 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264,syscc=true,proposal=0xc422487b80,canname=escc:1.0.5 -peer0.org1.example.com | [4e6 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -orderer.example.com | [303 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [4e7 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [56e 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer0.org2.example.com | [52f 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer0.org1.example.com | [4e7 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [304 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [530 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [4e8 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org2.example.com | [56f 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [4e8 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [531 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [305 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [4e9 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [570 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer0.org1.example.com | [4e9 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org2.example.com | [532 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [306 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [4ea 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4ea 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [571 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [572 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [4eb 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c2bb80, header 0xc4226133b0 -peer0.org2.example.com | [533 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5dad023e-1b2e-4254-b2b2-b3391bdeb7b6] -peer0.org1.example.com | [4eb 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [307 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [4ec 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org2.example.com | [573 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [4ec 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421984000, header channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -peer0.org2.example.com | [534 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [4ed 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a -orderer.example.com | [308 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [574 12-19 06:48:31.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40bf0a40]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4ed 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [4ee 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a] -orderer.example.com | [309 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [575 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Move state message TRANSACTION -peer0.org2.example.com | [535 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer0.org1.example.com | [4ee 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [4ef 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [576 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [30a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [536 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org1.example.com | [4f0 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d1932936-9315-4f2f-829b-789231945406] -peer0.org1.example.com | [4ef 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [577 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [537 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [4f0 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [4f1 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a channel id: businesschannel -orderer.example.com | [30b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [578 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]sending state message TRANSACTION -peer0.org2.example.com | [538 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [4f1 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -peer1.org1.example.com | [4f2 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a,syscc=true,proposal=0xc421c2bb80,canname=lscc:1.0.5 -peer1.org2.example.com | [579 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Received message TRANSACTION from shim -peer0.org1.example.com | [4f2 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | [30c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [539 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [4f3 12-19 06:48:32.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [57a 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [30d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [4f4 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [4f3 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [53a 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42213eba0 -peer1.org2.example.com | [57b 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40bf0a40]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [30e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [4f4 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c2b8a3d3-6657-4d59-b797-ca5a34ac10ba] -peer1.org1.example.com | [4f5 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [57c 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [30f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [53b 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer0.org1.example.com | [4f5 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=5fa2328d-fc01-4660-884a-b471ebc98bdf,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer1.org1.example.com | [4f6 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [53c 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [310 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [57d 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [4f6 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 chaindID businesschannel -peer1.org1.example.com | [4f7 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [311 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [53d 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [57e 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [4f8 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [312 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [4f7 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org2.example.com | [57f 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]Move state message COMPLETED -peer0.org2.example.com | [53e 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer1.org1.example.com | [4f9 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4f8 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [580 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40bf0a40]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [313 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [4fa 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Move state message TRANSACTION -peer0.org2.example.com | [53f 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [581 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40bf0a40]send state message COMPLETED -peer0.org1.example.com | [4f9 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -orderer.example.com | [314 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [4fb 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [540 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [582 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40bf0a40]Received message COMPLETED from shim -peer0.org2.example.com | [541 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421440000, header channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer1.org1.example.com | [4fc 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [315 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [4fa 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5fa2328d]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [583 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a40]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4fd 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]sending state message TRANSACTION -peer0.org1.example.com | [4fb 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [542 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [584 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264]HandleMessage- COMPLETED. Notify -orderer.example.com | [316 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [4fc 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5fa2328d]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [543 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [317 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [4fd 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa2328d]Move state message TRANSACTION -peer1.org1.example.com | [4fe 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Received message TRANSACTION from shim -peer1.org2.example.com | [585 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:40bf0a4040ad920cddfd7bb2f22bc1b345d59d95b8bd2226275ef7e9ccd24264 -orderer.example.com | [318 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [4fe 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa2328d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [319 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer0.org2.example.com | [544 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [31a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer1.org1.example.com | [4ff 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [586 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4ff 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [545 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | [31b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org1.example.com | [500 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa2328d]sending state message TRANSACTION -peer1.org2.example.com | [587 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [500 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fd8443d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [546 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] -orderer.example.com | [31c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org1.example.com | [501 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]Received message TRANSACTION from shim -peer1.org2.example.com | [588 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [547 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | [31d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [502 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fa2328d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [501 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [fd8443d3]Sending GET_STATE -orderer.example.com | [31e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [503 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5fa2328d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [548 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [589 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5750deca-2f9e-427b-a80d-a48178293578] -peer1.org1.example.com | [502 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message GET_STATE from shim -orderer.example.com | [31f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [504 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [549 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e8b35d48-c06d-40aa-a561-94c4b84972ce] -peer1.org2.example.com | [58a 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [320 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [505 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [54a 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=7eeab97e-bcc8-4418-8b24-7d174bce5a29,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer1.org2.example.com | [58b 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [503 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [321 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [4e1 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org2.example.com | [54b 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd chaindID businesschannel -orderer.example.com | [322 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [506 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [58c 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org1.example.com | [504 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [fd8443d3]Received GET_STATE, invoking get state from ledger -orderer.example.com | [323 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer0.org1.example.com | [507 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [505 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [54c 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -orderer.example.com | [324 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -peer0.org1.example.com | [508 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [58d 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | [325 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer0.org1.example.com | [509 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [506 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [fd8443d3] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [50a 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d946c36f-1716-411d-85ef-5cd1a280d806] -peer0.org2.example.com | [54d 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [326 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [507 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [50b 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [58e 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer0.org2.example.com | [54e 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -orderer.example.com | [327 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [508 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [fd8443d3]Got state. Sending RESPONSE -peer0.org1.example.com | [50c 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [d946c36f-1716-411d-85ef-5cd1a280d806] -peer1.org2.example.com | [58f 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [509 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [fd8443d3]handleGetState serial send RESPONSE -orderer.example.com | [328 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [50d 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org1.example.com | [50a 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Received message RESPONSE from shim -peer0.org1.example.com | [50e 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer1.org2.example.com | [590 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -orderer.example.com | [329 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [50f 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [54f 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7eeab97e]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [50b 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [510 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [591 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer1.org1.example.com | [50c 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [fd8443d3]before send -orderer.example.com | [32a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [511 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]Move state message COMPLETED -peer1.org1.example.com | [50d 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [fd8443d3]after send -peer1.org2.example.com | [592 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [512 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fa2328d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [50e 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [fd8443d3]GetState received payload RESPONSE -peer0.org2.example.com | [550 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [32b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [513 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]send state message COMPLETED -peer1.org2.example.com | [593 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [50f 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [551 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7eeab97e]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [514 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa2328d]Received message COMPLETED from shim -peer1.org1.example.com | [510 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [fd8443d3]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [515 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa2328d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [32c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org2.example.com | [552 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7eeab97e]Move state message TRANSACTION -peer1.org2.example.com | [594 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [511 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Move state message COMPLETED -peer0.org1.example.com | [516 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa2328d-fc01-4660-884a-b471ebc98bdf]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [553 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7eeab97e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [32d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer1.org1.example.com | [512 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [513 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]send state message COMPLETED -peer0.org2.example.com | [554 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [514 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message COMPLETED from shim -peer0.org1.example.com | [517 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5fa2328d-fc01-4660-884a-b471ebc98bdf -peer1.org2.example.com | [595 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [515 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [32e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org2.example.com | [555 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7eeab97e]sending state message TRANSACTION -peer1.org2.example.com | [596 12-19 06:48:31.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [516 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [518 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [517 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a -peer1.org2.example.com | [597 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | [32f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [556 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7eeab97e]Received message TRANSACTION from shim -peer1.org1.example.com | [518 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [519 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c2b8a3d3-6657-4d59-b797-ca5a34ac10ba] -orderer.example.com | [330 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [598 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [519 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [51a 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [557 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7eeab97e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [51a 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a channel id: businesschannel version: 1.0 -orderer.example.com | [331 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [599 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [51b 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a,syscc=false,proposal=0xc421c2bb80,canname=mycc:1.0 -peer0.org1.example.com | [51b 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [51c 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a,syscc=true,proposal=0xc421c2bb80,canname=lscc:1.0.5 -orderer.example.com | [332 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [558 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7eeab97e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [51d 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [59a 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420170000 -peer0.org2.example.com | [559 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [51c 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215e9640), Data:(*common.BlockData)(0xc4218a4380), Metadata:(*common.BlockMetadata)(0xc4218a43c0)}, doMVCCValidation=true -peer1.org1.example.com | [51e 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [333 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [55a 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [51f 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [59b 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer0.org2.example.com | [55b 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [51d 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | [334 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [520 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [59c 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [55c 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [51e 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [521 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [59d 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [55d 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | [335 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer1.org1.example.com | [522 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [55e 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [51f 12-19 06:48:01.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] marked as valid by state validator -peer0.org2.example.com | [55f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [401b4672-907d-43ac-9dab-440c65e9f07d] -peer1.org2.example.com | [59e 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org1.example.com | [523 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [336 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org2.example.com | [560 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [59f 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [337 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer1.org1.example.com | [524 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Move state message TRANSACTION -peer0.org1.example.com | [520 12-19 06:48:01.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -peer0.org2.example.com | [561 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [401b4672-907d-43ac-9dab-440c65e9f07d] -peer1.org2.example.com | [5a0 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [525 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [562 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [563 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer1.org2.example.com | [5a1 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42226c000, header channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer1.org2.example.com | [5a2 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [564 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -orderer.example.com | [338 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 -peer1.org2.example.com | [5a3 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [526 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [565 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7eeab97e]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [5a4 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [339 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [527 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]sending state message TRANSACTION -peer0.org2.example.com | [566 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7eeab97e]Move state message COMPLETED -peer0.org1.example.com | ] -peer1.org2.example.com | [5a5 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [567 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7eeab97e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [33a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [521 12-19 06:48:01.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to index -peer1.org2.example.com | [5a6 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -peer1.org1.example.com | [528 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Received message TRANSACTION from shim -peer0.org2.example.com | [568 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7eeab97e]send state message COMPLETED -peer0.org1.example.com | [522 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx number:[0] ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to blockNumTranNum index -orderer.example.com | [33b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [569 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7eeab97e]Received message COMPLETED from shim -peer1.org2.example.com | [5a7 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [529 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [56a 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7eeab97e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [523 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org2.example.com | [5a8 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b2a3e873-8c36-4bc5-8694-4827c811c262] -peer0.org2.example.com | [56b 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7eeab97e-bcc8-4418-8b24-7d174bce5a29]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [52a 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fd8443d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5a9 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [56c 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7eeab97e-bcc8-4418-8b24-7d174bce5a29 -peer0.org1.example.com | [524 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org2.example.com | [5aa 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [b2a3e873-8c36-4bc5-8694-4827c811c262] +peer1.org1.example.com | [3f5 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220bde60 +peer0.org2.example.com | [4c4 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [44c 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [28a 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [3f6 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [4c5 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [44d 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [3f7 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [44e 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d7327e15-ac84-4661-b300-34cf6a7ea8a7] +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [4c6 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] marked as valid by state validator +peer1.org2.example.com | [44f 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [450 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [d7327e15-ac84-4661-b300-34cf6a7ea8a7] +peer1.org1.example.com | [3f8 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org2.example.com | [4c7 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +peer0.org2.example.com | txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 +peer0.org2.example.com | ] orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [56d 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [52b 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [fd8443d3]Sending GET_STATE -peer0.org1.example.com | [525 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [5ab 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [56e 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd, error Chaincode mycc is already instantiated -peer1.org1.example.com | [52c 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message GET_STATE from shim +peer1.org2.example.com | [451 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org1.example.com | [3f9 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [3fa 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [3fb 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220e3220, header 0xc4220bde90 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [452 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +peer0.org2.example.com | [4c8 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to index +peer0.org2.example.com | [4c9 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx number:[0] ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to blockNumTranNum index +peer0.org2.example.com | [4ca 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44646], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org2.example.com | [453 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [474 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [5ac 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a66aa30f-f39b-4485-b5bb-5a6189c29f73] -peer0.org1.example.com | [526 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [56f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e8b35d48-c06d-40aa-a561-94c4b84972ce] -peer1.org1.example.com | [52d 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [5ad 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=b2c9e971-8956-4624-88ac-d7f7e6d46437,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer0.org1.example.com | [527 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer1.org1.example.com | [52e 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [fd8443d3]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [570 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd returned error Chaincode mycc is already instantiated -peer1.org2.example.com | [5ae 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 chaindID businesschannel -peer0.org1.example.com | [528 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [3fc 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [3fd 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 008dcd784eacd944fe83a17571a9f0c20a629461a28f9cd593b2cc032b492456 +peer1.org1.example.com | [3fe 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 008dcd784eacd944fe83a17571a9f0c20a629461a28f9cd593b2cc032b492456 channel id: +peer0.org2.example.com | [4cb 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer1.org2.example.com | [454 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [990e983f]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [455 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [990e983f]Move state message COMPLETED +peer0.org1.example.com | [475 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock +peer1.org1.example.com | [3ff 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 008dcd784eacd944fe83a17571a9f0c20a629461a28f9cd593b2cc032b492456 channel id: version: 1.0.5 +peer1.org1.example.com | [400 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=008dcd784eacd944fe83a17571a9f0c20a629461a28f9cd593b2cc032b492456,syscc=true,proposal=0xc4220e3220,canname=lscc:1.0.5 +peer1.org1.example.com | [401 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org1.example.com | [402 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [52f 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [fd8443d3] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [529 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [571 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer1.org2.example.com | [5af 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org1.example.com | [530 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [52a 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [572 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [5b0 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer1.org1.example.com | [531 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [fd8443d3]Got state. Sending RESPONSE -peer0.org1.example.com | [52b 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [573 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4216e05c0), Data:(*common.BlockData)(0xc421565180), Metadata:(*common.BlockMetadata)(0xc4215651c0)}, doMVCCValidation=true -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer1.org1.example.com | [532 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [fd8443d3]handleGetState serial send RESPONSE -peer1.org2.example.com | [5b1 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [52c 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org2.example.com | [574 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [5b2 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2c9e971]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer1.org1.example.com | [533 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Received message RESPONSE from shim -peer0.org1.example.com | [52d 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [5b3 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer0.org2.example.com | [575 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer1.org1.example.com | [534 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [52e 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -peer1.org2.example.com | [5b4 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2c9e971]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [576 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -peer1.org1.example.com | [535 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [fd8443d3]before send -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer0.org1.example.com | [52f 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org2.example.com | [5b5 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2c9e971]Move state message TRANSACTION -peer1.org1.example.com | [536 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [fd8443d3]after send -peer0.org1.example.com | [530 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [5b6 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2c9e971]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [531 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [537 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [fd8443d3]Received RESPONSE, communicated (state:ready) -orderer.example.com | [33c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | ] -peer1.org2.example.com | [5b7 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [532 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [538 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [fd8443d3]GetState received payload RESPONSE -peer1.org2.example.com | [5b8 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2c9e971]sending state message TRANSACTION -peer0.org2.example.com | [577 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to index -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [533 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [539 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [5b9 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2c9e971]Received message TRANSACTION from shim -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [53a 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Move state message COMPLETED -peer0.org2.example.com | [578 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to blockNumTranNum index -peer0.org1.example.com | [534 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [5ba 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2c9e971]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org2.example.com | [579 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49882], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org1.example.com | [53b 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [535 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer1.org2.example.com | [5bb 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b2c9e971]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [57a 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer1.org1.example.com | [53c 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]send state message COMPLETED -peer0.org1.example.com | [536 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org2.example.com | [5bc 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [57b 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer1.org1.example.com | [53d 12-19 06:48:32.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [537 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [57c 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org2.example.com | [5bd 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [538 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [57d 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [53e 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message COMPLETED from shim -peer0.org1.example.com | [539 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [5be 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org2.example.com | [57e 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org1.example.com | [53f 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [53a 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422733320 -peer1.org2.example.com | [5bf 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2c9e971]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [57f 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [53b 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer1.org2.example.com | [5c0 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2c9e971]Move state message COMPLETED -peer0.org1.example.com | [53c 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [580 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org1.example.com | [540 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a]HandleMessage- COMPLETED. Notify -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer1.org2.example.com | [5c1 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2c9e971]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [581 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [53d 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org1.example.com | [541 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a -peer0.org2.example.com | [582 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer1.org2.example.com | [5c2 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2c9e971]send state message COMPLETED -peer0.org1.example.com | [53e 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [542 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [583 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer1.org2.example.com | [5c3 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2c9e971]Received message COMPLETED from shim -peer0.org1.example.com | [53f 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [33d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [543 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org2.example.com | [5c4 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2c9e971]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [584 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [540 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [5c5 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2c9e971-8956-4624-88ac-d7f7e6d46437]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [585 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [544 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [586 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [541 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421984000, header channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -peer1.org2.example.com | [5c6 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b2c9e971-8956-4624-88ac-d7f7e6d46437 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [545 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [587 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [5c7 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [542 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer1.org1.example.com | [546 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [588 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [5c8 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a66aa30f-f39b-4485-b5bb-5a6189c29f73] -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [547 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | [543 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [5c9 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [589 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [544 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [548 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [5ca 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [58a 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org1.example.com | [545 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org2.example.com | [5cb 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421c273c0), Data:(*common.BlockData)(0xc42035d440), Metadata:(*common.BlockMetadata)(0xc42035d480)}, doMVCCValidation=true -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer0.org2.example.com | [58b 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [5cc 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [58c 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [546 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [547 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [5cd 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [58d 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer1.org2.example.com | [5ce 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [548 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [58e 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e11530 -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer1.org2.example.com | [5cf 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [549 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b3f03029-c5c7-4b61-9e3e-b1d5747522ce] -peer0.org2.example.com | [58f 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer1.org1.example.com | [549 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [590 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [5d0 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] marked as valid by state validator -peer0.org1.example.com | [54a 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=cd9e5819-ae88-49ea-be38-ed2749b7070d,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | [33e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org1.example.com | [54a 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock -peer1.org2.example.com | [5d1 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -peer0.org2.example.com | [591 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [54b 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd chaindID businesschannel -peer1.org1.example.com | [54b 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 -orderer.example.com | [33f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 -peer0.org1.example.com | [54c 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org2.example.com | [592 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org2.example.com | ] -orderer.example.com | [340 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [54c 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) -peer0.org1.example.com | [54d 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [593 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [54d 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -orderer.example.com | [341 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [5d2 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to index -peer0.org1.example.com | [54e 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org1.example.com | [54e 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -peer0.org2.example.com | [594 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [5d3 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx number:[0] ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to blockNumTranNum index -orderer.example.com | [342 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [54f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd9e5819]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [595 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422202800, header channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer1.org2.example.com | [5d4 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | [343 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [54f 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 -peer0.org2.example.com | [596 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [5d5 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [550 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [550 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [5d6 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [597 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [551 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd9e5819]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [5d7 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [598 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org1.example.com | [551 12-19 06:48:32.21 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -peer1.org2.example.com | [5d8 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [552 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd9e5819]Move state message TRANSACTION -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [552 12-19 06:48:32.22 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 | [5d9 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [553 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd9e5819]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [599 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [553 12-19 06:48:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [5da 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [554 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org2.example.com | [59a 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -peer1.org2.example.com | [5db 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [5dc 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [555 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd9e5819]sending state message TRANSACTION -peer1.org2.example.com | [5dd 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [59b 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer1.org2.example.com | [5de 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer0.org1.example.com | [556 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]Received message TRANSACTION from shim -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org2.example.com | [59c 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6259ecda-a319-4e88-a3c7-2b93e401803d] -peer0.org1.example.com | [557 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd9e5819]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [558 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd9e5819]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5df 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer0.org1.example.com | [559 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [59d 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | org.hyperledger.fabric.version="1.0.5" \ -peer0.org1.example.com | [55a 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer1.org2.example.com | [5e0 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | [59e 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6259ecda-a319-4e88-a3c7-2b93e401803d] -orderer.example.com | IEhjT+WlcQ== -peer0.org1.example.com | [55b 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [5e1 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 -peer0.org2.example.com | [59f 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [344 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [55c 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [5e2 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [5a0 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5305470d-84b6-45ac-b2f1-45173121bce2] -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [55d 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [5e3 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [5a1 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=5cebae04-967b-41ff-82a5-5a436f440755,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [5e4 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [55e 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [5a2 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 chaindID businesschannel -peer1.org1.example.com | [554 12-19 06:48:32.22 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 -peer1.org2.example.com | [5e5 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [5a3 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org1.example.com | [55f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [09f49735-6eca-4317-b198-e6b7798b7b5b] -peer1.org2.example.com | [5e6 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422622810 -peer1.org1.example.com | [555 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [560 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [5e7 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [556 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [5a4 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [5e8 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [561 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [09f49735-6eca-4317-b198-e6b7798b7b5b] -peer1.org1.example.com | [557 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [5a5 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [5e9 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [558 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222dc060 -peer0.org1.example.com | [562 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [5a6 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5cebae04]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5ea 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org1.example.com | [559 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer0.org1.example.com | [563 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -peer0.org2.example.com | [5a7 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [5eb 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [55a 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org2.example.com | [5ec 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fe1e00, header 0xc422622840 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org2.example.com | [5a8 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5cebae04]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [564 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer1.org1.example.com | [55b 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [5ed 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [565 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5a9 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5cebae04]Move state message TRANSACTION -peer1.org2.example.com | [5ee 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 -peer1.org1.example.com | [55c 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [566 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]Move state message COMPLETED -peer1.org1.example.com | [55d 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [5aa 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5cebae04]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5ef 12-19 06:48:48.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555] -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [567 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd9e5819]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [55e 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [5ab 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5f0 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [568 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]send state message COMPLETED -orderer.example.com | [345 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [5ac 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5cebae04]sending state message TRANSACTION -peer1.org1.example.com | [55f 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ddb000, header channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer1.org2.example.com | [5f1 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e770995b-d5d3-4d2a-9b9b-ae321fa9bfc9] -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [569 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd9e5819]Received message COMPLETED from shim -peer0.org2.example.com | [5ad 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cebae04]Received message TRANSACTION from shim -peer1.org1.example.com | [560 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [5f2 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 channel id: businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [56a 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd9e5819]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [5ae 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5cebae04]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [5f3 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555,syscc=true,proposal=0xc421fe1e00,canname=lscc:1.0.5 -peer1.org1.example.com | [561 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [56b 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd9e5819-ae88-49ea-be38-ed2749b7070d]HandleMessage- COMPLETED. Notify -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [5af 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5cebae04]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5f4 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [56c 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd9e5819-ae88-49ea-be38-ed2749b7070d -peer1.org1.example.com | [562 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org2.example.com | [5b0 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [5f5 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [56d 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [563 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [5f6 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org2.example.com | [5b1 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [564 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -peer0.org1.example.com | [56e 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd, error Chaincode mycc is already instantiated -peer0.org2.example.com | [5b2 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [5f7 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a8f795e]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [5b3 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cebae04]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [565 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [56f 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b3f03029-c5c7-4b61-9e3e-b1d5747522ce] -peer1.org2.example.com | [5f8 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5b4 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cebae04]Move state message COMPLETED -peer1.org1.example.com | [566 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [74a0ff0b-e756-4906-b629-80ffbf82a7e0] -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org2.example.com | [5b5 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5cebae04]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [5b6 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cebae04]send state message COMPLETED -peer1.org2.example.com | [5f9 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [567 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [570 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd returned error Chaincode mycc is already instantiated -peer1.org2.example.com | [5fa 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a8f795e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5b7 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5cebae04]Received message COMPLETED from shim -peer0.org1.example.com | [571 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [568 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [74a0ff0b-e756-4906-b629-80ffbf82a7e0] -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org2.example.com | [5fb 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Move state message TRANSACTION -peer0.org2.example.com | [5b8 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5cebae04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [572 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [5fc 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5fd 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [569 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [5fe 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]sending state message TRANSACTION -peer0.org1.example.com | [573 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4226f4c00), Data:(*common.BlockData)(0xc421a037a0), Metadata:(*common.BlockMetadata)(0xc421a037e0)}, doMVCCValidation=true -peer0.org2.example.com | [5b9 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5cebae04-967b-41ff-82a5-5a436f440755]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5ff 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Received message TRANSACTION from shim -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org1.example.com | [56a 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9ca1b4d0-9dc7-4b38-b3f2-e18b28471f25] -peer0.org2.example.com | [5ba 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5cebae04-967b-41ff-82a5-5a436f440755 -peer1.org2.example.com | [600 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a8f795e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [574 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer1.org2.example.com | [601 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7a8f795e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [56b 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=3ce432eb-3435-4750-b0e5-cff4fe6db7e9,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org2.example.com | [5bb 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [602 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7a8f795e]Sending GET_STATE -peer0.org1.example.com | [575 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -peer1.org2.example.com | [603 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Received message GET_STATE from shim -peer1.org1.example.com | [56c 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 chaindID businesschannel -peer0.org1.example.com | [576 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -peer0.org2.example.com | [5bc 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5305470d-84b6-45ac-b2f1-45173121bce2] -peer1.org2.example.com | [604 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 -peer1.org2.example.com | [605 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a8f795e]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [56d 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org2.example.com | [5bd 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | [346 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | ] -peer1.org2.example.com | [606 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [56e 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [5be 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [577 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to index -peer1.org2.example.com | [607 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a8f795e] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [347 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [578 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to blockNumTranNum index -peer0.org2.example.com | [5bf 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4216e0540), Data:(*common.BlockData)(0xc4222e0340), Metadata:(*common.BlockMetadata)(0xc4222e0380)}, doMVCCValidation=true -peer1.org1.example.com | [56f 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [608 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [579 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49882], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | [348 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [570 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3ce432eb]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [609 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a8f795e]Got state. Sending RESPONSE -peer0.org2.example.com | [5c0 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [57a 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer1.org2.example.com | [60a 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a8f795e]handleGetState serial send RESPONSE -orderer.example.com | [349 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [57b 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [571 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5c1 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [60b 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Received message RESPONSE from shim -peer0.org1.example.com | [57c 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [572 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3ce432eb]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [34a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org2.example.com | [60c 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a8f795e]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [57d 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [5c2 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org1.example.com | [573 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ce432eb]Move state message TRANSACTION -peer1.org2.example.com | [60d 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7a8f795e]before send -peer0.org1.example.com | [57e 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -orderer.example.com | [34b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [60e 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7a8f795e]after send -peer0.org1.example.com | [57f 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer1.org1.example.com | [574 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ce432eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5c3 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [60f 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7a8f795e]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [580 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [610 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7a8f795e]GetState received payload RESPONSE -peer0.org2.example.com | [5c4 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] marked as valid by state validator -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [581 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [611 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [575 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5c5 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -peer0.org1.example.com | [582 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -peer1.org2.example.com | [612 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Move state message COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [583 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer1.org2.example.com | [613 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a8f795e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 -peer0.org1.example.com | [584 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [576 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ce432eb]sending state message TRANSACTION -peer1.org2.example.com | [614 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]send state message COMPLETED -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [585 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [615 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Received message COMPLETED from shim -peer0.org2.example.com | ] -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [586 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [577 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ce432eb]Received message TRANSACTION from shim -peer1.org2.example.com | [616 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [5c6 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to index -peer0.org1.example.com | [587 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [578 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3ce432eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [617 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [588 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [5c7 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx number:[0] ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to blockNumTranNum index -peer1.org1.example.com | [579 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3ce432eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [589 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [618 12-19 06:48:48.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [58a 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bf4480 -peer0.org2.example.com | [5c8 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [619 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [58b 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [57a 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -peer0.org1.example.com | [58c 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [5c9 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer1.org2.example.com | [61a 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [58d 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org1.example.com | [57b 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [5ca 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [61b 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [58e 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer1.org1.example.com | [57c 12-19 06:48:34.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [5cb 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [61c 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555,syscc=false,proposal=0xc421fe1e00,canname=mycc:1.0 -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -peer0.org1.example.com | [58f 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [57d 12-19 06:48:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ce432eb]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [590 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c9dcc0, header 0xc421bf4600 -peer1.org2.example.com | [61d 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer0.org2.example.com | [5cc 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [57e 12-19 06:48:34.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ce432eb]Move state message COMPLETED -peer0.org1.example.com | [591 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | XXreRTw6jXg= -peer1.org1.example.com | [57f 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3ce432eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [61e 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [5cd 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [592 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer1.org1.example.com | [580 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ce432eb]send state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [34c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [5ce 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [593 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -peer1.org2.example.com | [61f 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [581 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ce432eb]Received message COMPLETED from shim -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [594 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [620 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a8f795e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5cf 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org1.example.com | [582 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ce432eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [621 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [595 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d24e82f2-c81b-41f4-9cd4-6f0410d18986] -peer1.org1.example.com | [583 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ce432eb-3435-4750-b0e5-cff4fe6db7e9]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5d0 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [622 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [596 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel -peer1.org1.example.com | [584 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3ce432eb-3435-4750-b0e5-cff4fe6db7e9 -peer0.org2.example.com | [5d1 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [597 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442,syscc=true,proposal=0xc421c9dcc0,canname=lscc:1.0.5 -peer1.org2.example.com | [623 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a8f795e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5d2 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer0.org2.example.com | [5d3 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org2.example.com | [5d4 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [585 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [624 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Move state message TRANSACTION -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [5d5 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [598 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer1.org2.example.com | [625 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5d6 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [586 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9ca1b4d0-9dc7-4b38-b3f2-e18b28471f25] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [5d7 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [626 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [599 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [587 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [5d8 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org1.example.com | [588 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [5d9 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [627 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]sending state message TRANSACTION -peer1.org1.example.com | [589 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4222c0980), Data:(*common.BlockData)(0xc42206f3e0), Metadata:(*common.BlockMetadata)(0xc42206f420)}, doMVCCValidation=true -peer0.org1.example.com | [59a 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org2.example.com | [5da 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225f3650 -peer1.org1.example.com | [58a 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [628 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Received message GET_STATE from shim -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org1.example.com | [59b 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5db 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [58b 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [629 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [59c 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5dc 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [58c 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [59d 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [62a 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a8f795e]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [5dd 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer1.org1.example.com | [58d 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [59e 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [58e 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] marked as valid by state validator -peer1.org2.example.com | [62b 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5de 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [59f 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message TRANSACTION -peer1.org1.example.com | [58f 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -peer0.org2.example.com | [5df 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [62c 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a8f795e] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [5a0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 -peer0.org2.example.com | [5e0 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4225ef1d0, header 0xc4225f3680 -peer1.org2.example.com | [62d 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org1.example.com | ] -peer0.org2.example.com | [5e1 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org1.example.com | [590 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to index -orderer.example.com | [34d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [62e 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a8f795e]Got state. Sending RESPONSE -peer0.org1.example.com | [5a1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5e2 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 -peer1.org1.example.com | [591 12-19 06:48:34.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx number:[0] ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to blockNumTranNum index -peer1.org2.example.com | [62f 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a8f795e]handleGetState serial send RESPONSE -peer0.org1.example.com | [5a2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message TRANSACTION -peer0.org2.example.com | [5e3 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1] -peer1.org1.example.com | [592 12-19 06:48:34.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [5e4 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [593 12-19 06:48:34.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer1.org2.example.com | [630 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Received message COMPLETED from shim -peer0.org2.example.com | [5e5 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b5d2dbfe-009b-4b7b-8dcd-0ec128908ade] -peer0.org1.example.com | [5a3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Received message TRANSACTION from shim -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [594 12-19 06:48:34.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [5e6 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 channel id: businesschannel -peer1.org2.example.com | [631 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [595 12-19 06:48:47.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -peer0.org1.example.com | [5a4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5e7 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1,syscc=true,proposal=0xc4225ef1d0,canname=lscc:1.0.5 -peer1.org1.example.com | [596 12-19 06:48:47.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [632 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555]HandleMessage- COMPLETED. Notify -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [5e8 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [5a5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4424bd92]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [597 12-19 06:48:47.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -peer1.org2.example.com | [633 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org2.example.com | [5e9 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [598 12-19 06:48:47.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -peer0.org1.example.com | [5a6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4424bd92]Sending GET_STATE -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [599 12-19 06:48:47.92 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 -peer0.org2.example.com | [5ea 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer1.org2.example.com | [634 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [59a 12-19 06:48:47.92 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) -peer0.org1.example.com | [5a7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message GET_STATE from shim -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [59b 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [5eb 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [659523d5]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [635 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5a8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [59c 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [5ec 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer1.org2.example.com | [636 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [59d 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [5a9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4424bd92]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [5ed 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer1.org2.example.com | [637 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e770995b-d5d3-4d2a-9b9b-ae321fa9bfc9] -peer0.org1.example.com | [5aa 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5ee 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [659523d5]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [59e 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer1.org2.example.com | [638 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [5ab 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer1.org1.example.com | [59f 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org2.example.com | [5ef 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Move state message TRANSACTION -peer1.org2.example.com | [639 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [5ac 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [5a0 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org2.example.com | [5f0 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [63a 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [5ad 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Got state. Sending RESPONSE -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [5a1 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [5f1 12-19 06:48:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [63b 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [5ae 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]handleGetState serial send RESPONSE -peer1.org1.example.com | [5a2 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org2.example.com | [63c 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555,syscc=true,proposal=0xc421fe1e00,canname=escc:1.0.5 -peer0.org2.example.com | [5f2 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]sending state message TRANSACTION -orderer.example.com | [34e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | [5a3 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [5af 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Received message RESPONSE from shim -peer1.org2.example.com | [63d 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer0.org2.example.com | [5f3 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Received message TRANSACTION from shim -peer1.org1.example.com | [5a4 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [34f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [5b0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [63e 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5a5 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [5f4 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [659523d5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [350 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [5b1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [4424bd92]before send -peer1.org1.example.com | [5a6 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Move state message READY -peer0.org2.example.com | [5f5 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [659523d5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [63f 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [351 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [5b2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [4424bd92]after send -peer1.org1.example.com | [5a7 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [640 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a8f795e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5f6 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [659523d5]Sending GET_STATE -orderer.example.com | [352 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [5a8 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fd8443d3]Entered state ready -peer0.org1.example.com | [5b3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [4424bd92]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [641 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5f7 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Received message GET_STATE from shim -peer0.org1.example.com | [5b4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4424bd92]GetState received payload RESPONSE -peer1.org1.example.com | [5a9 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a -orderer.example.com | [353 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [642 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [5b5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5f8 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [354 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [5aa 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]sending state message READY -peer1.org2.example.com | [643 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a8f795e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5f9 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [659523d5]Received GET_STATE, invoking get state from ledger -orderer.example.com | [355 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [5b6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Move state message COMPLETED -peer1.org2.example.com | [644 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Move state message TRANSACTION -orderer.example.com | [356 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [5fb 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [659523d5] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [5ab 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | [357 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [5b7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [645 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [358 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [5ac 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [5fc 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [359 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [5ad 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [646 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5b8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]send state message COMPLETED -peer0.org2.example.com | [5fd 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [659523d5]Got state. Sending RESPONSE -orderer.example.com | [35a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [5ae 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [5fe 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [659523d5]handleGetState serial send RESPONSE -peer1.org2.example.com | [647 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]sending state message TRANSACTION -peer0.org1.example.com | [5b9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message COMPLETED from shim -orderer.example.com | [35b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [5ff 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Received message RESPONSE from shim -peer1.org2.example.com | [648 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Received message TRANSACTION from shim -orderer.example.com | [35c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [600 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [659523d5]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [5ba 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5af 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [35d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [649 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a8f795e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [35e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [601 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [659523d5]before send -peer1.org1.example.com | [5b0 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5bb 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442]HandleMessage- COMPLETED. Notify -orderer.example.com | [35f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [5b1 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [602 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [659523d5]after send -orderer.example.com | [360 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [5bc 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer1.org1.example.com | [5b2 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [64a 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7a8f795e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [361 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [64b 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [362 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [603 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [659523d5]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5bd 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [5b3 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Move state message TRANSACTION -orderer.example.com | [363 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [604 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [659523d5]GetState received payload RESPONSE -peer1.org2.example.com | [64c 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [5be 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | [364 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [64d 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [5b4 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [605 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Transaction completed. Sending COMPLETED -orderer.example.com | [365 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [5bf 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel version: 1.0 -peer1.org2.example.com | [64e 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]Move state message COMPLETED -orderer.example.com | [366 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [5b5 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [606 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Move state message COMPLETED -peer0.org1.example.com | [5c0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442,syscc=false,proposal=0xc421c9dcc0,canname=mycc:1.0 -peer1.org2.example.com | [64f 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a8f795e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [367 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [5b6 12-19 06:48:48.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]sending state message TRANSACTION -peer0.org1.example.com | [5c1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer1.org2.example.com | [650 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a8f795e]send state message COMPLETED -peer0.org2.example.com | [607 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [659523d5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [368 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [5b7 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message GET_STATE from shim -peer0.org1.example.com | [5c2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [369 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [608 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]send state message COMPLETED -peer1.org1.example.com | [5b8 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [651 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a8f795e]Received message COMPLETED from shim -peer0.org1.example.com | [5c3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | [36a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [652 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5b9 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [fd8443d3]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [5c4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5fa 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [36b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [653 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5ba 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [36c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [5c5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [609 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Received message COMPLETED from shim -peer1.org1.example.com | [5bb 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [fd8443d3] getting state for chaincode mycc, key a, channel businesschannel -peer0.org2.example.com | [60a 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [36d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [654 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a8f795e14c118c807fdf414f43b13975ccb593ded977d70ce3694a1745fb555 -peer0.org1.example.com | [5c6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5bc 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | [36e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [655 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [60b 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [5c7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [36f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [656 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [5bd 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [fd8443d3]Got state. Sending RESPONSE -peer0.org2.example.com | [60c 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 -peer0.org1.example.com | [5c8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message TRANSACTION -orderer.example.com | [370 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [5be 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [fd8443d3]handleGetState serial send RESPONSE -peer0.org1.example.com | [5c9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [60d 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [371 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [657 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [5ca 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5bf 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message COMPLETED from shim -orderer.example.com | [372 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [60e 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org2.example.com | [658 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e770995b-d5d3-4d2a-9b9b-ae321fa9bfc9] -peer1.org1.example.com | [5c0 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [5cb 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message TRANSACTION -orderer.example.com | [373 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [659 12-19 06:48:48.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [60f 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 channel id: businesschannel version: 1.0 -peer1.org1.example.com | [5c1 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5c2 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a -orderer.example.com | [374 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [65a 12-19 06:48:48.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [5cc 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message GET_STATE from shim -peer0.org2.example.com | [610 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1,syscc=false,proposal=0xc4225ef1d0,canname=mycc:1.0 -peer1.org1.example.com | [5c3 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [65b 12-19 06:48:48.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422224510 -orderer.example.com | [375 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [5cd 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [611 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer1.org2.example.com | [65c 12-19 06:48:48.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [5c4 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5ce 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4424bd92]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [65d 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [612 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [376 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [5cf 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5c5 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [377 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [613 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [65e 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer0.org1.example.com | [5d0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92] getting state for chaincode mycc, key a, channel businesschannel -peer1.org1.example.com | [5c6 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d1932936-9315-4f2f-829b-789231945406] -orderer.example.com | [378 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [614 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [659523d5]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [65f 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [5d1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org1.example.com | [5c7 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [615 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [379 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [660 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [5d2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Got state. Sending RESPONSE -peer0.org2.example.com | [616 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5c9 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [661 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42267f4a0, header 0xc422224540 -orderer.example.com | [37a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [5d3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]handleGetState serial send RESPONSE -peer0.org2.example.com | [617 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [659523d5]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [5c8 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [5d4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message GET_STATE from shim -peer1.org2.example.com | [662 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | [37b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [5cb 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [618 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Move state message TRANSACTION -peer0.org1.example.com | [5d5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [37c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [663 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -peer0.org2.example.com | [619 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [5cc 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org1.example.com | [5d6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4424bd92]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [664 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] -peer0.org2.example.com | [61a 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [37d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [5ca 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [665 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [5d7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [61b 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]sending state message TRANSACTION -orderer.example.com | [37e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [666 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [25b168a3-e4eb-4577-bf50-a090de4ad8a0] -peer1.org1.example.com | [5cd 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [5d8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92] getting state for chaincode mycc, key b, channel businesschannel -peer0.org2.example.com | [61c 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Received message GET_STATE from shim -orderer.example.com | [37f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [667 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 channel id: businesschannel -peer1.org1.example.com | [5ce 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a,syscc=true,proposal=0xc421c2bb80,canname=escc:1.0.5 -peer0.org1.example.com | [5d9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org2.example.com | [61d 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [380 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [668 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090,syscc=true,proposal=0xc42267f4a0,canname=lscc:1.0.5 -peer1.org1.example.com | [5cf 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer0.org2.example.com | [61e 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [659523d5]Received GET_STATE, invoking get state from ledger -orderer.example.com | [381 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [669 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [5da 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Got state. Sending RESPONSE -peer0.org2.example.com | [61f 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [382 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer1.org1.example.com | [5d0 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [66a 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5db 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]handleGetState serial send RESPONSE -peer0.org2.example.com | [620 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [659523d5] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | [383 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181038 gate 1513666054592200600 evaluation starts -peer0.org1.example.com | [5dc 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message PUT_STATE from shim -peer1.org1.example.com | [5d1 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [384 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [66b 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [5dd 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [621 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | [385 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org1.example.com | [5d2 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [66c 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ebbee3e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [622 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [659523d5]Got state. Sending RESPONSE -peer0.org1.example.com | [5de 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [386 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [623 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [659523d5]handleGetState serial send RESPONSE -peer1.org2.example.com | [66d 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5df 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]state is ready -peer0.org2.example.com | [624 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Received message COMPLETED from shim -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [5d3 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [66e 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [5e0 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [625 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5d4 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [66f 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ebbee3e]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5e1 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [5d5 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fd8443d3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [626 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [670 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Move state message TRANSACTION -peer0.org1.example.com | [5e2 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message RESPONSE -peer1.org1.example.com | [5d6 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Move state message TRANSACTION -peer0.org2.example.com | [627 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [671 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [5d7 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [628 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [5e3 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [5d8 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [672 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [629 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [5d9 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]sending state message TRANSACTION -peer0.org2.example.com | [62a 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [5e4 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [673 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]sending state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org1.example.com | [5da 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Received message TRANSACTION from shim -peer0.org2.example.com | [62b 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b5d2dbfe-009b-4b7b-8dcd-0ec128908ade] -peer0.org1.example.com | [5e5 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message RESPONSE -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer1.org2.example.com | [674 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Received message TRANSACTION from shim -peer1.org1.example.com | [5db 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [62c 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [5e6 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message PUT_STATE from shim -peer1.org1.example.com | [5dc 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fd8443d3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [675 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ebbee3e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer1.org1.example.com | [5de 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [62d 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 channel id: businesschannel chaincode id: name:"mycc" -peer0.org1.example.com | [5e7 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [676 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9ebbee3e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [5dd 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org2.example.com | [62e 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [5e8 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [677 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9ebbee3e]Sending GET_STATE -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer1.org1.example.com | [5df 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [62f 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [5e9 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]state is ready -peer0.org1.example.com | [5ea 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [5e0 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [678 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message GET_STATE from shim -peer0.org2.example.com | [630 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1,syscc=true,proposal=0xc4225ef1d0,canname=escc:1.0.5 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [5eb 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [5e1 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]Move state message COMPLETED -peer0.org2.example.com | [631 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer0.org1.example.com | [5ec 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message RESPONSE -orderer.example.com | [387 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -peer1.org2.example.com | [679 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [5e2 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fd8443d3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [632 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [388 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 principal matched by identity 0 -peer0.org1.example.com | [5ed 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [5e3 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fd8443d3]send state message COMPLETED -peer0.org2.example.com | [633 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer1.org2.example.com | [67a 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9ebbee3e]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [5ee 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [67b 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5e4 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fd8443d3]Received message COMPLETED from shim -orderer.example.com | [389 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -peer1.org2.example.com | [67c 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [634 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [659523d5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5ef 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message RESPONSE -peer1.org2.example.com | [67d 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [5e5 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [635 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -peer0.org1.example.com | [5f0 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message COMPLETED from shim -peer1.org2.example.com | [67e 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]Got state. Sending RESPONSE -peer1.org1.example.com | [5e6 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a]HandleMessage- COMPLETED. Notify -orderer.example.com | [38a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -peer0.org2.example.com | [636 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [67f 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9ebbee3e]handleGetState serial send RESPONSE -peer0.org1.example.com | [5f1 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [637 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [659523d5]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [5e7 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fd8443d3bdfcb2fa2ca7ff76e8ecd7f788de456dc936873c6a46fe641b9a9d9a -orderer.example.com | 00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -peer1.org2.example.com | [680 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Received message RESPONSE from shim -peer0.org1.example.com | [5f2 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [681 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ebbee3e]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [638 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Move state message TRANSACTION -orderer.example.com | 00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -peer1.org1.example.com | [5e9 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [682 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9ebbee3e]before send -orderer.example.com | 00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -peer0.org1.example.com | [5f3 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer0.org2.example.com | [639 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [683 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9ebbee3e]after send -orderer.example.com | 00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -peer1.org1.example.com | [5ea 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [63a 12-19 06:48:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [684 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9ebbee3e]GetState received payload RESPONSE -peer0.org1.example.com | [5f4 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [5eb 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [685 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Transaction completed. Sending COMPLETED -orderer.example.com | [38b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [63b 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]sending state message TRANSACTION -peer0.org1.example.com | [5f5 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [686 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9ebbee3e]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [5ec 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d1932936-9315-4f2f-829b-789231945406] -orderer.example.com | [38c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181038 gate 1513666054592200600 evaluation succeeds -peer0.org1.example.com | [5f6 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [687 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Move state message COMPLETED -peer0.org1.example.com | [5f7 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d24e82f2-c81b-41f4-9cd4-6f0410d18986] -peer1.org1.example.com | [5ed 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [38d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [688 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ebbee3e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [63c 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Received message TRANSACTION from shim -peer0.org1.example.com | [5f8 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [689 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]send state message COMPLETED -peer1.org1.example.com | [5e8 12-19 06:48:48.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -orderer.example.com | [38e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5f9 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel chaincode id: name:"mycc" -peer1.org2.example.com | [68a 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message COMPLETED from shim -peer0.org2.example.com | [63d 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [659523d5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [38f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5ee 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org1.example.com | [5fa 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [68b 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [63e 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [659523d5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [5fb 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel version: 1.0.5 -orderer.example.com | [390 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [5ef 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [68c 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [5fc 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442,syscc=true,proposal=0xc421c9dcc0,canname=escc:1.0.5 -orderer.example.com | [391 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5fd 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer1.org1.example.com | [5f0 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer1.org2.example.com | [68d 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -peer0.org2.example.com | [63f 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [5fe 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [392 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5f1 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org2.example.com | [68e 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5ff 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer0.org2.example.com | [640 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [5f2 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [68f 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [600 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [641 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [690 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 channel id: businesschannel version: 1.0 -orderer.example.com | [393 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [601 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [691 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090,syscc=false,proposal=0xc42267f4a0,canname=mycc:1.0 -peer1.org1.example.com | [5f3 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [642 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]Move state message COMPLETED -peer0.org1.example.com | [602 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [692 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer0.org2.example.com | [643 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [659523d5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [394 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [603 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [693 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [644 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [659523d5]send state message COMPLETED -orderer.example.com | [395 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5f4 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [604 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message TRANSACTION -peer1.org2.example.com | [694 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org1.example.com | [5f5 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [695 12-19 06:48:48.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ebbee3e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [645 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [659523d5]Received message COMPLETED from shim -peer0.org1.example.com | [605 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [5f6 12-19 06:48:48.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [696 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [396 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [646 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [606 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [697 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [397 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [647 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5f7 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [607 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message TRANSACTION -orderer.example.com | [398 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [698 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ebbee3e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [648 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:659523d5756b4dd73c0c9fe3f92d021160e5bd10e8a56beb586612d5256dbde1 -peer0.org1.example.com | [608 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Received message TRANSACTION from shim -orderer.example.com | [399 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [699 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Move state message TRANSACTION -peer0.org2.example.com | [649 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [609 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5f8 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [69a 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [39a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [60a 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4424bd92]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [64a 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [69b 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [60b 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [5f9 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [64b 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [39b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [69c 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]sending state message TRANSACTION -peer0.org1.example.com | [60c 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [5fa 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a878c0 -orderer.example.com | [39c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [60d 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [64c 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b5d2dbfe-009b-4b7b-8dcd-0ec128908ade] -peer1.org1.example.com | [5fb 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -peer1.org2.example.com | [69d 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message GET_STATE from shim -orderer.example.com | [39d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5fc 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [69e 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [64d 12-19 06:48:48.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [39e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [60e 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Move state message COMPLETED -peer0.org2.example.com | [64e 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer1.org2.example.com | [69f 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9ebbee3e]Received GET_STATE, invoking get state from ledger -orderer.example.com | [39f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5fd 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [60f 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [6a0 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5fe 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -orderer.example.com | [3a0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [650 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [6a1 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e] getting state for chaincode mycc, key a, channel businesschannel -peer1.org1.example.com | [5ff 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [610 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]send state message COMPLETED -orderer.example.com | [3a1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [651 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [6a2 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [611 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message COMPLETED from shim -peer1.org1.example.com | [600 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [652 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [612 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [3a2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [6a3 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]Got state. Sending RESPONSE -peer1.org1.example.com | [601 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421dda000, header channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -peer0.org1.example.com | [613 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6a4 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9ebbee3e]handleGetState serial send RESPONSE -orderer.example.com | [3a3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [653 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4252c75c0 -peer1.org1.example.com | [602 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [614 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -peer1.org2.example.com | [6a5 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message GET_STATE from shim -orderer.example.com | [3a4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [603 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [654 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -orderer.example.com | [3a5 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [604 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [655 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [3a6 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [6a6 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [605 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [656 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [3a7 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [615 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [606 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] -peer0.org2.example.com | [64f 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | [3a8 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer1.org1.example.com | [607 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [6a7 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9ebbee3e]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [616 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [657 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -orderer.example.com | [3a9 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [608 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [e97fc284-7902-42c7-8591-3006033ea4c9] -peer1.org2.example.com | [6a8 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [617 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [658 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [3aa 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [609 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [6a9 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e] getting state for chaincode mycc, key b, channel businesschannel -peer0.org1.example.com | [618 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d24e82f2-c81b-41f4-9cd4-6f0410d18986] -peer0.org2.example.com | [659 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3ab 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [60a 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [e97fc284-7902-42c7-8591-3006033ea4c9] -peer0.org2.example.com | [65a 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42157d000, header channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -peer0.org1.example.com | [619 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [3ac 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [60b 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [6aa 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org2.example.com | [65b 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [3ad 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [60c 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [57cdd2e1-de7b-47cc-879d-42c2227121f1] -peer0.org2.example.com | [65c 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [3ae 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [60d 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=cafd0cad-d949-4ce9-9187-82ae4774073b,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org2.example.com | [65d 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [61a 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -orderer.example.com | [3af 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer1.org1.example.com | [60e 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 chaindID businesschannel -peer0.org2.example.com | [65e 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [6ab 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]Got state. Sending RESPONSE -orderer.example.com | [3b0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org1.example.com | [61c 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [60f 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org2.example.com | [65f 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] -peer1.org2.example.com | [6ac 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9ebbee3e]handleGetState serial send RESPONSE -orderer.example.com | [3b1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org1.example.com | [61d 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [610 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [660 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | [3b2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [611 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [61e 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [661 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6591373b-3985-4575-96d2-2f3f3cbc006a] -peer1.org2.example.com | [6ad 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message PUT_STATE from shim -peer1.org1.example.com | [612 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cafd0cad]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3b3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [662 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [613 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [663 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6591373b-3985-4575-96d2-2f3f3cbc006a] -orderer.example.com | [3b4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [6ae 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [61f 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42148cdb0 -peer1.org1.example.com | [614 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cafd0cad]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [664 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [3b5 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [6af 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [615 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cafd0cad]Move state message TRANSACTION -peer0.org1.example.com | [620 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -peer1.org1.example.com | [616 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cafd0cad]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [665 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f5b28cc3-c846-4b7d-9bfb-cd247a7e6f0f] -peer1.org2.example.com | [6b0 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]state is ready -orderer.example.com | [3b6 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | [617 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [666 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=199f97fe-642f-4dfa-a8ad-7be2078faae3,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer1.org2.example.com | [6b1 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [621 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [618 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cafd0cad]sending state message TRANSACTION -orderer.example.com | [3b7 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [667 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 chaindID businesschannel -peer0.org1.example.com | [622 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [6b2 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9ebbee3e]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [619 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cafd0cad]Received message TRANSACTION from shim -orderer.example.com | [3b8 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [668 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer0.org1.example.com | [623 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org1.example.com | [61a 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cafd0cad]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6b3 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Move state message RESPONSE -orderer.example.com | [3b9 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer0.org2.example.com | [669 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [624 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [6b4 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [61b 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cafd0cad]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [66a 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [625 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [61c 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [626 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421efd800, header channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -orderer.example.com | [3ba 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer1.org2.example.com | [6b5 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [66b 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [199f97fe]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [61d 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [3bb 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -peer1.org2.example.com | [6b6 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]sending state message RESPONSE -peer0.org1.example.com | [627 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [66c 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [3bc 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [6b7 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message PUT_STATE from shim -orderer.example.com | [3bd 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [61e 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [66d 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [199f97fe]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [628 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [6b8 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [61f 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cafd0cad]Transaction completed. Sending COMPLETED -orderer.example.com | [3be 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [629 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [6b9 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [66e 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [199f97fe]Move state message TRANSACTION -peer0.org1.example.com | [62a 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | [3bf 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [620 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cafd0cad]Move state message COMPLETED -peer0.org2.example.com | [66f 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [199f97fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6ba 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]state is ready -peer0.org1.example.com | [62b 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -orderer.example.com | [3c0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [670 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [621 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cafd0cad]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [6bb 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9ebbee3e]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [62c 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | [3c1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [671 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [199f97fe]sending state message TRANSACTION -peer1.org2.example.com | [6bc 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9ebbee3e]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [622 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cafd0cad]send state message COMPLETED -peer0.org1.example.com | [62d 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6d604cea-caa0-47c3-8736-438a22101e24] -orderer.example.com | [3c2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [6bd 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Move state message RESPONSE -peer0.org2.example.com | [672 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [199f97fe]Received message TRANSACTION from shim -peer0.org1.example.com | [62e 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [623 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cafd0cad]Received message COMPLETED from shim -peer1.org2.example.com | [6be 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [3c3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org2.example.com | [673 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [199f97fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [62f 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6d604cea-caa0-47c3-8736-438a22101e24] -peer1.org1.example.com | [624 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cafd0cad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [6bf 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3c4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -peer0.org2.example.com | [674 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [199f97fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [625 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cafd0cad-d949-4ce9-9187-82ae4774073b]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6c0 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]sending state message RESPONSE -peer0.org1.example.com | [630 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [675 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [3c5 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [626 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cafd0cad-d949-4ce9-9187-82ae4774073b -peer1.org2.example.com | [6c1 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message COMPLETED from shim -peer0.org1.example.com | [631 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [767a5825-7721-4eb6-aa6d-877b243c70c5] -peer0.org2.example.com | [676 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [627 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [3c6 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [632 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=a8f33e19-4cf2-4ece-a0e0-2f92f87db6ab,syscc=true,proposal=0x0,canname=vscc:1.0.5 -peer0.org2.example.com | [677 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [628 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [57cdd2e1-de7b-47cc-879d-42c2227121f1] -peer1.org2.example.com | [6c2 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [3c7 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [633 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 chaindID businesschannel -peer0.org2.example.com | [678 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [199f97fe]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [629 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [6c3 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [62a 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [634 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -orderer.example.com | [3c8 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [679 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [199f97fe]Move state message COMPLETED -peer1.org1.example.com | [62b 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4223b28c0), Data:(*common.BlockData)(0xc421d34bc0), Metadata:(*common.BlockMetadata)(0xc421d34c00)}, doMVCCValidation=true -peer1.org2.example.com | [6c4 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -orderer.example.com | [3c9 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [635 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [62c 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [6c5 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [67a 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [199f97fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [3ca 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [62d 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [636 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer1.org2.example.com | [6c6 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [67b 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [199f97fe]send state message COMPLETED -peer1.org1.example.com | [62e 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [637 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a8f33e19]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3cb 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer1.org2.example.com | [6c7 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [67c 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [199f97fe]Received message COMPLETED from shim -peer1.org1.example.com | [62f 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [6c8 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [25b168a3-e4eb-4577-bf50-a090de4ad8a0] -peer0.org1.example.com | [638 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [3cc 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org2.example.com | [67d 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [199f97fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [639 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a8f33e19]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [630 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] marked as valid by state validator -peer1.org2.example.com | [6c9 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [3cd 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org2.example.com | [67e 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [199f97fe-642f-4dfa-a8ad-7be2078faae3]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [63a 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8f33e19]Move state message TRANSACTION -peer1.org2.example.com | [6ca 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | [3ce 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [631 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -peer0.org2.example.com | [67f 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:199f97fe-642f-4dfa-a8ad-7be2078faae3 -peer0.org1.example.com | [63b 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8f33e19]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6cb 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org1.example.com | txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 -orderer.example.com | [3cf 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [680 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [63c 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [63d 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8f33e19]sending state message TRANSACTION -peer1.org1.example.com | ] -peer0.org2.example.com | [681 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f5b28cc3-c846-4b7d-9bfb-cd247a7e6f0f] -peer1.org2.example.com | [6cc 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 channel id: businesschannel version: 1.0.5 -orderer.example.com | [3d0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [63e 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]Received message TRANSACTION from shim -peer1.org1.example.com | [632 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to index -peer0.org2.example.com | [682 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [6cd 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090,syscc=true,proposal=0xc42267f4a0,canname=escc:1.0.5 -peer0.org1.example.com | [63f 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8f33e19]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [633 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx number:[0] ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to blockNumTranNum index -orderer.example.com | [3d1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [683 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [6ce 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer1.org1.example.com | [634 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59221], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [640 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a8f33e19]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [6cf 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [684 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42248d880), Data:(*common.BlockData)(0xc4222bb3c0), Metadata:(*common.BlockMetadata)(0xc4222bb400)}, doMVCCValidation=true -peer1.org1.example.com | [635 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer0.org1.example.com | [641 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [6d0 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [685 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [636 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [642 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [686 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [6d1 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ebbee3e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [687 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [688 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer0.org1.example.com | [643 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [637 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [689 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] marked as valid by state validator -peer1.org2.example.com | [6d2 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [644 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [638 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [68a 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -peer1.org2.example.com | [6d3 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [645 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]Move state message COMPLETED -peer1.org1.example.com | [639 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [6d4 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9ebbee3e]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer0.org1.example.com | [646 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8f33e19]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | ] -peer1.org1.example.com | [63a 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [6d5 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Move state message TRANSACTION -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org1.example.com | [647 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]send state message COMPLETED -peer0.org2.example.com | [68b 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to index -peer1.org1.example.com | [63b 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org2.example.com | [6d6 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org2.example.com | [68c 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx number:[0] ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to blockNumTranNum index -peer1.org1.example.com | [63c 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [648 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8f33e19]Received message COMPLETED from shim -peer1.org2.example.com | [6d7 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [68d 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59221], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org1.example.com | [63d 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer0.org1.example.com | [649 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8f33e19]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [6d8 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]sending state message TRANSACTION -peer1.org1.example.com | [63e 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -peer0.org2.example.com | [68e 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org1.example.com | [64a 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8f33e19-4cf2-4ece-a0e0-2f92f87db6ab]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6d9 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Received message TRANSACTION from shim -peer0.org2.example.com | [68f 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [64b 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a8f33e19-4cf2-4ece-a0e0-2f92f87db6ab -peer1.org1.example.com | [63f 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer1.org2.example.com | [6da 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ebbee3e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [61b 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org2.example.com | [690 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [640 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [6db 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9ebbee3e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [64c 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [641 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [3d2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [691 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [6dc 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [64d 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [767a5825-7721-4eb6-aa6d-877b243c70c5] -peer1.org1.example.com | [642 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [692 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [6dd 12-19 06:48:48.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [64e 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [643 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [693 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [64f 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [6de 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [644 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [694 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org2.example.com | [6df 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]Move state message COMPLETED -peer0.org1.example.com | [650 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422338780), Data:(*common.BlockData)(0xc4218314c0), Metadata:(*common.BlockMetadata)(0xc421831500)}, doMVCCValidation=true -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [651 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [695 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org2.example.com | [6e0 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9ebbee3e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [696 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [6e1 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9ebbee3e]send state message COMPLETED -peer0.org2.example.com | [697 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [652 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer1.org2.example.com | [6e2 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9ebbee3e]Received message COMPLETED from shim -peer0.org2.example.com | [698 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -peer0.org1.example.com | [653 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [6e3 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org2.example.com | [699 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [69a 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [654 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [6e4 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090]HandleMessage- COMPLETED. Notify -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [655 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] marked as valid by state validator -peer0.org2.example.com | [69b 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [6e5 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [656 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -peer0.org2.example.com | [69c 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [6e6 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [6e7 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org2.example.com | [69d 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [6e8 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | ] -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [3d3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [6e9 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [25b168a3-e4eb-4577-bf50-a090de4ad8a0] -peer0.org1.example.com | [657 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to index -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [658 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx number:[0] ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to blockNumTranNum index -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [659 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [65a 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer1.org2.example.com | [6ea 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [65b 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [6eb 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [65c 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer1.org2.example.com | [6ec 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [65d 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [65e 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [6ed 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer1.org2.example.com | [6ee 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421806030 -peer0.org1.example.com | [65f 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [6ef 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer1.org2.example.com | [6f0 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [660 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [661 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [6f1 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org1.example.com | [662 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [6f2 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [663 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -orderer.example.com | [3d4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [6f3 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [664 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -orderer.example.com | [3d5 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [6f4 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3d6 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [665 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [6f5 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422314000, header channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -orderer.example.com | [3d7 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [666 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [6f6 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [3d8 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [667 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | [3d9 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [6f7 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [6f8 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [668 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [6f9 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [6fa 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] -peer0.org1.example.com | [669 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [6fb 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [6fc 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [2170f9f8-3c26-4412-a3c2-089b0621c368] -peer1.org2.example.com | [6fd 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [6fe 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [2170f9f8-3c26-4412-a3c2-089b0621c368] -peer1.org2.example.com | [6ff 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [700 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [325a8416-ea6d-437e-9a94-9d4977077b0e] -peer0.org1.example.com | [66a 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [701 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=9194fa5a-b5bd-4254-ac1e-7a7f34f8df17,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [702 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 chaindID businesschannel -peer0.org1.example.com | [66b 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421643b90 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | [703 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -peer1.org2.example.com | [704 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [705 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -peer0.org1.example.com | [66c 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [706 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9194fa5a]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [707 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [66d 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [708 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9194fa5a]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [709 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9194fa5a]Move state message TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [70a 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9194fa5a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [70b 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [66e 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer1.org2.example.com | [70c 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9194fa5a]sending state message TRANSACTION -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [70d 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9194fa5a]Received message TRANSACTION from shim -peer0.org1.example.com | [66f 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [70e 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9194fa5a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer1.org2.example.com | [70f 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9194fa5a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [670 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer1.org2.example.com | [710 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [671 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220320f0, header 0xc421643bc0 -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer1.org2.example.com | [711 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | IEhjT+WlcQ== -peer1.org2.example.com | [712 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [713 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9194fa5a]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [714 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9194fa5a]Move state message COMPLETED -peer1.org2.example.com | [715 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9194fa5a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [716 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9194fa5a]send state message COMPLETED -peer1.org2.example.com | [717 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9194fa5a]Received message COMPLETED from shim -peer1.org2.example.com | [718 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9194fa5a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [719 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9194fa5a-b5bd-4254-ac1e-7a7f34f8df17]HandleMessage- COMPLETED. Notify -orderer.example.com | [3da 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [672 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org2.example.com | [71a 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9194fa5a-b5bd-4254-ac1e-7a7f34f8df17 -peer0.org1.example.com | [673 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -peer0.org1.example.com | [674 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66] -peer0.org1.example.com | [675 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [676 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e957060b-60c0-44f0-8698-a3f119d31623] -peer0.org1.example.com | [677 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel -peer0.org1.example.com | [678 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66,syscc=true,proposal=0xc4220320f0,canname=lscc:1.0.5 -peer0.org1.example.com | [679 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [67a 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [67b 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [71b 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [67c 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [71c 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [325a8416-ea6d-437e-9a94-9d4977077b0e] -peer0.org1.example.com | [67d 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [71d 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [67e 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [71e 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [67f 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [71f 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005eb80), Data:(*common.BlockData)(0xc42246c0e0), Metadata:(*common.BlockMetadata)(0xc42246c120)}, doMVCCValidation=true -peer1.org2.example.com | [720 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [721 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [722 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [680 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Move state message TRANSACTION -peer1.org2.example.com | [723 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [681 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [724 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] marked as valid by state validator -peer0.org1.example.com | [682 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [725 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -peer0.org1.example.com | [683 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]sending state message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer1.org2.example.com | txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 -peer0.org1.example.com | [684 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Received message TRANSACTION from shim -peer1.org2.example.com | ] -peer0.org1.example.com | [685 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [726 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to index -peer0.org1.example.com | [686 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dab4dbd0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [727 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx number:[0] ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to blockNumTranNum index -peer0.org1.example.com | [687 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dab4dbd0]Sending GET_STATE -peer1.org2.example.com | [728 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59221], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org2.example.com | [729 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [688 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message GET_STATE from shim -peer1.org2.example.com | [72a 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [689 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [72b 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [72c 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [72d 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [72e 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [68a 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [dab4dbd0]Received GET_STATE, invoking get state from ledger -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer1.org2.example.com | [72f 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [68b 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [68c 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer1.org2.example.com | [730 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [68d 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [68e 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0]Got state. Sending RESPONSE -peer1.org2.example.com | [731 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [68f 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [dab4dbd0]handleGetState serial send RESPONSE -peer1.org2.example.com | [732 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [690 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Received message RESPONSE from shim -peer1.org2.example.com | [733 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [691 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [734 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [692 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [dab4dbd0]before send -peer1.org2.example.com | [735 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [3db 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [736 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [737 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [693 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [dab4dbd0]after send -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [738 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [694 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [dab4dbd0]Received RESPONSE, communicated (state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [695 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dab4dbd0]GetState received payload RESPONSE -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [696 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [697 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Move state message COMPLETED -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [698 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [699 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]send state message COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org1.example.com | [69a 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message COMPLETED from shim -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [69b 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [69c 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [69d 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [69e 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [69f 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [6a0 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel version: 1.0 -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [6a1 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66,syscc=false,proposal=0xc4220320f0,canname=mycc:1.0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [6a2 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6a3 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6a4 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | [3dc 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [6a5 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3dd 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [6a6 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [6a7 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [6a8 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [6a9 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Move state message TRANSACTION -orderer.example.com | [3de 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [6aa 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6ab 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6ac 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]sending state message TRANSACTION -orderer.example.com | [3df 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [6ad 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message GET_STATE from shim -peer0.org1.example.com | [6ae 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [3e0 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [6af 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [dab4dbd0]Received GET_STATE, invoking get state from ledger -orderer.example.com | [3e1 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6b0 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [6b1 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [6b2 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [6b3 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0]Got state. Sending RESPONSE -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [6b4 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [dab4dbd0]handleGetState serial send RESPONSE -peer0.org1.example.com | [6b5 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message COMPLETED from shim -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [6b6 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6b7 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66]HandleMessage- COMPLETED. Notify -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [6b8 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer0.org1.example.com | [6b9 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [6ba 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -peer0.org1.example.com | [6bb 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer0.org1.example.com | [6bc 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e957060b-60c0-44f0-8698-a3f119d31623] -orderer.example.com | XXreRTw6jXg= -peer0.org1.example.com | [6bd 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [6be 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6bf 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -orderer.example.com | [3e2 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6c0 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel version: 1.0.5 -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [6c1 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66,syscc=true,proposal=0xc4220320f0,canname=escc:1.0.5 -peer0.org1.example.com | [6c2 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [6c3 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [6c4 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [6c5 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org1.example.com | [6c6 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [6c7 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org1.example.com | [6c8 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [6c9 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Move state message TRANSACTION -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [6ca 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [6cb 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6cc 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]sending state message TRANSACTION -orderer.example.com | [3e3 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6cd 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Received message TRANSACTION from shim -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [6ce 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6cf 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dab4dbd0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [6d0 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [6d1 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [6d2 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Transaction completed. Sending COMPLETED -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org1.example.com | [6d3 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Move state message COMPLETED -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [6d4 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org1.example.com | [6d5 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]send state message COMPLETED -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [6d6 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message COMPLETED from shim -peer0.org1.example.com | [6d7 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [6d8 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66]HandleMessage- COMPLETED. Notify -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6d9 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -peer0.org1.example.com | [6da 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [3e4 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [3e5 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [3e6 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [6db 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [3e7 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3e8 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [6dc 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [3e9 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3ea 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [3eb 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3ec 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [3ed 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3ee 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [6dd 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e957060b-60c0-44f0-8698-a3f119d31623] -orderer.example.com | [3ef 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3f0 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3f1 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [3f2 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [3f3 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [3f4 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [3f5 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3f6 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [6de 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [3f7 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [6df 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [3f8 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [6e0 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420261c80 -peer0.org1.example.com | [6e1 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [3f9 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [6e2 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [3fa 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [6e3 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -orderer.example.com | [3fb 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [6e4 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [3fc 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [6e5 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3fd 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [6e6 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422033450, header 0xc420261cb0 -orderer.example.com | [3fe 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [3ff 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [6e7 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [400 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [6e8 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 -orderer.example.com | [401 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [6e9 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485] -peer0.org1.example.com | [6ea 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [402 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [6eb 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [87fc87c0-366a-4a58-a820-52e2aaa4ae08] -orderer.example.com | [403 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [6ec 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel -orderer.example.com | [404 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -peer0.org1.example.com | [6ed 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel version: 1.0.5 -orderer.example.com | [405 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [406 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [407 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [408 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [6ee 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485,syscc=true,proposal=0xc422033450,canname=lscc:1.0.5 -peer0.org1.example.com | [6ef 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [6f0 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [409 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [6f1 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [6f2 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [6f3 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [6f4 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [40a 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [6f5 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [6f6 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Move state message TRANSACTION -peer0.org1.example.com | [6f7 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6f8 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6f9 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]sending state message TRANSACTION -orderer.example.com | [40b 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [6fa 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Received message TRANSACTION from shim -peer0.org1.example.com | [6fb 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [6fc 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8176048]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6fd 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8176048]Sending GET_STATE -peer0.org1.example.com | [6fe 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Received message GET_STATE from shim -peer0.org1.example.com | [6ff 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [700 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d8176048]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [701 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [702 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8176048] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [40c 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -peer0.org1.example.com | [703 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [40d 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [704 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8176048]Got state. Sending RESPONSE -peer0.org1.example.com | [705 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8176048]handleGetState serial send RESPONSE -orderer.example.com | [40e 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -peer0.org1.example.com | [706 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Received message RESPONSE from shim -peer0.org1.example.com | [707 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [40f 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [708 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8176048]before send -orderer.example.com | [410 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [709 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8176048]after send -peer0.org1.example.com | [70a 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8176048]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [70b 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8176048]GetState received payload RESPONSE -orderer.example.com | [411 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [70c 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Transaction completed. Sending COMPLETED -orderer.example.com | [412 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [70d 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Move state message COMPLETED -orderer.example.com | [413 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [414 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [70e 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [415 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [416 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [70f 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]send state message COMPLETED -orderer.example.com | [417 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [710 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Received message COMPLETED from shim -peer0.org1.example.com | [711 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [418 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer0.org1.example.com | [712 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [713 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 -orderer.example.com | [419 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [714 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [41a 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [715 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [41b 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [716 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [41c 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [717 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [87fc87c0-366a-4a58-a820-52e2aaa4ae08] -peer0.org1.example.com | [718 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [41d 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [719 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [41e 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [71a 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | [41f 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [71b 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel version: 1.0.5 -orderer.example.com | [420 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org1.example.com | [71c 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485,syscc=true,proposal=0xc422033450,canname=escc:1.0.5 -peer0.org1.example.com | [71d 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | [421 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [422 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [71e 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [423 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [71f 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [424 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [720 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [721 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [425 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [722 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [723 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [426 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [427 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [428 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [724 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Move state message TRANSACTION -orderer.example.com | [429 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [725 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [42a 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [726 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [42b 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [727 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]sending state message TRANSACTION -orderer.example.com | [42c 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [728 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Received message TRANSACTION from shim -orderer.example.com | [42d 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -peer0.org1.example.com | [729 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [42e 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [72a 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8176048]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [42f 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -peer0.org1.example.com | [72b 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [430 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [72c 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [431 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [432 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [72d 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Transaction completed. Sending COMPLETED -orderer.example.com | [433 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [434 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [72e 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Move state message COMPLETED -orderer.example.com | [435 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [72f 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [436 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [437 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [730 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]send state message COMPLETED -orderer.example.com | [438 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [731 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Received message COMPLETED from shim -orderer.example.com | [439 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [732 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [43a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [733 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485]HandleMessage- COMPLETED. Notify -orderer.example.com | [43b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [734 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 -orderer.example.com | [43c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [735 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [43d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [736 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [43e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [737 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [43f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [738 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [87fc87c0-366a-4a58-a820-52e2aaa4ae08] -peer0.org1.example.com | [739 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [73a 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [73b 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f3a510 -peer0.org1.example.com | [73c 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [440 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [73d 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [73e 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org1.example.com | [73f 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [740 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [441 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [741 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4221830e0, header 0xc421f3a540 -orderer.example.com | [442 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [742 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [743 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 -peer0.org1.example.com | [744 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090] -peer0.org1.example.com | [745 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [746 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [80d0f625-ec2e-4824-9cfd-89b7cded0832] -peer0.org1.example.com | [747 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel -peer0.org1.example.com | [748 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel version: 1.0.5 -orderer.example.com | [443 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [749 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090,syscc=true,proposal=0xc4221830e0,canname=lscc:1.0.5 -orderer.example.com | [444 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [74a 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [74b 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [74c 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -orderer.example.com | [445 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [74d 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [446 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [447 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [74e 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [448 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [449 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [44a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [74f 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [44b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [44c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [44d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [750 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [44e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [44f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [751 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Move state message TRANSACTION -orderer.example.com | [450 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [451 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [452 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [453 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [454 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [455 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [752 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [456 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [457 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [458 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [459 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [753 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [45a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [754 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]sending state message TRANSACTION -orderer.example.com | [45b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [45c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [755 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Received message TRANSACTION from shim -orderer.example.com | [45d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [756 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [45e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [45f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [460 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [757 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c19a6553]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [461 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [462 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [758 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c19a6553]Sending GET_STATE -orderer.example.com | [463 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [759 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Received message GET_STATE from shim -orderer.example.com | [464 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [75a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [465 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [75b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c19a6553]Received GET_STATE, invoking get state from ledger -orderer.example.com | [466 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [75c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [467 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [75d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c19a6553] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | [468 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [75e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [75f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c19a6553]Got state. Sending RESPONSE -orderer.example.com | [469 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [46a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [760 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c19a6553]handleGetState serial send RESPONSE -peer0.org1.example.com | [761 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Received message RESPONSE from shim -orderer.example.com | [46b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [46c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [762 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [46d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -peer0.org1.example.com | [763 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c19a6553]before send -peer0.org1.example.com | [764 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c19a6553]after send -orderer.example.com | [46e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [46f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [470 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org1.example.com | [765 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c19a6553]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [766 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c19a6553]GetState received payload RESPONSE -orderer.example.com | [471 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [767 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [768 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Move state message COMPLETED -orderer.example.com | [472 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [769 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [76a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]send state message COMPLETED -orderer.example.com | [473 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [474 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [76b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Received message COMPLETED from shim -orderer.example.com | [475 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [76c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [476 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [76d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090]HandleMessage- COMPLETED. Notify -orderer.example.com | [477 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -peer0.org1.example.com | [76e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 -orderer.example.com | [478 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -peer0.org1.example.com | [76f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [770 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [479 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -peer0.org1.example.com | [771 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [47a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [772 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [80d0f625-ec2e-4824-9cfd-89b7cded0832] -orderer.example.com | [47b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [773 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [47c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [774 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [47d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [775 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [776 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel version: 1.0.5 -orderer.example.com | [47e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [47f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [777 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090,syscc=true,proposal=0xc4221830e0,canname=escc:1.0.5 -orderer.example.com | [480 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [481 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [778 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | [482 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [779 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [483 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [77a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [484 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [77b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [485 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [77c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [486 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [77d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [487 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [488 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [77e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [489 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org1.example.com | [77f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Move state message TRANSACTION -orderer.example.com | [48a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [780 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [48b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [48c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [781 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [782 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]sending state message TRANSACTION -orderer.example.com | [48d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [783 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Received message TRANSACTION from shim -orderer.example.com | [48e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [48f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [784 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [785 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c19a6553]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [786 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer0.org1.example.com | [787 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [788 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [789 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Move state message COMPLETED -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [78a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [78b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]send state message COMPLETED -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer0.org1.example.com | [78c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Received message COMPLETED from shim -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org1.example.com | [78d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -peer0.org1.example.com | [78e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090]HandleMessage- COMPLETED. Notify -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer0.org1.example.com | [78f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org1.example.com | [790 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [791 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer0.org1.example.com | [792 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [793 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [80d0f625-ec2e-4824-9cfd-89b7cded0832] -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [794 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [490 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [795 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [796 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42208bb00 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [797 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [798 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [799 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org1.example.com | [79a 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [79b 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [79c 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422118d70, header 0xc42208bb30 -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [79d 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [79e 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b -peer0.org1.example.com | [79f 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b] -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [7a0 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7a1 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [feabe049-5086-45be-97ca-28a6c22ad92d] -orderer.example.com | [491 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [7a2 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7a3 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [7a4 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b,syscc=true,proposal=0xc422118d70,canname=lscc:1.0.5 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [7a5 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [7a6 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [7a7 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [7a8 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7a9 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [7aa 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [7ab 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [7ac 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Move state message TRANSACTION -peer0.org1.example.com | [7ad 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7ae 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [492 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [493 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [7af 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]sending state message TRANSACTION -orderer.example.com | [494 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [7b0 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Received message TRANSACTION from shim -orderer.example.com | [495 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [496 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [497 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7b1 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7b2 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5b0b9e14]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [7b3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5b0b9e14]Sending GET_STATE -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [7b4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Received message GET_STATE from shim -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [7b5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [7b6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [5b0b9e14]Received GET_STATE, invoking get state from ledger -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [498 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [7b7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7b8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5b0b9e14] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7b9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org1.example.com | [7ba 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5b0b9e14]Got state. Sending RESPONSE -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [7bb 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [5b0b9e14]handleGetState serial send RESPONSE -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [7bc 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Received message RESPONSE from shim -peer0.org1.example.com | [7bd 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [7be 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5b0b9e14]before send -peer0.org1.example.com | [7bf 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5b0b9e14]after send -peer0.org1.example.com | [7c0 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [5b0b9e14]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [7c1 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5b0b9e14]GetState received payload RESPONSE -peer0.org1.example.com | [7c2 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Transaction completed. Sending COMPLETED -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [7c3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Move state message COMPLETED -peer0.org1.example.com | [7c4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7c5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]send state message COMPLETED -orderer.example.com | [499 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [7c6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7c7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [49a 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [7c8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b]HandleMessage- COMPLETED. Notify -orderer.example.com | [49b 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [7c9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b -orderer.example.com | [49c 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [7ca 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [49d 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [7cb 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [49e 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [7cc 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [49f 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7cd 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [feabe049-5086-45be-97ca-28a6c22ad92d] -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7ce 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7cf 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7d0 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [7d1 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [7d2 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b,syscc=true,proposal=0xc422118d70,canname=escc:1.0.5 -peer0.org1.example.com | [7d3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [7d4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4a0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7d5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [7d6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7d7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7d8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [7d9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [7da 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Move state message TRANSACTION -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [7db 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [7dc 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7dd 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]sending state message TRANSACTION -orderer.example.com | [4a1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7de 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Received message TRANSACTION from shim -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [7df 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7e0 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5b0b9e14]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7e1 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [7e2 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [7e3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [7e4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Move state message COMPLETED -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7e5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7e6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]send state message COMPLETED -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org1.example.com | [7e7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Received message COMPLETED from shim -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [7e8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [7e9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b]HandleMessage- COMPLETED. Notify -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [7ea 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [7eb 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [7ec 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7ed 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [7ee 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [feabe049-5086-45be-97ca-28a6c22ad92d] -orderer.example.com | [4a2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [7ef 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [4a3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [7f0 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [4a4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [7f1 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220e17a0 -orderer.example.com | [4a5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [7f2 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [4a6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [7f3 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [4a7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [7f4 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org1.example.com | [7f5 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [4a8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [7f6 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [4a9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4aa 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [4ab 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4ac 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [7f7 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220befa0, header 0xc4220e17d0 -orderer.example.com | [4ad 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [7f8 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | [4ae 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [7f9 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 -orderer.example.com | [4af 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [7fa 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507] -orderer.example.com | [4b0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [7fb 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [4b1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4b2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [7fc 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7562ff34-b1cc-454d-aa80-561b58a5984a] -orderer.example.com | [4b3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [7fd 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel -orderer.example.com | [4b4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [7fe 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel version: 1.0.5 -orderer.example.com | [4b5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [7ff 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507,syscc=true,proposal=0xc4220befa0,canname=lscc:1.0.5 -orderer.example.com | [4b6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [800 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -orderer.example.com | [4b7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [801 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [4b8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [802 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [803 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [4b9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [804 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [4ba 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org1.example.com | [805 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [4bb 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [806 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4bc 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [807 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Move state message TRANSACTION -orderer.example.com | [4bd 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [808 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [4be 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [809 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [4bf 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4c0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [80a 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]sending state message TRANSACTION -orderer.example.com | [4c1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [4c2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [80b 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Received message TRANSACTION from shim -orderer.example.com | [4c3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [80c 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [80d 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ff3ffbe4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [4c4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [80e 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Transaction completed. Sending COMPLETED -orderer.example.com | [4c5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -peer0.org1.example.com | [80f 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Move state message COMPLETED -orderer.example.com | [4c6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer0.org1.example.com | [810 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [4c7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [811 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]send state message COMPLETED -orderer.example.com | [4c8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org1.example.com | [812 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Received message COMPLETED from shim -orderer.example.com | [4c9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [813 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [4ca 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [814 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [815 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 -orderer.example.com | [4cb 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [816 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [817 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [818 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [4cc 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [819 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7562ff34-b1cc-454d-aa80-561b58a5984a] -orderer.example.com | [4cd 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [81a 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [81b 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [4ce 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [81c 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [81d 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel version: 1.0.5 -orderer.example.com | [4cf 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [81e 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507,syscc=true,proposal=0xc4220befa0,canname=escc:1.0.5 -orderer.example.com | [4d0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [4d1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4d2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -peer0.org1.example.com | [81f 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | [4d3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [4d4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [820 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [4d5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [821 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [4d6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [4d7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [822 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [4d8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [823 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [4d9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [824 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [825 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4da 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org1.example.com | [826 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Move state message TRANSACTION -orderer.example.com | [4db 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4dc 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -peer0.org1.example.com | [827 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [4dd 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [828 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [4de 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -peer0.org1.example.com | [829 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]sending state message TRANSACTION -orderer.example.com | [4df 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [82a 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Received message TRANSACTION from shim -orderer.example.com | [4e0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [82b 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [4e1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [82c 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ff3ffbe4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [4e2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4e3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [82d 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [4e4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4e5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4e6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [4e7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [4e8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [4e9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [82e 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [4ea 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [4eb 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [4ec 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [4ed 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [4ee 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [4ef 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [4f0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [4f1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [4f2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [4f3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -orderer.example.com | [4f4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [4f5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666054629374200 evaluation starts -peer0.org1.example.com | [82f 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Transaction completed. Sending COMPLETED -orderer.example.com | [4f6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [4f7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [830 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Move state message COMPLETED -orderer.example.com | [4f8 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [831 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [832 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]send state message COMPLETED -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [833 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Received message COMPLETED from shim -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -peer0.org1.example.com | [834 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer0.org1.example.com | [835 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507]HandleMessage- COMPLETED. Notify -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -peer0.org1.example.com | [836 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -peer0.org1.example.com | [837 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -peer0.org1.example.com | [838 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -peer0.org1.example.com | [839 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -peer0.org1.example.com | [83a 12-19 06:48:49.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7562ff34-b1cc-454d-aa80-561b58a5984a] -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [83b 12-19 06:48:49.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [83c 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [4f9 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org1.example.com | [83d 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422106990 -orderer.example.com | [4fb 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [4fa 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found -peer0.org1.example.com | [83e 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [83f 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [840 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -peer0.org1.example.com | [841 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [842 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [4fd 12-19 06:47:34.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [843 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422119540, header 0xc4221069c0 -peer0.org1.example.com | [844 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [845 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e -peer0.org1.example.com | [846 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e] -peer0.org1.example.com | [847 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [4fe 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [848 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [04b5a3c1-2cb6-470a-957e-5b19b2f668f6] -peer0.org1.example.com | [849 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel -peer0.org1.example.com | [84a 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [84b 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e,syscc=true,proposal=0xc422119540,canname=lscc:1.0.5 -orderer.example.com | [4ff 12-19 06:47:34.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [84c 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -peer0.org1.example.com | [84d 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [84e 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -peer0.org1.example.com | [84f 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [850 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [851 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [4fc 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 -peer0.org1.example.com | [852 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [500 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ca c3 7f d6 ab 72 14 85 6c 82 cf 23 f6 09 0e 90 |.....r..l..#....| -peer0.org1.example.com | [853 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Move state message TRANSACTION -orderer.example.com | 00000010 33 5b a2 21 cb 72 91 0b d0 6b d7 3c 16 95 6c 04 |3[.!.r...k.<..l.| -peer0.org1.example.com | [854 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [501 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 06 57 4c 7f 81 cf d0 37 e6 9f 79 f2 |0D. .WL....7..y.| -orderer.example.com | 00000010 a3 60 5a 2a 8c 8c 00 7d ca 40 69 10 ce 25 1d 89 |.`Z*...}.@i..%..| -peer0.org1.example.com | [855 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 00000020 d8 d5 34 e7 02 20 41 83 ae b2 89 0d 1e 2b 31 10 |..4.. A......+1.| -peer0.org1.example.com | [856 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]sending state message TRANSACTION -peer0.org1.example.com | [857 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message TRANSACTION from shim -orderer.example.com | 00000030 38 dc 40 ea 37 a7 f2 34 b9 f1 d5 27 bd 5f e6 a7 |8.@.7..4...'._..| -peer0.org1.example.com | [858 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 00000040 54 c8 d3 c1 65 7c |T...e|| -peer0.org1.example.com | [859 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4db8d2d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [502 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [85a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [f4db8d2d]Sending GET_STATE_BY_RANGE -orderer.example.com | [503 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666054629374200 evaluation succeeds -peer0.org1.example.com | [85b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message GET_STATE_BY_RANGE from shim -orderer.example.com | [504 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc4203c4c00 1 [0xc420180810]})]} -peer0.org1.example.com | [85c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -orderer.example.com | [505 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [85d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -orderer.example.com | [506 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [507 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [85e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -orderer.example.com | [508 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [85f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [509 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...07577269746572731A0641646D696E73 -peer0.org1.example.com | [860 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -orderer.example.com | [50a 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: CCABEC314FE7E03ED4250D36FB58506B29B63E29F31B8BD28DEC0EA1E512068F -peer0.org1.example.com | [861 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -orderer.example.com | [50b 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [862 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -peer0.org1.example.com | [863 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4db8d2d]handleGetStateByRange serial send RESPONSE -orderer.example.com | [50c 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [864 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message RESPONSE from shim -orderer.example.com | [50d 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [865 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [50e 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [866 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]before send -orderer.example.com | [50f 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [867 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]after send -orderer.example.com | [510 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [868 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4db8d2d]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [869 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [f4db8d2d]Received RESPONSE. Successfully got range -orderer.example.com | [511 12-19 06:47:34.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [86a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [f4db8d2d]Sending QUERY_STATE_CLOSE -peer0.org1.example.com | [86b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message QUERY_STATE_CLOSE from shim -orderer.example.com | [512 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -peer0.org1.example.com | [86c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -orderer.example.com | [514 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -peer0.org1.example.com | [86d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -orderer.example.com | [513 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [86e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -orderer.example.com | [515 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [86f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [516 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [870 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -orderer.example.com | [517 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [871 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4db8d2d]handleQueryStateClose serial send RESPONSE -orderer.example.com | [518 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [519 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [872 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message RESPONSE from shim -peer0.org1.example.com | [873 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [51a 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [874 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]before send -orderer.example.com | [51b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [51c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [875 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]after send -orderer.example.com | [51d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [876 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4db8d2d]Received RESPONSE, communicated (state:ready) -orderer.example.com | [51e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [877 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [f4db8d2d]Received RESPONSE. Successfully got range -orderer.example.com | [51f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [878 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Transaction completed. Sending COMPLETED -orderer.example.com | [520 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [879 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Move state message COMPLETED -orderer.example.com | [521 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [522 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [87a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [523 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [87b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]send state message COMPLETED -orderer.example.com | [524 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [87c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message COMPLETED from shim -orderer.example.com | [525 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [87d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [526 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [527 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [87e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e]HandleMessage- COMPLETED. Notify -orderer.example.com | [528 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [87f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e -orderer.example.com | [529 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [880 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [52a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [881 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [52b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [882 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [52c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [883 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [04b5a3c1-2cb6-470a-957e-5b19b2f668f6] -orderer.example.com | [52d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [884 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [52e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [885 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [52f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [886 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [887 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel version: 1.0.5 -orderer.example.com | [530 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [531 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [888 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e,syscc=true,proposal=0xc422119540,canname=escc:1.0.5 -orderer.example.com | [532 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [889 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | [533 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [534 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [88a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [535 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [88b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | [536 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [88c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [537 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [88d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [88e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [538 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [88f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [890 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Move state message TRANSACTION -orderer.example.com | [539 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [891 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [53a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [53b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [892 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [53c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [893 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]sending state message TRANSACTION -orderer.example.com | [53d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [894 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message TRANSACTION from shim -peer0.org1.example.com | [895 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [53e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [896 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4db8d2d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [53f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -peer0.org1.example.com | [897 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [540 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [898 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [541 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [899 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Transaction completed. Sending COMPLETED -orderer.example.com | [542 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [543 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [89a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Move state message COMPLETED -peer0.org1.example.com | [89b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [544 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [545 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [546 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [89c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]send state message COMPLETED -orderer.example.com | [547 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [89d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message COMPLETED from shim -orderer.example.com | [548 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [89e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [549 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [89f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e]HandleMessage- COMPLETED. Notify -orderer.example.com | [54a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [8a0 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e -orderer.example.com | [54b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [54c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [54d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [54e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [54f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [550 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -peer0.org1.example.com | [8a1 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [551 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [552 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [553 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [554 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [8a2 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [555 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [556 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [557 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [558 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -peer0.org1.example.com | [8a3 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [559 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [55a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [55b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -peer0.org1.example.com | [8a4 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [04b5a3c1-2cb6-470a-957e-5b19b2f668f6] -orderer.example.com | [55c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [55d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [8a5 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | [55e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [8a6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [8a7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42218aed0 -orderer.example.com | [55f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [8a8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [560 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [8a9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [561 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [8aa 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -orderer.example.com | [562 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [563 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [8ab 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [564 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [8ac 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [565 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8ad 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421712f00, header 0xc42218af00 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8ae 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8af 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -peer0.org1.example.com | [8b0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb] -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [8b1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [8b2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [54114a2a-ca8c-4b57-9ee3-f6be568d5f82] -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [8b3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel -peer0.org1.example.com | [8b4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel version: 1.0.5 -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -peer0.org1.example.com | [8b5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb,syscc=true,proposal=0xc421712f00,canname=qscc:1.0.5 -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -peer0.org1.example.com | [8b6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8b7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [566 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8b8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8b9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [8ba 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8bb 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8bc 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8bd 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Move state message TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [8be 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [8bf 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org1.example.com | [8c0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]sending state message TRANSACTION -peer0.org1.example.com | [8c1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Received message TRANSACTION from shim -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [8c2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [8c3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b5877d7f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [8c4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8c5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Transaction completed. Sending COMPLETED -orderer.example.com | [567 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8c6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Move state message COMPLETED -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8c7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [8c8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]send state message COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8c9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Received message COMPLETED from shim -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [8ca 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [8cb 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [8cc 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb -peer0.org1.example.com | [8cd 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [8ce 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -peer0.org1.example.com | [8cf 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [8d0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [54114a2a-ca8c-4b57-9ee3-f6be568d5f82] -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -peer0.org1.example.com | [8d1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [8d2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel chaincode id: name:"qscc" -peer0.org1.example.com | [8d3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -peer0.org1.example.com | [8d4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel version: 1.0.5 -peer0.org1.example.com | [8d5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb,syscc=true,proposal=0xc421712f00,canname=escc:1.0.5 -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -peer0.org1.example.com | [8d6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -peer0.org1.example.com | [8d7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -peer0.org1.example.com | [8d8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -peer0.org1.example.com | [8d9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [8da 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | RylILfxW9iIlKYt/mSI= -peer0.org1.example.com | [8db 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [8dc 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [8dd 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Move state message TRANSACTION -peer0.org1.example.com | [8de 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [8df 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8e0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]sending state message TRANSACTION -peer0.org1.example.com | [8e1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Received message TRANSACTION from shim -orderer.example.com | [568 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [8e2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [569 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [56a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [8e3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b5877d7f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [8e4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [56b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [8e5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [56c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [8e6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Transaction completed. Sending COMPLETED -orderer.example.com | [56d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8e7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Move state message COMPLETED -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8e8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [8e9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]send state message COMPLETED -peer0.org1.example.com | [8ea 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Received message COMPLETED from shim -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8eb 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [8ec 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb]HandleMessage- COMPLETED. Notify -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [8ed 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [8ee 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -peer0.org1.example.com | [8ef 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -peer0.org1.example.com | [8f0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -peer0.org1.example.com | [8f1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [54114a2a-ca8c-4b57-9ee3-f6be568d5f82] -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -peer0.org1.example.com | [8f2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8f3 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | [56e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8f4 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228187e0 -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8f5 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8f6 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8f7 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [8f8 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [8f9 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8fa 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4223ac6e0, header 0xc422818810 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [8fb 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org1.example.com | [8fc 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [8fd 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d] -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [8fe 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [8ff 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d97b8f9e-5f01-47cc-88ad-1b7ef436315e] -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [900 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel -peer0.org1.example.com | [901 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel version: 1.0.5 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [902 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d,syscc=true,proposal=0xc4223ac6e0,canname=qscc:1.0.5 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [903 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -orderer.example.com | [56f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [904 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [905 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [906 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -peer0.org1.example.com | [907 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [908 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [909 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -peer0.org1.example.com | [90a 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Move state message TRANSACTION -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [90b 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [90c 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [90d 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]sending state message TRANSACTION -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [90e 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Received message TRANSACTION from shim -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [90f 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [570 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [910 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fa6cfee3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [911 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -orderer.example.com | [571 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [912 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [572 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [913 12-19 06:48:50.05 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=[25671] -orderer.example.com | [573 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [914 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28880], Going to peek [8] bytes -orderer.example.com | [574 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [915 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25671], bytesOffset=[25673]} -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [916 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Transaction completed. Sending COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [917 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Move state message COMPLETED -peer0.org1.example.com | [918 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [919 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]send state message COMPLETED -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [91a 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Received message COMPLETED from shim -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -peer0.org1.example.com | [91b 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -peer0.org1.example.com | [91c 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d]HandleMessage- COMPLETED. Notify -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -peer0.org1.example.com | [91d 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d -peer0.org1.example.com | [91e 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -peer0.org1.example.com | [91f 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -peer0.org1.example.com | [920 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -peer0.org1.example.com | [921 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d97b8f9e-5f01-47cc-88ad-1b7ef436315e] -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -peer0.org1.example.com | [922 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [923 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | [575 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [924 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [925 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel version: 1.0.5 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [926 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d,syscc=true,proposal=0xc4223ac6e0,canname=escc:1.0.5 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [927 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [928 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [929 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [92a 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [92b 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [92c 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [92d 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org1.example.com | [92e 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Move state message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [92f 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [576 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [930 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [931 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]sending state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [932 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Received message TRANSACTION from shim -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -peer0.org1.example.com | [933 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [934 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fa6cfee3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [935 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -peer0.org1.example.com | [936 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -peer0.org1.example.com | [937 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [938 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Move state message COMPLETED -peer0.org1.example.com | [939 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -peer0.org1.example.com | [93a 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]send state message COMPLETED -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -peer0.org1.example.com | [93b 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Received message COMPLETED from shim -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -peer0.org1.example.com | [93c 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -peer0.org1.example.com | [93d 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [93e 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d -peer0.org1.example.com | [93f 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [940 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [577 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [941 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [578 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [579 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [942 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d97b8f9e-5f01-47cc-88ad-1b7ef436315e] -orderer.example.com | [57a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [943 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [944 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | [57b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [945 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer0.org1.example.com | [946 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | [57c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [947 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | [57d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [948 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | [57e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [57f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [949 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4229e2a80 -orderer.example.com | [580 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [94a 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -orderer.example.com | [581 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [94b 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [94c 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [94d 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -peer0.org1.example.com | [94e 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [94f 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [950 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a16000, header channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -peer0.org1.example.com | [951 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [952 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [953 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [954 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [955 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] -orderer.example.com | [582 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [956 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | [583 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [957 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [8d18fa10-3b6f-40b6-a600-a2a196f6ac9d] -peer0.org1.example.com | [958 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [959 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [8d18fa10-3b6f-40b6-a600-a2a196f6ac9d] -peer0.org1.example.com | [95a 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [95b 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [59c57bce-c902-4ac5-96e6-a8182fdd18e6] -peer0.org1.example.com | [95c 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=b5f637b6-e64a-4410-a58f-7615fd305dd6,syscc=true,proposal=0x0,canname=vscc:1.0.5 -orderer.example.com | [584 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [95d 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 chaindID businesschannel -orderer.example.com | [585 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [586 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [95e 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -orderer.example.com | [587 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [588 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [95f 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [589 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [960 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -orderer.example.com | [58a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [58b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [961 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5f637b6]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [58c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [962 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [58d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [963 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5f637b6]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [964 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5f637b6]Move state message TRANSACTION -orderer.example.com | [58e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [58f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [965 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5f637b6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [590 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [966 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [591 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -peer0.org1.example.com | [967 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5f637b6]sending state message TRANSACTION -orderer.example.com | [592 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [968 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]Received message TRANSACTION from shim -peer0.org1.example.com | [969 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5f637b6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [593 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer0.org1.example.com | [96a 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b5f637b6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [594 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [96b 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | [595 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [96c 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | [596 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [96d 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [597 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [96e 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]Transaction completed. Sending COMPLETED -orderer.example.com | [598 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [96f 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]Move state message COMPLETED -orderer.example.com | [599 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [970 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5f637b6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [59a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [59b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [971 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]send state message COMPLETED -peer0.org1.example.com | [972 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5f637b6]Received message COMPLETED from shim -orderer.example.com | [59c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [59d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [59e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [59f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [973 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5f637b6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [5a0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [5a1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [5a2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [5a3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [974 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5f637b6-e64a-4410-a58f-7615fd305dd6]HandleMessage- COMPLETED. Notify -orderer.example.com | [5a4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [5a5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [5a6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [5a7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [5a8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [5a9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [5aa 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [5ab 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer0.org1.example.com | [975 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5f637b6-e64a-4410-a58f-7615fd305dd6 -orderer.example.com | [5ac 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [5ad 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [5ae 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -orderer.example.com | [5af 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -peer0.org1.example.com | [976 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [5b0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [5b1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -orderer.example.com | [5b2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -orderer.example.com | [5b3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -peer0.org1.example.com | [977 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [59c57bce-c902-4ac5-96e6-a8182fdd18e6] -orderer.example.com | [5b4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [5b5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [5b6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [5b7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [5b8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [5b9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [978 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | [5ba 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [979 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [97a 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a4ef40), Data:(*common.BlockData)(0xc4220e2220), Metadata:(*common.BlockMetadata)(0xc4220e2260)}, doMVCCValidation=true -orderer.example.com | [5bb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [97b 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [97c 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | [5bc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [97d 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [97e 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | [5bd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [97f 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] marked as valid by state validator -peer0.org1.example.com | [980 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -orderer.example.com | [5be 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 -peer0.org1.example.com | ] -orderer.example.com | [5bf 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [981 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to index -orderer.example.com | [5c0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [982 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx number:[0] ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to blockNumTranNum index -orderer.example.com | [5c1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [983 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59221], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | [5c2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267a8 gate 1513666054654790700 evaluation starts -peer0.org1.example.com | [984 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -orderer.example.com | [5c3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [985 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [986 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [5c4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [5c5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [987 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [988 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [989 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [98a 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [98b 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [98c 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -peer0.org1.example.com | [98d 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -peer0.org1.example.com | [98e 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -peer0.org1.example.com | [98f 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -peer0.org1.example.com | [990 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -peer0.org1.example.com | [991 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [992 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5c6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [993 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | [5c7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 principal evaluation fails -orderer.example.com | [5c8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267a8 gate 1513666054654790700 evaluation fails -orderer.example.com | [5c9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267b8 gate 1513666054655398600 evaluation starts -orderer.example.com | [5ca 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [5cb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [5cc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5cd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [5ce 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 principal matched by identity 0 -orderer.example.com | [5cf 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -orderer.example.com | 00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -orderer.example.com | [5d0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -orderer.example.com | 00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -orderer.example.com | 00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -orderer.example.com | 00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -orderer.example.com | 00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -orderer.example.com | [5d1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 principal evaluation succeeds for identity 0 -orderer.example.com | [5d2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267b8 gate 1513666054655398600 evaluation succeeds -orderer.example.com | [5d3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5d4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5d5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5d6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5d7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5d8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5d9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5da 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5db 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5dc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5dd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5de 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5df 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5e0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5e1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5e2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [5e3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5e4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5e5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5e6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [5e7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [5e8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [5e9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [5ea 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [5eb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [5ec 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [5ed 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [5ee 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [5ef 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [5f0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [5f1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [5f2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [5f3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [5f4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [5f5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [5f6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [5f7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [5f8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [5f9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [5fa 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5fb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [5fc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [5fd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [5fe 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [5ff 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [600 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [601 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [602 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [603 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [604 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [605 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [606 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [607 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [608 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [609 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [60a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [60b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [60c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [60d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [60e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [60f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [610 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [611 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [612 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [613 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [614 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [615 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [616 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [617 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [618 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [619 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [61a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [61b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [61c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [61d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [61e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [61f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [620 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [621 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [622 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [623 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [624 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [625 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [626 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [627 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [628 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [629 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [62a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [62b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [62c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [62d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [62e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [62f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [630 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [631 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [632 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [633 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [634 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [635 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [636 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [637 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [638 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [639 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [63a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [63b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [63c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [63d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [63e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [63f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [640 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [641 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [642 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [643 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [644 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [645 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [646 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [647 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [648 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [649 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [64a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [64b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [64c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [64d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [64e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [64f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [650 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [651 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [652 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [653 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [654 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [655 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [656 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [657 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [658 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [659 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [65a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [65b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [65c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [65d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [65e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | [65f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261d8 gate 1513666054668332200 evaluation starts -orderer.example.com | [660 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [661 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [662 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [663 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [664 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 principal evaluation fails -orderer.example.com | [665 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261d8 gate 1513666054668332200 evaluation fails -orderer.example.com | [666 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261e8 gate 1513666054669054300 evaluation starts -orderer.example.com | [667 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [668 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [669 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [66a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [66b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 principal matched by identity 0 -orderer.example.com | [66c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -orderer.example.com | 00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -orderer.example.com | [66d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -orderer.example.com | 00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -orderer.example.com | 00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -orderer.example.com | 00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -orderer.example.com | 00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -orderer.example.com | [66e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 principal evaluation succeeds for identity 0 -orderer.example.com | [66f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261e8 gate 1513666054669054300 evaluation succeeds -orderer.example.com | [670 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [671 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [672 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [673 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [674 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [675 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [676 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [677 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [678 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [679 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [67a 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [67b 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [67c 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [67d 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [67e 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [67f 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [680 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [681 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [682 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [683 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [684 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [685 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [686 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [687 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [688 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [689 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [68a 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [68b 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [68c 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [68d 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [68e 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [68f 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [690 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [691 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [692 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [693 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [694 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [695 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [696 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [697 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [698 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [699 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [69a 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [69b 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [69c 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [69d 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [69e 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [69f 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [6a0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6a1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [6a2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6a3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [6a4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6a5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [6a6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [6a7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [6a8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [6a9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6aa 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [6ab 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6ac 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [6ad 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6ae 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [6af 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [6b0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [6b1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [6b2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6b3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [6b4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6b5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6b6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6b7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [6b8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [6b9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [6ba 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6bb 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [6bc 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6bd 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6be 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6bf 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [6c0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [6c1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [6c2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6c3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [6c4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6c5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6c6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6c7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [6c8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [6c9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [6ca 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6cb 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [6cc 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6cd 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [6ce 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6cf 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [6d0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6d1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6d2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6d3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6d4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6d5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [6d6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6d7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [6d8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6d9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [6da 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6db 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [6dc 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6dd 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [6de 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6df 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [6e0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6e1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6e2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6e3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6e4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6e5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6e6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [6e7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [6e8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [6e9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [6ea 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [6eb 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [6ec 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [6ed 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [6ee 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6ef 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [6f0 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [6f1 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [6f2 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6f3 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [6f4 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [6f5 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [6f6 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [6f7 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [6f8 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [6f9 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [6fa 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [6fb 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [6fc 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [6fd 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [6fe 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [6ff 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [700 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [701 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [702 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [703 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [704 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [705 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [706 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [707 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [708 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [709 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [70a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [70b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [70c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [70d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [70e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [70f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [710 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [711 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [712 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [713 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [714 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [715 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [716 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [717 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [718 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [719 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [71a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [71b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [71c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [71d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [71e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [71f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [720 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [721 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [722 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [723 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [724 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [725 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [726 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [727 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [728 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [729 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [72a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [72b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [72c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [72d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [72e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [72f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [730 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [731 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [732 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [733 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [734 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [735 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [736 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [737 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [738 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [739 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [73a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [73b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [73c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [73d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [73e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [73f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [740 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [741 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [742 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [743 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [744 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [745 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [746 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [747 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [748 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [749 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [74a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [74b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [74c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [74d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [74e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [74f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [750 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [751 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [752 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [753 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [754 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [755 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [756 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [757 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [758 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [759 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [75a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [75b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [75c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [75d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [75e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [75f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [760 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [761 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [762 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [763 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [764 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [765 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [766 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [767 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [768 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [769 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [76a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [76b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [76c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [76d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [76e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [76f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [770 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [771 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [772 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [773 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [774 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [775 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [776 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [777 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [778 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [779 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [77a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [77b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [77c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [77d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [77e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [77f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [780 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [781 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [782 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [783 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [784 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [785 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [786 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [787 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [788 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [789 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [78a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [78b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [78c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [78d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [78e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [78f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [790 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [791 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [792 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [793 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [794 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [795 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [796 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [797 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [798 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [799 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [79a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [79b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [79c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [79d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [79e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [79f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7a0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [7a1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [7a2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7a3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7a4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7a5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [7a6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7a7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [7a8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [7a9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [7aa 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [7ab 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [7ac 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [7ad 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [7ae 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [7af 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [7b0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [7b1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [7b2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [7b3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [7b4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [7b5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [7b6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7b7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [7b8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [7b9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [7ba 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [7bb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [7bc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [7bd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [7be 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [7bf 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [7c0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [7c1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [7c2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7c3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [7c4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7c5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7c6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7c7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7c8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [7c9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [7ca 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [7cb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [7cc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [7cd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [7ce 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [7cf 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [7d0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [7d1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [7d2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [7d3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [7d4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [7d5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [7d6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -orderer.example.com | [7d7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | [7d8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [7d9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -orderer.example.com | [7da 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [7db 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [7dc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [7dd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [7de 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [7df 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [7e0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [7e1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [7e2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [7e3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [7e4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [7e5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [7e6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [7e7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [7e8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [7e9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [7ea 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [7eb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [7ec 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [7ed 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [7ee 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [7ef 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [7f0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [7f1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [7f2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [7f3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [7f4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [7f5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [7f6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [7f7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [7f8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [7f9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [7fa 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [7fb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [7fc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [7fd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [7fe 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [7ff 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [800 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [801 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [802 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [803 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [804 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [805 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [806 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [807 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [808 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [809 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [80a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [80b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [80c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [80d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [80e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [80f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [810 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [811 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [812 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [813 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [814 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [815 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [816 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [817 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [818 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [819 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [81a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [81b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [81c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [81d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [81e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [81f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [820 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [821 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [822 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [823 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [824 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [825 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [826 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [827 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [828 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [829 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [82a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [82b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [82c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [82d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [82e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [82f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [830 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [831 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [832 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [833 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [834 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [835 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [836 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [837 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [838 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [839 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [83a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [83b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [83c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [83d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [83e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [83f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [840 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [841 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [842 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [843 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [844 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [845 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [846 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [847 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [848 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [849 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [84a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [84b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [84c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [84d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [84e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [84f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [850 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [851 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [852 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [853 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [854 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [855 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [856 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [857 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [858 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [859 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [85a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [85b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [85c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [85d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [85e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [85f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [860 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [861 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [862 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [863 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [864 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [865 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [866 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [867 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [868 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [869 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [86a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [86b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [86c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [86d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [86e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [86f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [870 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [871 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [872 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [873 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [874 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [875 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [876 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [877 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [878 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [879 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [87a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [87b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [87c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [87d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [87e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [87f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [880 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [881 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [882 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [883 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [884 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [885 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [886 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [887 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [888 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [889 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [88a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [88b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [88c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [88d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [88e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [88f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [890 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [891 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [892 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [893 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [894 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [895 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [896 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [897 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [898 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [899 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | [89a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -orderer.example.com | [89b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -orderer.example.com | [89c 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -orderer.example.com | [89d 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -orderer.example.com | [89e 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -orderer.example.com | [89f 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | [8a0 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | [8a1 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | [8a2 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -orderer.example.com | [8a3 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420228920)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | [8a4 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -orderer.example.com | [8a5 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -orderer.example.com | txId= locPointer=offset=38, bytesLength=11892 -orderer.example.com | ] -orderer.example.com | [8a6 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | [8a7 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | [8a8 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [8a9 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11935], Going to peek [8] bytes -orderer.example.com | [8aa 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [8ab 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -orderer.example.com | [8ac 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel -orderer.example.com | [8ad 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42080eee0 chain:0xc42080f3a0 cutter:0xc420813720 filters:0xc42080ef40 signer:0x128b4a8 lastConfig:0 lastConfigSeq:0} -orderer.example.com | [8ae 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [8af 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [8b0 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8b1 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [8b2 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8b3 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4BD21A7E5EEE8F87E9799744D56E9E5F -orderer.example.com | [8b4 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 3BF16D3A5CDF5CEA4D2F5CEF61B9777F8C6149C69472519DBC7469567B9DB2F3 -orderer.example.com | [8b5 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [8b6 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8b7 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [8b8 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [8b9 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8ba 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4BD21A7E5EEE8F87E9799744D56E9E5F -orderer.example.com | [8bb 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: FA74043482B5E294A077402DD77DCCCFEA730292694AB976FD5196AD4FD48366 -orderer.example.com | [8bc 12-19 06:47:34.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc6, 0xc2, 0xc, 0xbf, 0x66, 0x4, 0xa3, 0x62, 0xdd, 0xac, 0xe5, 0xb, 0xc7, 0x86, 0x41, 0x70, 0x7, 0xe, 0x7, 0xeb, 0xe9, 0x29, 0x39, 0x81, 0xd2, 0x5b, 0xe2, 0xb8, 0xfe, 0x99, 0x20, 0x5d} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12792 -orderer.example.com | ] -orderer.example.com | [8bd 12-19 06:47:34.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23690], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | [8be 12-19 06:47:34.72 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 -orderer.example.com | [8bf 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [8c0 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264c0 gate 1513666054841481900 evaluation starts -orderer.example.com | [8c1 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8c2 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8c3 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8c4 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [8c5 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 principal evaluation fails -orderer.example.com | [8c6 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264c0 gate 1513666054841481900 evaluation fails -orderer.example.com | [8c7 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1513666054842452600 evaluation starts -orderer.example.com | [8c8 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8c9 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8ca 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8cb 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [8cc 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [8cd 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal matched by identity 0 -orderer.example.com | [8ce 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 85 32 db d4 c8 97 8f 20 72 94 b0 57 ec 8f bf 2e |.2..... r..W....| -orderer.example.com | 00000010 bd 5a 71 29 b5 4f 14 8b 1d 2f 04 f6 84 10 d6 4e |.Zq).O.../.....N| -orderer.example.com | [8cf 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e0 f3 a8 2e 38 19 32 85 b6 15 15 |0E.!.....8.2....| -orderer.example.com | 00000010 b7 5d 5b 95 b6 5e 00 bd 9d 22 c3 e1 54 54 1b 4b |.][..^..."..TT.K| -orderer.example.com | 00000020 01 5f 7b 7a 47 02 20 6e f9 9e 44 44 2b 0d bf ee |._{zG. n..DD+...| -orderer.example.com | 00000030 43 d6 ba b0 a9 04 1c 0a 7d 86 af 67 be 72 7e d1 |C.......}..g.r~.| -orderer.example.com | 00000040 94 af 91 4a fe 65 99 |...J.e.| -orderer.example.com | [8d0 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal evaluation succeeds for identity 0 -orderer.example.com | [8d1 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1513666054842452600 evaluation succeeds -orderer.example.com | [8d2 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42024d440 1 [0xc420026260]}) %!s(*policies.implicitMetaPolicy=&{0xc420b822e0 1 [0xc420026308 0xc420026378]})]} -orderer.example.com | [8d3 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420136880) start: > stop: > -orderer.example.com | [8d4 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | [8d5 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [8d6 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11935], Going to peek [8] bytes -orderer.example.com | [8d7 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [8d8 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420136880) -orderer.example.com | [8d9 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420136880), waiting for new SeekInfo -orderer.example.com | [8da 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [8db 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [8dc 12-19 06:47:34.84 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [8dd 12-19 06:47:35.85 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [8de 12-19 06:47:35.85 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [8df 12-19 06:47:35.85 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [8e0 12-19 06:47:35.86 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [8e1 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [8e2 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -orderer.example.com | [8e3 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel -orderer.example.com | [8e4 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [8e5 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [8e6 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [8e7 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [8e8 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [8e9 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [8ea 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [8eb 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [8ec 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [8ed 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [8ee 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [8ef 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [8f0 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [8f1 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [8f2 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [8f3 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [8f4 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026768 gate 1513666055868315700 evaluation starts -orderer.example.com | [8f5 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8f6 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [8f7 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [8f8 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [8f9 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 principal matched by identity 0 -orderer.example.com | [8fa 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -orderer.example.com | 00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -orderer.example.com | [8fb 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -orderer.example.com | 00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -orderer.example.com | 00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -orderer.example.com | 00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -orderer.example.com | 00000040 fe 63 df 3b 7b a2 |.c.;{.| -orderer.example.com | [8fc 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 principal evaluation succeeds for identity 0 -orderer.example.com | [8fd 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026768 gate 1513666055868315700 evaluation succeeds -orderer.example.com | [8fe 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [8ff 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [900 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [901 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [902 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [903 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [904 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [905 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [906 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [907 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [908 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [909 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [90a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [90b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [90c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [90d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [90e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [90f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [910 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [911 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [912 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [913 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [914 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [915 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [916 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [917 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [918 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [919 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [91a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [91b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [91c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [91d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [91e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [91f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [920 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [921 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [922 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [923 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [924 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [925 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [926 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [927 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [928 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [929 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [92a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [92b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [92c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [92d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [92e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [92f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [930 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [931 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [932 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [933 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [934 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [935 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [936 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [937 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [938 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [939 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [93a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [93b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [93c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [93d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [93e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [93f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [940 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [941 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [942 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [943 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [944 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [945 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [946 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [947 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [948 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [949 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [94a 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [94b 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [94c 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [94d 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [94e 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [94f 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [950 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [951 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [952 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [953 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [954 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [955 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [956 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [957 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [958 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [959 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [95a 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [95b 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [95c 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060887ECE2D10522...D5C69887BD2C463FDC67D1F2BBB07A50 -orderer.example.com | [95d 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 492914C3D01D20C05FB31CFEC982EBA48233FB1A452A6E8D915998D066D97DAD -orderer.example.com | [95e 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG -orderer.example.com | [95f 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [960 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026b30 gate 1513666055885244600 evaluation starts -orderer.example.com | [961 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [962 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [963 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [964 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [965 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [966 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 principal matched by identity 0 -orderer.example.com | [967 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 29 14 c3 d0 1d 20 c0 5f b3 1c fe c9 82 eb a4 |I).... ._.......| -orderer.example.com | 00000010 82 33 fb 1a 45 2a 6e 8d 91 59 98 d0 66 d9 7d ad |.3..E*n..Y..f.}.| -orderer.example.com | [968 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 44 c2 24 45 1b a5 cc c4 c7 71 |0E.!..D.$E.....q| -orderer.example.com | 00000010 cb c1 0a 86 38 d0 17 e1 16 eb 0c 34 d2 4d 1b 46 |....8......4.M.F| -orderer.example.com | 00000020 af e3 9d 71 19 02 20 74 0a 08 cc 21 69 ef 36 46 |...q.. t...!i.6F| -orderer.example.com | 00000030 66 7c 55 e8 cd 0c 25 6d 76 9d 00 8a 58 00 1d b8 |f|U...%mv...X...| -orderer.example.com | 00000040 be 95 f7 ef e5 c0 48 |......H| -orderer.example.com | [969 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 principal evaluation succeeds for identity 0 -orderer.example.com | [96a 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026b30 gate 1513666055885244600 evaluation succeeds -orderer.example.com | [96b 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42024d540 1 [0xc420026210]}) %!s(*policies.implicitMetaPolicy=&{0xc420b821e0 1 [0xc4200262b8 0xc4200263a0]})]} -orderer.example.com | [96c 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [96d 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [96e 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [96f 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [970 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [971 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [972 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [973 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [974 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [975 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [976 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [977 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [978 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [979 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [97a 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [97b 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [97c 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666055890349100 evaluation starts -orderer.example.com | [97d 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [97e 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [97f 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [980 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [981 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal matched by identity 0 -orderer.example.com | [982 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -orderer.example.com | 00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -orderer.example.com | [983 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -orderer.example.com | 00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -orderer.example.com | 00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -orderer.example.com | 00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -orderer.example.com | 00000040 fe 63 df 3b 7b a2 |.c.;{.| -orderer.example.com | [984 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal evaluation succeeds for identity 0 -orderer.example.com | [985 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666055890349100 evaluation succeeds -orderer.example.com | [986 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [987 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [988 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [989 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [98a 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [98b 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [98c 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [98d 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [98e 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [98f 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [990 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [991 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [992 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [993 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [994 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [995 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [996 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [997 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [998 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [999 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [99a 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [99b 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [99c 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [99d 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [99e 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [99f 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [9a0 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [9a1 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [9a2 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [9a3 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [9a4 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [9a5 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [9a6 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [9a7 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [9a8 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [9a9 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [9aa 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [9ab 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [9ac 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [9ad 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [9ae 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [9af 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [9b0 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [9b1 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [9b2 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [9b3 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [9b4 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [9b5 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [9b6 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [9b7 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [9b8 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [9b9 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [9ba 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [9bb 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [9bc 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [9bd 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [9be 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [9bf 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [9c0 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [9c1 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [9c2 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [9c3 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [9c4 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [9c5 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [9c6 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [9c7 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [9c8 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [9c9 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [9ca 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9cb 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9cc 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9cd 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [9ce 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [9cf 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [9d0 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [9d1 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [9d2 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9d3 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9d4 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9d5 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [9d6 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [9d7 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [9d8 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [9d9 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [9da 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9db 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9dc 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9dd 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [9de 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [9df 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [9e0 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -orderer.example.com | [9e1 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [9e2 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666055905456400 evaluation starts -orderer.example.com | [9e3 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9e4 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [9e5 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [9e6 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [9e7 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [9e8 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 -orderer.example.com | [9e9 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 29 14 c3 d0 1d 20 c0 5f b3 1c fe c9 82 eb a4 |I).... ._.......| -orderer.example.com | 00000010 82 33 fb 1a 45 2a 6e 8d 91 59 98 d0 66 d9 7d ad |.3..E*n..Y..f.}.| -orderer.example.com | [9ea 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 44 c2 24 45 1b a5 cc c4 c7 71 |0E.!..D.$E.....q| -orderer.example.com | 00000010 cb c1 0a 86 38 d0 17 e1 16 eb 0c 34 d2 4d 1b 46 |....8......4.M.F| -orderer.example.com | 00000020 af e3 9d 71 19 02 20 74 0a 08 cc 21 69 ef 36 46 |...q.. t...!i.6F| -orderer.example.com | 00000030 66 7c 55 e8 cd 0c 25 6d 76 9d 00 8a 58 00 1d b8 |f|U...%mv...X...| -orderer.example.com | 00000040 be 95 f7 ef e5 c0 48 |......H| -orderer.example.com | [9eb 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 -orderer.example.com | [9ec 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666055905456400 evaluation succeeds -orderer.example.com | [9ed 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42024d540 1 [0xc420026210]}) %!s(*policies.implicitMetaPolicy=&{0xc420b821e0 1 [0xc4200262b8 0xc4200263a0]})]} -orderer.example.com | [9ee 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [9ef 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [9f0 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [9f1 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [9f2 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [9f3 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [9f4 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [9f5 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [9f6 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [9f7 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [9f8 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [9f9 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [9fa 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [9fb 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [9fc 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [9fd 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [9fe 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268f0 gate 1513666055908242100 evaluation starts -orderer.example.com | [9ff 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a00 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [a01 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a02 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [a03 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 principal matched by identity 0 -orderer.example.com | [a04 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -orderer.example.com | 00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -orderer.example.com | [a05 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -orderer.example.com | 00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -orderer.example.com | 00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -orderer.example.com | 00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -orderer.example.com | 00000040 fe 63 df 3b 7b a2 |.c.;{.| -orderer.example.com | [a06 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 principal evaluation succeeds for identity 0 -orderer.example.com | [a07 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268f0 gate 1513666055908242100 evaluation succeeds -orderer.example.com | [a08 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [a09 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [a0a 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [a0b 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [a0c 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [a0d 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [a0e 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [a0f 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [a10 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [a11 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [a12 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [a13 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [a14 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [a15 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [a16 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [a17 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [a18 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [a19 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [a1a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [a1b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [a1c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [a1d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [a1e 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [a1f 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [a20 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [a21 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [a22 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [a23 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [a24 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [a25 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [a26 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [a27 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [a28 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [a29 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [a2a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [a2b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [a2c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [a2d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [a2e 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [a2f 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [a30 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [a31 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [a32 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [a33 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [a34 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [a35 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [a36 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [a37 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [a38 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [a39 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [a3a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [a3b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [a3c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [a3d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [a3e 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [a3f 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [a40 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [a41 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [a42 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [a43 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [a44 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [a45 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [a46 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [a47 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [a48 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [a49 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [a4a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [a4b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [a4d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a4e 12-19 06:47:35.92 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a4f 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a50 12-19 06:47:35.92 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [a4c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a51 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a52 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a53 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a54 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [a55 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [a56 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [a57 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [a58 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a59 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a5a 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a5b 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [a5c 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [a5d 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [a5e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [a5f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [a60 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a61 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a62 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [a63 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [a64 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [a65 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [a66 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -orderer.example.com | [a67 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | [a68 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [a69 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11935], Going to peek [8] bytes -orderer.example.com | [a6a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [a6b 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [a6c 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [a6d 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [a6e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [a6f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [a70 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a71 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [a72 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [a73 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [a74 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [a75 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [a76 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [a77 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [a78 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [a79 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [a7a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [a7b 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [a7c 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [a7d 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [a7e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [a7f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [a80 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [a81 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [a82 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [a83 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [a84 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [a85 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [a86 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [a87 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [a88 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [a89 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [a8a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [a8b 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [a8c 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [a8d 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [a8e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [a8f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [a90 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [a91 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [a92 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [a93 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [a94 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [a95 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [a96 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [a97 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [a98 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [a99 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [a9a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [a9b 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [a9c 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [a9d 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [a9e 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [a9f 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [aa0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513666055940271300 evaluation starts -orderer.example.com | [aa1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [aa2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [aa3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [aa4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [aa5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal matched by identity 0 -orderer.example.com | [aa6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -orderer.example.com | 00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -orderer.example.com | [aa7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -orderer.example.com | 00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -orderer.example.com | 00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -orderer.example.com | 00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -orderer.example.com | 00000040 fe 63 df 3b 7b a2 |.c.;{.| -orderer.example.com | [aa8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal evaluation succeeds for identity 0 -orderer.example.com | [aa9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513666055940271300 evaluation succeeds -orderer.example.com | [aaa 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [aab 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [aac 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [aad 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [aae 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [aaf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [ab0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [ab1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [ab2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [ab3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [ab4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [ab5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [ab6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [ab7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [ab8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [ab9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [aba 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [abb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [abc 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [abd 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [abe 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [abf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [ac0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [ac1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [ac2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [ac3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [ac4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [ac5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [ac6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [ac7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [ac8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [ac9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [aca 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [acb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [acc 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [acd 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [ace 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [acf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [ad0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ad1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [ad2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [ad3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [ad4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [ad5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [ad6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [ad7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [ad8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [ad9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ada 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [adb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [adc 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [add 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ade 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [adf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [ae0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [ae1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [ae2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ae3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [ae4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [ae5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [ae6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ae7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [ae8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [ae9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [aea 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [aeb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [aec 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [aed 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [aee 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [aef 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [af0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [af1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [af2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [af3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [af4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [af5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [af6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [af7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [af8 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [af9 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [afa 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [afb 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [afc 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [afd 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [afe 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [aff 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [b00 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [b01 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [b02 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [b03 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [b04 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b05 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [b06 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b07 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [b08 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b09 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [b0a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b0b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b0c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b0d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b0e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b0f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [b10 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b11 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [b12 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b13 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [b14 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b15 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [b16 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b17 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [b18 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b19 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [b1a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b1b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b1c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b1d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b1e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b1f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b20 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [b21 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [b22 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b23 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [b24 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b25 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [b26 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b27 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [b28 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [b29 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [b2a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [b2b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [b2c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [b2d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [b2e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [b2f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [b30 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [b31 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [b32 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [b33 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [b34 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b35 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [b36 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b37 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [b38 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [b39 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [b3a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [b3b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [b3c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b3d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [b3e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [b3f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [b40 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b41 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b42 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b43 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b44 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b45 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b46 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [b47 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [b48 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [b49 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [b4a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [b4b 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [b4c 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [b4d 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [b4e 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [b4f 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [b50 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [b51 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [b52 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:0 lastConfigSeq:1} -orderer.example.com | [b53 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [b54 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b55 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b56 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b57 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b58 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4DCBEAEE94F07A7867FE7102CF2F8BF6 -orderer.example.com | [b59 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: F0F1FA52A3E97E1C3F613978AE3EE3CA0C8C7C36D7CC2DBF388068E19508DC46 -orderer.example.com | [b5a 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 -orderer.example.com | [b5b 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b5c 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b5d 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -orderer.example.com | [b5e 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [b5f 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [b60 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...4DCBEAEE94F07A7867FE7102CF2F8BF6 -orderer.example.com | [b61 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: FED852962A84DFB1ADFA0E4A82C47F0BFFF595D7D24D9BA2A58CE4DB044F8D74 -orderer.example.com | [b62 12-19 06:47:35.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=11913 -orderer.example.com | ] -orderer.example.com | [b63 12-19 06:47:35.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | [b64 12-19 06:47:35.97 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 -orderer.example.com | [b65 12-19 06:47:37.99 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b66 12-19 06:47:37.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [b67 12-19 06:47:37.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [b68 12-19 06:47:38.00 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [b69 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [b6a 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -orderer.example.com | [b6b 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel -orderer.example.com | [b6c 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [b6d 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [b6e 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [b6f 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [b70 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [b71 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [b72 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [b73 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [b74 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [b75 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [b76 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [b77 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [b78 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [b79 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [b7a 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [b7b 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [b7c 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180950 gate 1513666058010440300 evaluation starts -orderer.example.com | [b7d 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b7e 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [b7f 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [b80 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [b81 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 principal matched by identity 0 -orderer.example.com | [b82 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -orderer.example.com | 00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -orderer.example.com | [b83 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -orderer.example.com | 00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -orderer.example.com | 00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -orderer.example.com | 00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -orderer.example.com | 00000040 9f b4 9c 43 9e 03 |...C..| -orderer.example.com | [b84 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 principal evaluation succeeds for identity 0 -orderer.example.com | [b85 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180950 gate 1513666058010440300 evaluation succeeds -orderer.example.com | [b86 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [b87 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [b88 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [b89 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [b8a 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [b8b 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [b8c 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [b8d 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [b8e 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [b8f 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [b90 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [b91 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [b92 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [b93 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [b94 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [b95 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [b96 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [b97 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [b98 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [b99 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [b9a 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [b9b 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [b9c 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [b9d 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [b9e 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [b9f 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [ba0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [ba1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [ba2 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [ba3 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [ba4 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [ba5 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [ba6 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [ba7 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [ba8 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [ba9 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [baa 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [bab 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [bac 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [bad 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bae 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [baf 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [bb0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [bb1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [bb2 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [bb3 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [bb4 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [bb5 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [bb6 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bb7 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [bb8 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [bb9 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [bba 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bbb 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [bbc 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [bbd 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [bbe 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [bbf 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bc0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [bc1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [bc2 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [bc3 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bc4 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [bc5 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [bc6 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [bc7 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [bc8 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [bc9 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [bca 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bcb 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bcc 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bcd 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [bce 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [bcf 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [bd0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [bd1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [bd2 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bd3 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bd4 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bd5 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [bd6 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [bd7 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [bd8 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [bd9 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [bda 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bdb 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bdc 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bdd 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [bde 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [bdf 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [be0 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [be1 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [be2 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [be3 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [be4 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A06088AECE2D10522...77B46BCF871A9C4C840923EDE7FBE2B8 -orderer.example.com | [be5 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: D57A1DBF412779CCBEBFD90833A46A8D41EEEA3CEC133A69F3DF5E547350B0C1 -orderer.example.com | [be6 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG -orderer.example.com | [be7 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [be8 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180d40 gate 1513666058025177300 evaluation starts -orderer.example.com | [be9 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [bea 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [beb 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bec 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [bed 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [bee 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 principal matched by identity 0 -orderer.example.com | [bef 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d5 7a 1d bf 41 27 79 cc be bf d9 08 33 a4 6a 8d |.z..A'y.....3.j.| -orderer.example.com | 00000010 41 ee ea 3c ec 13 3a 69 f3 df 5e 54 73 50 b0 c1 |A..<..:i..^TsP..| -orderer.example.com | [bf0 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 13 85 be 7a b9 95 72 d5 a2 b1 17 1a |0D. ...z..r.....| -orderer.example.com | 00000010 b5 97 03 be 58 2c a4 88 1e 85 41 c0 a4 aa ff ba |....X,....A.....| -orderer.example.com | 00000020 40 e4 04 2c 02 20 27 ce e7 ee 31 28 c9 ca 11 89 |@..,. '...1(....| -orderer.example.com | 00000030 af 17 85 db 9d 27 36 49 cd bc 6b b7 f2 ac d8 c4 |.....'6I..k.....| -orderer.example.com | 00000040 20 c2 10 b2 54 29 | ...T)| -orderer.example.com | [bf1 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 principal evaluation succeeds for identity 0 -orderer.example.com | [bf2 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180d40 gate 1513666058025177300 evaluation succeeds -orderer.example.com | [bf3 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42011ee80 1 [0xc420026420]}) %!s(*policies.implicitMetaPolicy=&{0xc42011fac0 1 [0xc420026500 0xc4200265f0]})]} -orderer.example.com | [bf4 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [bf5 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [bf6 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [bf7 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [bf8 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [bf9 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [bfa 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [bfb 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [bfc 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [bfd 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [bfe 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [bff 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [c00 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [c01 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [c02 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [c03 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [c04 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666058035187900 evaluation starts -orderer.example.com | [c05 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c06 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [c07 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c08 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [c09 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal matched by identity 0 -orderer.example.com | [c0a 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -orderer.example.com | 00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -orderer.example.com | [c0b 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -orderer.example.com | 00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -orderer.example.com | 00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -orderer.example.com | 00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -orderer.example.com | 00000040 9f b4 9c 43 9e 03 |...C..| -orderer.example.com | [c0c 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal evaluation succeeds for identity 0 -orderer.example.com | [c0d 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666058035187900 evaluation succeeds -orderer.example.com | [c0e 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c0f 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c10 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c11 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [c12 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c13 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c14 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c15 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c16 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c17 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c18 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [c19 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [c1a 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [c1b 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c1c 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c1d 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c1e 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c1f 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c20 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c21 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [c22 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [c23 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [c24 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [c25 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [c26 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [c27 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [c28 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [c29 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [c2a 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [c2b 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [c2c 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [c2d 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [c2e 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [c2f 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [c30 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [c31 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [c32 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [c33 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [c34 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [c35 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c36 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [c37 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [c38 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [c39 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [c3a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [c3b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [c3c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [c3d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [c3e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c3f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [c40 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [c41 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [c42 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c43 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [c44 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [c45 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [c46 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [c47 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c48 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [c49 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [c4a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [c4b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c4c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [c4d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [c4e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [c4f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [c50 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [c51 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [c52 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c53 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c54 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c55 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c56 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [c57 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [c58 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [c59 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [c5a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c5b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c5c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c5d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [c5e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [c5f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [c60 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [c61 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [c62 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c63 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c64 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c65 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [c66 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [c67 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [c68 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -orderer.example.com | [c69 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [c6a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666058048606100 evaluation starts -orderer.example.com | [c6b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c6c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [c6d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -orderer.example.com | kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -orderer.example.com | 0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -orderer.example.com | eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c6e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [c6f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c70 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 -orderer.example.com | [c71 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d5 7a 1d bf 41 27 79 cc be bf d9 08 33 a4 6a 8d |.z..A'y.....3.j.| -orderer.example.com | 00000010 41 ee ea 3c ec 13 3a 69 f3 df 5e 54 73 50 b0 c1 |A..<..:i..^TsP..| -orderer.example.com | [c72 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 13 85 be 7a b9 95 72 d5 a2 b1 17 1a |0D. ...z..r.....| -orderer.example.com | 00000010 b5 97 03 be 58 2c a4 88 1e 85 41 c0 a4 aa ff ba |....X,....A.....| -orderer.example.com | 00000020 40 e4 04 2c 02 20 27 ce e7 ee 31 28 c9 ca 11 89 |@..,. '...1(....| -orderer.example.com | 00000030 af 17 85 db 9d 27 36 49 cd bc 6b b7 f2 ac d8 c4 |.....'6I..k.....| -orderer.example.com | 00000040 20 c2 10 b2 54 29 | ...T)| -orderer.example.com | [c73 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 -orderer.example.com | [c74 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666058048606100 evaluation succeeds -orderer.example.com | [c75 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42011ee80 1 [0xc420026420]}) %!s(*policies.implicitMetaPolicy=&{0xc42011fac0 1 [0xc420026500 0xc4200265f0]})]} -orderer.example.com | [c76 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [c77 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [c78 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [c79 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [c7a 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [c7b 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [c7c 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [c7d 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [c7e 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [c7f 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [c80 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [c81 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [c82 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [c83 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [c84 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [c85 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [c86 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026910 gate 1513666058051796600 evaluation starts -orderer.example.com | [c87 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c88 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [c89 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c8a 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [c8b 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 principal matched by identity 0 -orderer.example.com | [c8c 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -orderer.example.com | 00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -orderer.example.com | [c8d 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -orderer.example.com | 00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -orderer.example.com | 00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -orderer.example.com | 00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -orderer.example.com | 00000040 9f b4 9c 43 9e 03 |...C..| -orderer.example.com | [c8e 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 principal evaluation succeeds for identity 0 -orderer.example.com | [c8f 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026910 gate 1513666058051796600 evaluation succeeds -orderer.example.com | [c90 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c91 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c92 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c93 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [c94 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [c95 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [c96 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c97 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c98 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c99 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c9a 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c9b 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [c9c 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [c9d 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [c9e 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [c9f 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [ca0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [ca1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [ca2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [ca3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [ca4 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [ca5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [ca6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [ca7 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [ca8 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [ca9 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [caa 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [cab 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [cac 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [cad 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [cae 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [caf 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [cb0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [cb1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [cb2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [cb3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [cb4 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [cb5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [cb6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [cb7 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [cb8 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [cb9 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [cba 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [cbb 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [cbc 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [cbd 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [cbe 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [cbf 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [cc0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [cc1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [cc3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cc4 12-19 06:47:38.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [cc2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [cc5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [cc6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [cc7 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [cc8 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [cc9 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [cca 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ccb 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [ccc 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [ccd 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [cce 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [ccf 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [cd0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [cd1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [cd2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [cd3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [cd4 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [cd5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [cd6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cd7 12-19 06:47:38.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [cd8 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [cd9 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [cda 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [cdb 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [cdc 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [cdd 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [cde 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [cdf 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [ce0 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ce1 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ce2 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ce3 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [ce4 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [ce5 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [ce6 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [ce7 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [ce8 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ce9 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [cea 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ceb 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [cec 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [ced 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [cee 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -orderer.example.com | [cef 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | [cf0 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -orderer.example.com | [cf1 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13734], Going to peek [8] bytes -orderer.example.com | [cf2 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -orderer.example.com | [cf3 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [cf4 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [cf5 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [cf6 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [cf7 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [cf8 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [cf9 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [cfa 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [cfb 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | [cfc 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | [cfd 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [cfe 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [cff 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [d00 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [d01 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [d02 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [d03 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [d04 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | [d05 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | [d06 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [d07 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [d08 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [d09 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [d0a 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | [d0b 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | [d0c 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [d0d 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | [d0e 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [d0f 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [d10 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [d11 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [d12 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | [d13 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | [d14 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | [d15 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | [d16 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [d17 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [d18 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [d19 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [d1a 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [d1b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [d1c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [d1d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [d1e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [d1f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [d20 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | [d21 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | [d22 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | [d23 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [d24 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | [d25 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [d26 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [d27 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [d28 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [d29 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180008 gate 1513666058075536600 evaluation starts -orderer.example.com | [d2a 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d2b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [d2c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d2d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [d2e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 principal matched by identity 0 -orderer.example.com | [d2f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -orderer.example.com | 00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -orderer.example.com | [d30 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -orderer.example.com | 00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -orderer.example.com | 00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -orderer.example.com | 00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -orderer.example.com | 00000040 9f b4 9c 43 9e 03 |...C..| -orderer.example.com | [d31 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 principal evaluation succeeds for identity 0 -orderer.example.com | [d32 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180008 gate 1513666058075536600 evaluation succeeds -orderer.example.com | [d33 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [d34 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [d35 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [d36 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [d37 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [d38 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [d39 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [d3a 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [d3b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [d3c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [d3d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [d3e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [d3f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [d40 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [d41 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [d42 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [d43 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [d44 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [d45 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [d46 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | [d47 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | [d48 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [d49 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [d4a 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [d4b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [d4c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [d4d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [d4e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [d4f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | [d50 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [d51 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [d52 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [d53 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [d54 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [d55 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -orderer.example.com | [d56 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -orderer.example.com | [d57 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -orderer.example.com | [d58 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -orderer.example.com | [d59 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [d5a 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d5b 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -orderer.example.com | [d5c 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -orderer.example.com | [d5d 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -orderer.example.com | [d5e 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | [d5f 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -orderer.example.com | [d60 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -orderer.example.com | [d61 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -orderer.example.com | [d62 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [d63 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d64 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [d65 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d66 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [d67 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d68 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -orderer.example.com | [d69 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -orderer.example.com | [d6a 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -orderer.example.com | [d6b 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [d6c 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d6d 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | [d6e 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d6f 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | [d70 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d71 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -orderer.example.com | [d72 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -orderer.example.com | [d73 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -orderer.example.com | [d74 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [d75 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [d76 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [d77 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -orderer.example.com | bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -orderer.example.com | jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -orderer.example.com | MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -orderer.example.com | Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -orderer.example.com | CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -orderer.example.com | TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d78 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d79 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d7a 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [d7b 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [d7c 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [d7d 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [d7e 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [d7f 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -orderer.example.com | wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -orderer.example.com | d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -orderer.example.com | +e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -orderer.example.com | IEhjT+WlcQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d80 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d81 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d82 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [d83 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [d84 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [d85 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [d86 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [d87 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -orderer.example.com | rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -orderer.example.com | 65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -orderer.example.com | vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -orderer.example.com | XXreRTw6jXg= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d88 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d89 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d8a 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [d8b 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [d8c 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [d8d 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [d8e 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | [d8f 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [d90 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | [d91 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [d92 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | [d93 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [d94 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [d95 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [d96 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [d97 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [d98 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | [d99 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [d9a 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | [d9b 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [d9c 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | [d9d 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [d9e 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | [d9f 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [da0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | [da1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [da2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | [da3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [da4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [da5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [da6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [da7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [da8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [da9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | [daa 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | [dab 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | [dac 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | [dad 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | [dae 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | [daf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [db0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | [db1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [db2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | [db3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [db4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | [db5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -orderer.example.com | [db6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | [db7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [db8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | [db9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -orderer.example.com | [dba 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | [dbb 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -orderer.example.com | [dbc 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | [dbd 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -orderer.example.com | [dbe 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | [dbf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [dc0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | [dc1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [dc2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | [dc3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -orderer.example.com | [dc4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | [dc5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -orderer.example.com | [dc6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | [dc7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -orderer.example.com | [dc8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | [dc9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [dca 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [dcb 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [dcc 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [dcd 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [dce 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -orderer.example.com | [dcf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [dd0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [dd1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [dd2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [dd3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -orderer.example.com | [dd4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [dd5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -orderer.example.com | [dd6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [dd7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -orderer.example.com | [dd8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [dd9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | [dda 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [ddb 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:1 lastConfigSeq:2} -orderer.example.com | [ddc 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [ddd 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [dde 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [ddf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [de0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [de1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...87F2E29AC80A9959F02A535DC0293FDF -orderer.example.com | [de2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 35A078185D89A0BE943C61A7C605557D3FDDDC2AEF2216DE23BC33DE1FDFD64E -orderer.example.com | [de3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 -orderer.example.com | [de4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [de5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [de6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [de7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [de8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [de9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...87F2E29AC80A9959F02A535DC0293FDF -orderer.example.com | [dea 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 15037B8F2F30DA463B26A438CB41BE4B90ACEE176F47C31F4B5DBB25AFA90681 -orderer.example.com | [deb 12-19 06:47:38.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=11971 -orderer.example.com | ] -orderer.example.com | [dec 12-19 06:47:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39460], isChainEmpty=[false], lastBlockNumber=[2] -orderer.example.com | [ded 12-19 06:47:38.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 -orderer.example.com | [dee 12-19 06:47:41.14 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [def 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [df0 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [df1 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [df2 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1513666061149971000 evaluation starts -orderer.example.com | [df3 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [df4 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951626e724a6b2f64763242314c495a716d77464b484244414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444661467730794e7a45794d544d774e7a55324d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414544356654676643787433577041594c6451545354454f594c357363653774752f0a3563536e6a59696b702b585563684147494e39395a65623149623755436c335a2f32617a4531512f4c7759395463764c6d342f766c364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416771754f51644b3755512b41670a3668413444395a3331795054714e396665687a6b59676f30564559536e454977436759494b6f5a497a6a304541774944534141775251496841505574776a36670a6848764e6e51434f6a56735549455074734d686962346c646b5670643962695134497752416941716a703479306d785a6b4e3433773574373561322b796667610a506a4e4d474331664d522f644666673478513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [df5 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [456 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [990e983f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [4cc 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [476 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 +peer0.org1.example.com | [477 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) +peer1.org2.example.com | [457 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [990e983f]send state message COMPLETED +peer1.org2.example.com | [458 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [990e983f]Received message COMPLETED from shim +peer1.org2.example.com | [459 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [990e983f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [45a 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [990e983f-622b-4331-8af7-fbcb1de4b771]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [403 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [4cd 01-12 22:57:18.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer1.org2.example.com | [45b 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:990e983f-622b-4331-8af7-fbcb1de4b771 +peer0.org1.example.com | [478 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +peer1.org1.example.com | [404 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [008dcd78]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [405 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [4ce 01-12 22:57:18.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer0.org2.example.com | [4cf 01-12 22:57:18.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 +peer1.org2.example.com | [45c 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [406 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [479 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +peer0.org1.example.com | [47a 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 +peer0.org1.example.com | [47b 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [45d 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [3d72ed7a-ab0b-41b9-8088-ec2bab4b3d11] +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [28b 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [407 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [008dcd78]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [4d0 01-12 22:57:18.74 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b +peer1.org2.example.com | [45e 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [45f 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [47c 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +peer0.org1.example.com | [47d 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer1.org1.example.com | [408 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [008dcd78]Move state message TRANSACTION +orderer.example.com | [28c 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [460 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42258bf00), Data:(*common.BlockData)(0xc4214cd360), Metadata:(*common.BlockMetadata)(0xc4214cd3a0)}, doMVCCValidation=true +peer1.org2.example.com | [461 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [462 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [47e 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org2.example.com | [4d1 01-12 22:57:19.24 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 +peer0.org2.example.com | [4d2 01-12 22:57:19.24 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) +orderer.example.com | [28d 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [28e 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [28f 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [463 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] marked as valid by state validator +peer1.org1.example.com | [409 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [008dcd78]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [40a 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [40b 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [008dcd78]sending state message TRANSACTION +orderer.example.com | [290 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa +peer0.org2.example.com | [4d3 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer0.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | [464 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +peer0.org2.example.com | [4d4 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [4d5 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [4d6 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [4d7 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +peer1.org1.example.com | [40c 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [008dcd78]Received message TRANSACTION from shim +peer1.org2.example.com | txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 +peer0.org2.example.com | [4d8 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | [40d 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [008dcd78]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | org.hyperledger.fabric.version="1.0.5" \ +peer0.org2.example.com | [4d9 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [40e 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [008dcd78]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | ] +peer0.org2.example.com | [4da 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org2.example.com | [465 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to index +peer1.org1.example.com | [40f 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [008dcd78]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [4db 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [4dc 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [466 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx number:[0] ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to blockNumTranNum index +peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | [410 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [008dcd78]Move state message COMPLETED +peer0.org2.example.com | [4dd 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [467 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44646], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [4de 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message READY +peer1.org1.example.com | [411 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [008dcd78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [4df 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [468 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer1.org1.example.com | [412 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [008dcd78]send state message COMPLETED +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org2.example.com | [4e0 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a616a3ec]Entered state ready +peer0.org1.example.com | [47f 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +peer1.org1.example.com | [413 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [008dcd78]Received message COMPLETED from shim +peer1.org2.example.com | [469 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [4e1 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +peer0.org1.example.com | [480 01-12 22:57:02.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +peer1.org1.example.com | [414 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [008dcd78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +peer1.org2.example.com | [46a 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [4e2 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message READY +peer0.org1.example.com | [481 01-12 22:57:02.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [415 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [008dcd784eacd944fe83a17571a9f0c20a629461a28f9cd593b2cc032b492456]HandleMessage- COMPLETED. Notify +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +peer0.org2.example.com | [4e3 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [482 01-12 22:57:02.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +peer1.org2.example.com | [46b 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +peer1.org1.example.com | [416 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:008dcd784eacd944fe83a17571a9f0c20a629461a28f9cd593b2cc032b492456 +peer0.org2.example.com | [4e4 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer0.org2.example.com | [4e5 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [46c 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [483 01-12 22:57:02.54 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +peer0.org2.example.com | [4e6 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org1.example.com | [417 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | ymzPpM2K +peer1.org2.example.com | [46d 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org2.example.com | [4e7 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a616a3ec]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [418 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [484 01-12 22:57:03.04 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 +peer0.org2.example.com | [4e8 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [46e 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [4e9 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [419 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [485 01-12 22:57:03.04 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) +peer0.org2.example.com | [4ea 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a616a3ec]sendExecuteMsg trigger event INIT +orderer.example.com | [291 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [46f 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [41a 01-12 22:56:44.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [486 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [470 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org2.example.com | [4eb 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message INIT +peer1.org1.example.com | [41b 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [487 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [41c 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [4ec 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [488 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [471 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [41d 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [4ed 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [489 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [472 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer1.org1.example.com | [41e 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42213dd70 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org2.example.com | [4ee 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message INIT +peer0.org1.example.com | [48a 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +peer1.org2.example.com | [473 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [474 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [4ef 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message PUT_STATE from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4f0 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [41f 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer0.org1.example.com | [48b 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer1.org1.example.com | [420 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [475 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [48c 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [4f1 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [421 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [476 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | [48d 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer1.org1.example.com | [422 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org2.example.com | [4f2 01-12 22:57:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]state is ready +peer1.org2.example.com | [477 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [48e 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [423 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [478 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [424 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [4f3 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [48f 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [425 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421872a80, header channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer0.org2.example.com | [4f4 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a616a3ec]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [479 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer1.org1.example.com | [426 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [4f5 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message RESPONSE +peer1.org2.example.com | [47a 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a62b40 +peer0.org1.example.com | [490 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [427 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org2.example.com | [47b 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [4f6 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [491 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message READY +peer1.org1.example.com | [428 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [47c 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org1.example.com | [429 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [4f7 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [492 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [47d 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer1.org1.example.com | [42a 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +peer1.org2.example.com | [47e 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [292 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [42b 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [4f8 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message RESPONSE +peer1.org2.example.com | [47f 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [493 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a1c14bb5]Entered state ready +peer1.org1.example.com | [42c 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [4f9 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message PUT_STATE from shim +peer1.org2.example.com | [480 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420314870, header 0xc421a62b70 +peer0.org1.example.com | [494 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer1.org1.example.com | [42d 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [843a61ee-3b1d-454c-b182-0c2eab22d479] +peer0.org2.example.com | [4fa 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [481 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org1.example.com | [42e 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=58fc552b-90c0-4407-b4cb-84e7ef032a23,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org2.example.com | [4fb 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [495 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message READY +peer1.org1.example.com | [42f 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e chaindID businesschannel +peer1.org2.example.com | [482 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [496 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [4fc 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]state is ready +peer1.org1.example.com | [430 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer1.org2.example.com | [483 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [497 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [431 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [498 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [4fd 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a616a3ec]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [484 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [432 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org2.example.com | [4fe 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a616a3ec]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [499 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [485 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [37ecf21e-93f7-4dc8-93c9-9c2d31791ab2] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [433 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [58fc552b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [49a 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [4ff 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message RESPONSE +peer1.org2.example.com | [486 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 channel id: businesschannel +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org1.example.com | [434 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [500 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [49b 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [487 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685,syscc=true,proposal=0xc420314870,canname=lscc:1.0.5 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org1.example.com | [435 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [58fc552b]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [501 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [49c 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [488 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org1.example.com | [436 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [58fc552b]Move state message TRANSACTION +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [49d 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [489 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [502 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message RESPONSE +peer1.org1.example.com | [437 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [58fc552b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [49e 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message INIT +peer1.org2.example.com | [48a 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [503 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message COMPLETED from shim +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org1.example.com | [438 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [504 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [49f 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [439 01-12 22:57:05.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [58fc552b]sending state message TRANSACTION +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org2.example.com | [505 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [48b 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [4a0 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [43a 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58fc552b]Received message TRANSACTION from shim +peer0.org2.example.com | [506 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [43b 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [58fc552b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [48c 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [4a1 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message INIT +peer0.org2.example.com | [507 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [293 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [48d 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [43c 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [58fc552b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [4a2 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message PUT_STATE from shim +orderer.example.com | [294 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [43d 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [48e 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [508 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [295 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [4a3 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [48f 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Move state message TRANSACTION +peer1.org1.example.com | [43e 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [509 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [296 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [4a4 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [43f 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [490 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [4a5 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]state is ready +orderer.example.com | [297 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [440 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [50a 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [286ab1ba-5fdf-4af0-984d-ebe142f89bf8] +peer1.org2.example.com | [491 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [298 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [4a6 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [441 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [50b 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [4a7 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [492 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]sending state message TRANSACTION +peer1.org1.example.com | [442 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [4a8 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message RESPONSE +peer0.org2.example.com | [50c 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 channel id: businesschannel chaincode id: name:"lscc" +peer1.org1.example.com | [443 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [515c59d0-5d16-45c6-9f06-8d0dec5e7780] +peer1.org2.example.com | [493 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Received message TRANSACTION from shim +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [4a9 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [50e 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org1.example.com | [444 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org2.example.com | [50f 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [4aa 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [445 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [515c59d0-5d16-45c6-9f06-8d0dec5e7780] +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [494 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [510 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95,syscc=true,proposal=0xc4219e8960,canname=escc:1.0.5 +peer1.org1.example.com | [446 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org1.example.com | [4ab 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message RESPONSE +peer1.org2.example.com | [495 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90f19dc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [447 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +peer0.org2.example.com | [511 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer0.org1.example.com | [4ac 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message PUT_STATE from shim +peer1.org2.example.com | [496 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [90f19dc7]Sending GET_STATE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org1.example.com | [448 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [4ad 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [512 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [497 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message GET_STATE from shim +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +peer0.org1.example.com | [4ae 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [449 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58fc552b]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [513 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [498 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [44a 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58fc552b]Move state message COMPLETED +peer0.org1.example.com | [4af 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]state is ready +peer0.org2.example.com | [514 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a616a3ec]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [499 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [90f19dc7]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [44b 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [58fc552b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4b0 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer0.org2.example.com | [515 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [49a 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4b1 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]enterBusyState trigger event RESPONSE +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer0.org2.example.com | [516 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer1.org2.example.com | [49b 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [90f19dc7] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org1.example.com | [44c 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58fc552b]send state message COMPLETED +peer0.org1.example.com | [4b2 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message RESPONSE +peer0.org2.example.com | [517 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a616a3ec]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [49c 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | RTCauNNt1A== +peer1.org1.example.com | [44d 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [58fc552b]Received message COMPLETED from shim +peer0.org2.example.com | [50d 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [4b3 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [44e 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [58fc552b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [49d 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [90f19dc7]Got state. Sending RESPONSE +peer0.org2.example.com | [518 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Move state message TRANSACTION +peer0.org1.example.com | [4b4 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [299 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [44f 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [58fc552b-90c0-4407-b4cb-84e7ef032a23]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [49e 01-12 22:57:19.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90f19dc7]handleGetState serial send RESPONSE +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [51a 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [450 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:58fc552b-90c0-4407-b4cb-84e7ef032a23 +peer0.org1.example.com | [4b5 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message RESPONSE +peer1.org2.example.com | [49f 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Received message RESPONSE from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [4a0 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [4b6 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message COMPLETED from shim +peer1.org1.example.com | [451 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [51b 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [4a1 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90f19dc7]before send +peer0.org1.example.com | [4b7 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [452 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [843a61ee-3b1d-454c-b182-0c2eab22d479] +peer0.org2.example.com | [519 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org2.example.com | [4a2 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90f19dc7]after send +peer0.org1.example.com | [4b8 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e]HandleMessage- COMPLETED. Notify +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [453 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [51c 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]sending state message TRANSACTION +peer1.org2.example.com | [4a4 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [90f19dc7]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [4b9 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [51d 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [454 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [4a3 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [90f19dc7]GetState received payload RESPONSE +peer0.org1.example.com | [4ba 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org2.example.com | [4a5 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [51e 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Received message TRANSACTION from shim +peer1.org1.example.com | [455 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420246180), Data:(*common.BlockData)(0xc42210cea0), Metadata:(*common.BlockMetadata)(0xc42210cee0)}, doMVCCValidation=true +peer1.org2.example.com | [4a6 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Move state message COMPLETED +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org1.example.com | [4bb 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [520 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a616a3ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [456 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org2.example.com | [4a7 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4bc 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [521 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a616a3ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [457 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer1.org2.example.com | [4a8 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]send state message COMPLETED +peer0.org1.example.com | [4bd 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [bb06bab2-bcfb-43e7-9134-99ff3475f9a2] +peer0.org2.example.com | [51f 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer1.org2.example.com | [4a9 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message COMPLETED from shim +peer0.org1.example.com | [4be 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org1.example.com | [458 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] marked as valid by state validator +peer0.org1.example.com | [4bf 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel chaincode id: name:"lscc" +peer0.org2.example.com | [522 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [4aa 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [459 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org1.example.com | [4c0 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org2.example.com | [523 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [4ab 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [4c1 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel version: 1.0.5 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [4c2 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e,syscc=true,proposal=0xc421bd69b0,canname=escc:1.0.5 +orderer.example.com | [29a 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [524 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [4ac 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 +peer1.org1.example.com | txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 +peer0.org2.example.com | [525 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]Move state message COMPLETED +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [4c3 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer1.org1.example.com | ] +peer1.org2.example.com | [4ad 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [526 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a616a3ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4c4 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [45a 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to index +peer1.org2.example.com | [4ae 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org2.example.com | [527 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a616a3ec]send state message COMPLETED +peer1.org1.example.com | [45b 01-12 22:57:05.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx number:[0] ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to blockNumTranNum index +peer0.org1.example.com | [4c5 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [4af 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 channel id: businesschannel version: 1.0 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [528 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a616a3ec]Received message COMPLETED from shim +peer0.org1.example.com | [4c6 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4b0 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685,syscc=false,proposal=0xc420314870,canname=mycc:1.0 +peer1.org1.example.com | [45c 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44646], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org2.example.com | [529 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [4c7 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [4b1 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685,syscc=true,proposal=0xc420314870,canname=lscc:1.0.5 +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org1.example.com | [45d 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer0.org1.example.com | [4c8 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [52a 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95]HandleMessage- COMPLETED. Notify +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [4c9 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [45e 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [4b2 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org2.example.com | [52b 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [4ca 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message TRANSACTION +peer1.org1.example.com | [45f 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [52c 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4b3 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [4cb 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [52d 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [4cc 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org1.example.com | [460 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +peer1.org2.example.com | [4b4 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org1.example.com | [4cd 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message TRANSACTION +peer0.org2.example.com | [52e 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer1.org1.example.com | [461 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org2.example.com | [4b5 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [4ce 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message TRANSACTION from shim +peer0.org2.example.com | [52f 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [286ab1ba-5fdf-4af0-984d-ebe142f89bf8] +peer0.org1.example.com | [4cf 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [462 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org2.example.com | [4b6 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [4d0 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a1c14bb5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [463 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [530 01-12 22:57:19.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [4b7 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [4d1 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer1.org2.example.com | [4b8 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [464 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer0.org2.example.com | [531 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [4d2 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [4b9 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Move state message TRANSACTION +peer1.org2.example.com | [4ba 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer0.org2.example.com | [532 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [465 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org1.example.com | [4d3 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [466 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [533 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer1.org2.example.com | [4bb 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4d4 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Move state message COMPLETED +peer1.org1.example.com | [467 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer0.org2.example.com | [534 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [4d5 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [4bc 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]sending state message TRANSACTION +peer1.org1.example.com | [468 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org1.example.com | [4d6 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]send state message COMPLETED +peer0.org2.example.com | [535 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer1.org2.example.com | [4bd 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Received message TRANSACTION from shim +orderer.example.com | [29b 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [4d7 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message COMPLETED from shim +peer0.org2.example.com | [536 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer1.org1.example.com | [469 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [4be 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [29c 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [4d8 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [537 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [4bf 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90f19dc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [46a 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [4d9 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [538 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [29d 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [4da 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer1.org2.example.com | [4c0 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [90f19dc7]Sending GET_STATE +peer1.org1.example.com | [46b 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [539 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [29e 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [4db 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4c1 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message GET_STATE from shim +orderer.example.com | [29f 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [46c 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [4dc 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [53a 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [4c2 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [4dd 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [53b 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [2a0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [46d 01-12 22:57:05.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [4de 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bb06bab2-bcfb-43e7-9134-99ff3475f9a2] +peer0.org2.example.com | [53c 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [4c3 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [90f19dc7]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [4df 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [46e 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | [2a1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org1.example.com | [4e0 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org2.example.com | [53d 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [46f 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [4e1 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer1.org2.example.com | [4c4 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [2a2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [470 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [53e 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [4e2 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [471 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42205a330 +peer1.org2.example.com | [4c5 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [90f19dc7] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | [2a3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org2.example.com | [53f 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c88210 +peer0.org1.example.com | [4e3 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [4c6 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [2a4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [4e4 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [472 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +peer0.org1.example.com | [4e5 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a2c870 +peer0.org2.example.com | [540 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +orderer.example.com | [2a5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org1.example.com | [473 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [4c7 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [90f19dc7]Got state. Sending RESPONSE +peer0.org1.example.com | [4e6 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer0.org2.example.com | [541 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [474 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [4c8 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90f19dc7]handleGetState serial send RESPONSE +orderer.example.com | [2a6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [4e7 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [4c9 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Received message RESPONSE from shim +peer0.org2.example.com | [542 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [475 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org1.example.com | [4e8 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [2a7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [543 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer1.org2.example.com | [4ca 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [4e9 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer1.org1.example.com | [476 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [544 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [2a8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [4ea 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [4cb 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90f19dc7]before send +peer1.org1.example.com | [477 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [545 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [4cc 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90f19dc7]after send +orderer.example.com | [2a9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer1.org2.example.com | [4cd 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [90f19dc7]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [4eb 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [546 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420378000, header channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +peer1.org1.example.com | [478 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421eb3500, header channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +peer1.org2.example.com | [4ce 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [90f19dc7]GetState received payload RESPONSE +orderer.example.com | [2aa 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org2.example.com | [547 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [479 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [4ec 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42170c000, header channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +peer1.org2.example.com | [4cf 01-12 22:57:19.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Transaction completed. Sending COMPLETED +orderer.example.com | [2ab 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org2.example.com | [548 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [4ed 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [47a 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [4d0 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Move state message COMPLETED +orderer.example.com | [2ac 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [4ee 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [549 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [4d1 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [47b 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | [2ad 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [4ef 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [4d2 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]send state message COMPLETED +peer1.org1.example.com | [47c 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [54a 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [4d3 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message COMPLETED from shim +orderer.example.com | [2ae 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [4f0 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [54b 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] +peer1.org2.example.com | [4d4 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [2af 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer1.org1.example.com | [47d 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] +peer1.org2.example.com | [4d5 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [4f1 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +peer0.org2.example.com | [54c 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [4d6 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 +peer1.org1.example.com | [47e 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [2b0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [4d7 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [54d 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [47f 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [4f2 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [4d8 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +orderer.example.com | [2b1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org2.example.com | [54e 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [96ce685f-fe8e-4c71-8b90-0209c425e1a5] +peer1.org2.example.com | [4d9 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [480 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [934ebce4-2db3-40ad-baf3-1df3c36f30f3] +peer0.org1.example.com | [4f3 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [4da 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | [2b2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org1.example.com | [481 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=ab1ea6b8-23d8-4b65-84b6-48cd3604c4d0,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [4db 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [4f4 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [67c10f47-93ec-4c2e-96fa-b831d614e3ef] +orderer.example.com | [2b3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +peer1.org2.example.com | [4dc 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [54f 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=53b1762c-7e50-4880-8f80-73eae0d21965,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org1.example.com | [482 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 chaindID businesschannel +peer0.org1.example.com | [4f5 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=1bab3624-ee06-4437-b505-29bcd9670a2e,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [4dd 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [550 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 chaindID businesschannel +orderer.example.com | [2b4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer1.org1.example.com | [483 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org1.example.com | [4f6 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e chaindID businesschannel +orderer.example.com | [2b5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org2.example.com | [551 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [4f7 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer1.org1.example.com | [484 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [2b6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [552 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [4f8 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [485 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [553 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | [2b7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [4f9 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | 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 | [486 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ab1ea6b8]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4de 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock +peer0.org2.example.com | [554 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53b1762c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [4fa 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1bab3624]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4df 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock +peer0.org2.example.com | [555 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [487 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [4fb 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [4e0 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 +peer0.org2.example.com | [556 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53b1762c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [2b8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer1.org1.example.com | [488 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ab1ea6b8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [4fc 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1bab3624]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [4e1 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) +orderer.example.com | [2b9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer1.org1.example.com | [489 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab1ea6b8]Move state message TRANSACTION +peer0.org1.example.com | [4fd 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1bab3624]Move state message TRANSACTION +peer1.org2.example.com | [4e2 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) +peer0.org2.example.com | [557 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53b1762c]Move state message TRANSACTION +orderer.example.com | [2ba 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org1.example.com | [48a 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab1ea6b8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [558 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53b1762c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [4fe 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1bab3624]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [4e3 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) +peer1.org1.example.com | [48b 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [559 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [2bb 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [4e4 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 +peer0.org1.example.com | [4ff 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [48c 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab1ea6b8]sending state message TRANSACTION +peer0.org2.example.com | [55a 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53b1762c]sending state message TRANSACTION +orderer.example.com | [2bc 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [500 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1bab3624]sending state message TRANSACTION +peer1.org2.example.com | [4e5 01-12 22:57:19.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +peer1.org1.example.com | [48d 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab1ea6b8]Received message TRANSACTION from shim +peer0.org2.example.com | [55b 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53b1762c]Received message TRANSACTION from shim +orderer.example.com | [2bd 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer1.org2.example.com | [4e6 01-12 22:57:19.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 +peer0.org1.example.com | [501 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]Received message TRANSACTION from shim +peer0.org2.example.com | [55c 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53b1762c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [2be 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer1.org2.example.com | [4e7 01-12 22:57:19.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 | [502 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1bab3624]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [55d 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53b1762c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [2bf 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer1.org1.example.com | [48e 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab1ea6b8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [55e 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [503 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1bab3624]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [4e8 01-12 22:57:19.65 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +orderer.example.com | [2c0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer1.org1.example.com | [48f 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ab1ea6b8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [55f 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [2c1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer1.org1.example.com | [490 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer0.org1.example.com | [504 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [560 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [2c2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org2.example.com | [561 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [2c3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org2.example.com | ADD binpackage.tar /usr/local/bin +peer1.org1.example.com | [491 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [505 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [562 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [2c4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer1.org1.example.com | [492 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +peer0.org1.example.com | [506 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [563 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [2c5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer0.org2.example.com | [564 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [7a9b79d8-ecc2-4181-a1e1-af52bbd83057] +peer1.org1.example.com | [493 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [2c6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [507 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [565 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [494 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +orderer.example.com | [2c7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer0.org1.example.com | [508 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [495 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [2c8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer0.org2.example.com | [566 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7a9b79d8-ecc2-4181-a1e1-af52bbd83057] +peer0.org1.example.com | [509 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [496 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [622b76f0-576b-48fa-adae-02e540a5a13b] +orderer.example.com | [2c9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer0.org2.example.com | [567 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | [50a 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [deef3d2b-4546-4bf8-9588-a049316f2d6c] +peer1.org1.example.com | [497 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [2ca 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer0.org2.example.com | [568 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +peer1.org1.example.com | [498 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [622b76f0-576b-48fa-adae-02e540a5a13b] +orderer.example.com | [2cb 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org2.example.com | [569 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer1.org2.example.com | org.hyperledger.fabric.version="1.0.5" \ +peer1.org1.example.com | [499 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +orderer.example.com | [2cc 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org2.example.com | [56a 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53b1762c]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [49a 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +peer0.org1.example.com | [50b 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [2cd 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer0.org2.example.com | [56b 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53b1762c]Move state message COMPLETED +peer1.org1.example.com | [49b 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +orderer.example.com | [2ce 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +peer0.org2.example.com | [56c 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53b1762c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [49c 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab1ea6b8]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [50c 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [deef3d2b-4546-4bf8-9588-a049316f2d6c] +peer0.org2.example.com | [56d 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53b1762c]send state message COMPLETED +peer1.org1.example.com | [49d 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab1ea6b8]Move state message COMPLETED +peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +orderer.example.com | [2cf 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [50d 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer0.org2.example.com | [56e 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53b1762c]Received message COMPLETED from shim +peer1.org1.example.com | [49e 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab1ea6b8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +orderer.example.com | [2d0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer1.org1.example.com | [49f 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab1ea6b8]send state message COMPLETED +peer1.org1.example.com | [4a0 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab1ea6b8]Received message COMPLETED from shim +peer1.org1.example.com | [4a1 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab1ea6b8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4a2 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab1ea6b8-23d8-4b65-84b6-48cd3604c4d0]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [50e 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +peer1.org2.example.com | [4e9 01-12 22:57:19.65 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +peer0.org2.example.com | [56f 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53b1762c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [2d1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer1.org1.example.com | [4a3 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ab1ea6b8-23d8-4b65-84b6-48cd3604c4d0 +peer0.org1.example.com | [50f 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [4ea 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer1.org1.example.com | [4a4 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [510 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [511 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]Move state message COMPLETED +orderer.example.com | [2d2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [2d3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | [2d4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org1.example.com | [4a5 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95, error Chaincode mycc is already instantiated +peer1.org2.example.com | [4eb 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +orderer.example.com | [2d5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +peer0.org2.example.com | [570 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53b1762c-7e50-4880-8f80-73eae0d21965]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [512 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1bab3624]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [4a6 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [934ebce4-2db3-40ad-baf3-1df3c36f30f3] +peer0.org1.example.com | [513 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]send state message COMPLETED +peer1.org2.example.com | [4ec 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [571 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53b1762c-7e50-4880-8f80-73eae0d21965 +peer1.org1.example.com | [4a7 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 returned error Chaincode mycc is already instantiated +peer0.org1.example.com | [514 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1bab3624]Received message COMPLETED from shim +peer1.org2.example.com | [4ed 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | [2d6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org1.example.com | [4a8 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [572 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [573 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95, error Chaincode mycc is already instantiated +peer1.org2.example.com | [4ee 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | [2d7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +peer1.org1.example.com | [4a9 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [574 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [96ce685f-fe8e-4c71-8b90-0209c425e1a5] +peer0.org1.example.com | [515 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1bab3624]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [4ef 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4220ddfb0 +orderer.example.com | [2d8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [4aa 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215ac680), Data:(*common.BlockData)(0xc42163f120), Metadata:(*common.BlockMetadata)(0xc42163f160)}, doMVCCValidation=true +peer0.org2.example.com | [575 01-12 22:57:21.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 returned error Chaincode mycc is already instantiated +peer0.org1.example.com | [516 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1bab3624-ee06-4437-b505-29bcd9670a2e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [4f0 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +orderer.example.com | [2d9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [4ab 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [517 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1bab3624-ee06-4437-b505-29bcd9670a2e +peer0.org2.example.com | [576 01-12 22:57:21.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [2da 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [4ac 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org2.example.com | [4f1 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [577 01-12 22:57:21.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [518 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [2db 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [4ad 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +peer1.org2.example.com | [4f2 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [578 01-12 22:57:21.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42208a5c0), Data:(*common.BlockData)(0xc421c90480), Metadata:(*common.BlockMetadata)(0xc421c904c0)}, doMVCCValidation=true +peer1.org1.example.com | txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 +orderer.example.com | [2dc 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [519 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [67c10f47-93ec-4c2e-96fa-b831d614e3ef] +peer1.org2.example.com | [4f3 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org2.example.com | [579 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [51a 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [2dd 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | ] +peer1.org2.example.com | [4f4 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [57a 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer0.org1.example.com | [51b 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [2de 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [4ae 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to index +peer1.org2.example.com | [4f5 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [57b 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +peer0.org1.example.com | [51c 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422420880), Data:(*common.BlockData)(0xc4219de5c0), Metadata:(*common.BlockMetadata)(0xc4219de600)}, doMVCCValidation=true +peer1.org1.example.com | [4af 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx number:[0] ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to blockNumTranNum index +orderer.example.com | [2df 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [4f6 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ca2a80, header channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +peer0.org2.example.com | txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 +peer0.org1.example.com | [51d 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [4b0 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49854], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org2.example.com | [4f7 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | [2e0 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | ] +peer0.org1.example.com | [51e 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [4b1 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer1.org2.example.com | [4f8 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | [2e1 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [57c 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to index +peer1.org1.example.com | [4b2 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [57d 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx number:[0] ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to blockNumTranNum index +peer1.org2.example.com | [4f9 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [51f 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] marked as valid by state validator +orderer.example.com | [2e2 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [4b3 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [4fa 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [57e 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49854], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org1.example.com | [520 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +orderer.example.com | [2e3 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [57f 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer1.org1.example.com | [4b4 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [4fb 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] +peer0.org1.example.com | txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 +peer0.org2.example.com | [580 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | [2e4 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [4b5 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | ] +peer0.org2.example.com | [581 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [4fc 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [2e5 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer1.org1.example.com | [4b6 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org2.example.com | [582 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [4fd 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [521 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to index +orderer.example.com | [2e6 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017dd40 gate 1515797797893333894 evaluation starts +peer1.org1.example.com | [4b7 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org1.example.com | [522 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx number:[0] ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to blockNumTranNum index +peer1.org2.example.com | [4fe 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6c2cfda8-e023-4af3-86da-ddc2bdb41864] +peer0.org2.example.com | [583 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +orderer.example.com | [2e7 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [523 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44646], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [4b8 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [4ff 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=880ef1f7-3e04-44d3-9393-f4ad5a41bd82,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org2.example.com | [584 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [524 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer1.org1.example.com | [4b9 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +orderer.example.com | [2e8 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org2.example.com | [585 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org1.example.com | [525 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [4ba 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org2.example.com | [500 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 chaindID businesschannel +orderer.example.com | [2e9 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [586 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [4bb 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [526 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [501 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org2.example.com | [587 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +peer1.org1.example.com | [4bc 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [527 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +peer1.org2.example.com | [502 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [4bd 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [588 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [528 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org2.example.com | [589 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [503 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org1.example.com | [4be 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [58a 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [504 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [880ef1f7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [529 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer1.org1.example.com | [4bf 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [58b 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4c0 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [58c 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [52a 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [505 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [4c1 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421edb4a0 +peer0.org2.example.com | [58d 01-12 22:57:21.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [52b 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [506 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [880ef1f7]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [58e 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [4c2 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [52c 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [507 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [880ef1f7]Move state message TRANSACTION +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [52d 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [4c3 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [58f 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [508 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [880ef1f7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org1.example.com | [4c4 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org2.example.com | [590 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [509 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org1.example.com | [4c5 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [52e 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +peer0.org2.example.com | [591 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4223408d0 +peer1.org2.example.com | [50a 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [880ef1f7]sending state message TRANSACTION +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer1.org1.example.com | [4c6 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [592 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer0.org1.example.com | [52f 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer1.org2.example.com | [50b 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [880ef1f7]Received message TRANSACTION from shim +peer0.org2.example.com | [593 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org1.example.com | [4c7 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220e2ff0, header 0xc421edb4d0 +peer0.org1.example.com | [530 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [50c 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [880ef1f7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org2.example.com | [594 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [4c8 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org1.example.com | [531 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [50d 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [880ef1f7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [595 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org1.example.com | [532 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4c9 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a +orderer.example.com | [2ea 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org2.example.com | [50e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [4ca 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a] +peer0.org2.example.com | [596 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [533 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [2eb 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 principal matched by identity 0 +peer1.org2.example.com | [50f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [4cb 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [534 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [2ec 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +peer0.org2.example.com | [597 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [4cc 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8cf7da93-c407-4de6-b309-1cdc2e2bbc46] +peer1.org2.example.com | [510 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [535 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +orderer.example.com | 00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +peer0.org2.example.com | [598 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42328a000, header channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer1.org1.example.com | [4cd 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a channel id: businesschannel +peer1.org2.example.com | [511 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [2ed 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +peer0.org1.example.com | [536 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer0.org2.example.com | [599 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [4ce 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a,syscc=true,proposal=0xc4220e2ff0,canname=lscc:1.0.5 +peer1.org2.example.com | [512 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [537 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | 00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +peer1.org1.example.com | [4cf 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org2.example.com | [59a 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [513 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | 00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +peer0.org1.example.com | [538 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [4d0 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +peer0.org2.example.com | [59b 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [514 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [c68bc805-098b-4a1a-90c2-8d64e3f5db52] +peer0.org1.example.com | [539 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [4d1 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [59c 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 00000040 88 95 6d d3 74 2c 02 |..m.t,.| +peer1.org2.example.com | [515 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [53a 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42195aa80 +peer1.org1.example.com | [4d2 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [2ee 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [516 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [c68bc805-098b-4a1a-90c2-8d64e3f5db52] +peer0.org2.example.com | [59d 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +peer0.org1.example.com | [53b 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +orderer.example.com | [2ef 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017dd40 gate 1515797797893333894 evaluation succeeds +peer1.org2.example.com | [517 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +peer1.org1.example.com | [4d3 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [59e 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [53c 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [518 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +orderer.example.com | [2f0 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [4d4 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [53d 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [59f 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [48ef4d55-85a8-446e-a3f3-f5d6e4625e8c] +peer1.org1.example.com | [4d5 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [519 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer0.org2.example.com | [5a0 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [4d6 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Move state message TRANSACTION +peer0.org1.example.com | [53e 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +orderer.example.com | [2f1 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [51a 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [880ef1f7]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5a1 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [48ef4d55-85a8-446e-a3f3-f5d6e4625e8c] +peer1.org1.example.com | [4d7 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [2f2 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [51b 01-12 22:57:21.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [880ef1f7]Move state message COMPLETED +peer0.org2.example.com | [5a2 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [4d8 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [53f 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [4d9 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]sending state message TRANSACTION +orderer.example.com | [2f3 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [5a3 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [764c78a0-8334-4edb-87e4-b5f40e12d24c] +peer0.org1.example.com | [540 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [51c 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [880ef1f7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [4da 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Received message TRANSACTION from shim +peer0.org1.example.com | [541 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421e9f500, header channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +orderer.example.com | [2f4 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [51d 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [880ef1f7]send state message COMPLETED +peer1.org1.example.com | [4db 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [542 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [5a4 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=12e1d5c1-5ccb-4930-8154-d1a6477f63be,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [543 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [4dc 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f277ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5a5 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 chaindID businesschannel +orderer.example.com | [2f5 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [544 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [4dd 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43f277ee]Sending GET_STATE +peer1.org2.example.com | [51e 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [880ef1f7]Received message COMPLETED from shim +peer0.org1.example.com | [545 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [4de 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message GET_STATE from shim +orderer.example.com | [2f6 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [5a6 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org1.example.com | [546 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] +peer1.org1.example.com | [4df 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [51f 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [880ef1f7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [2f7 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [547 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [4e0 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [43f277ee]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [5a7 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [548 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [4e1 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [2f8 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [520 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [880ef1f7-3e04-44d3-9393-f4ad5a41bd82]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [549 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e0b71488-4657-4815-8f6c-559247bcc089] +peer1.org1.example.com | [4e2 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43f277ee] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org2.example.com | [5a8 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | [2f9 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [4e3 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [54a 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=b7a9084e-0fc9-4844-9493-9db367b1b2b2,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [521 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:880ef1f7-3e04-44d3-9393-f4ad5a41bd82 +peer1.org1.example.com | [4e4 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43f277ee]Got state. Sending RESPONSE +peer0.org1.example.com | [54b 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 chaindID businesschannel +orderer.example.com | [2fa 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [522 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [4e5 01-12 22:57:36.23 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [43f277ee]handleGetState serial send RESPONSE +peer0.org1.example.com | [54c 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org2.example.com | [5a9 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [12e1d5c1]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [2fb 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [523 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95, error Chaincode mycc is already instantiated +peer1.org1.example.com | [4e6 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Received message RESPONSE from shim +peer0.org1.example.com | [54d 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5aa 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [4e7 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [2fc 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [54e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org1.example.com | [4e8 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43f277ee]before send +peer1.org2.example.com | [524 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6c2cfda8-e023-4af3-86da-ddc2bdb41864] +peer0.org1.example.com | [54f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b7a9084e]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [5ab 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [12e1d5c1]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [4e9 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43f277ee]after send +peer0.org1.example.com | [550 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [525 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 returned error Chaincode mycc is already instantiated +orderer.example.com | [2fd 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [4eb 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [43f277ee]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [5ac 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [12e1d5c1]Move state message TRANSACTION +peer0.org1.example.com | [551 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b7a9084e]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [4ea 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43f277ee]GetState received payload RESPONSE +peer1.org2.example.com | [526 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [2fe 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [552 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b7a9084e]Move state message TRANSACTION +peer1.org1.example.com | [4ec 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5ad 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [12e1d5c1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [553 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b7a9084e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [4ed 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Move state message COMPLETED +peer1.org2.example.com | [527 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [2ff 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [554 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5ae 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [4ee 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [555 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b7a9084e]sending state message TRANSACTION +peer1.org2.example.com | [528 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421bdc600), Data:(*common.BlockData)(0xc421550ea0), Metadata:(*common.BlockMetadata)(0xc421550ee0)}, doMVCCValidation=true +peer1.org1.example.com | [4ef 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]send state message COMPLETED +orderer.example.com | [300 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [556 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]Received message TRANSACTION from shim +peer0.org2.example.com | [5af 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [12e1d5c1]sending state message TRANSACTION +peer1.org1.example.com | [4f0 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message COMPLETED from shim +orderer.example.com | [301 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [529 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [557 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b7a9084e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [4f1 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4f2 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5b0 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12e1d5c1]Received message TRANSACTION from shim +orderer.example.com | [302 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [558 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b7a9084e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [52a 01-12 22:57:21.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org1.example.com | [4f3 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a +orderer.example.com | [303 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org2.example.com | [5b1 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [12e1d5c1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [4f4 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [52b 01-12 22:57:21.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +peer0.org1.example.com | [559 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [4f5 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org1.example.com | [55a 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 +peer0.org2.example.com | [5b2 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [12e1d5c1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [304 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [4f6 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a channel id: businesschannel version: 1.0 +peer1.org2.example.com | ] +peer0.org1.example.com | [55b 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [5b3 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [4f7 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a,syscc=false,proposal=0xc4220e2ff0,canname=mycc:1.0 +orderer.example.com | [305 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [55c 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [52c 01-12 22:57:21.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to index +peer0.org2.example.com | [5b4 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [4f8 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a,syscc=true,proposal=0xc4220e2ff0,canname=lscc:1.0.5 +orderer.example.com | [306 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [5b5 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [55d 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [52d 01-12 22:57:21.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx number:[0] ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to blockNumTranNum index +peer1.org1.example.com | [4f9 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org2.example.com | [52e 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49854], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [307 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [5b6 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12e1d5c1]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [55e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [4fa 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [308 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [52f 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +orderer.example.com | [309 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +peer0.org2.example.com | [5b7 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12e1d5c1]Move state message COMPLETED +peer1.org1.example.com | [4fb 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org1.example.com | [55f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [7b158586-559d-4ae0-a5bd-b8d490962418] +orderer.example.com | [30a 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [30b 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [30c 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [30d 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [560 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [530 01-12 22:57:21.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [5b8 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [12e1d5c1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [4fc 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [30e 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [561 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7b158586-559d-4ae0-a5bd-b8d490962418] +peer0.org2.example.com | [5b9 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12e1d5c1]send state message COMPLETED +peer1.org2.example.com | [531 01-12 22:57:35.24 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab +orderer.example.com | [30f 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [4fd 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [562 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +orderer.example.com | [310 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [5ba 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [12e1d5c1]Received message COMPLETED from shim +peer1.org1.example.com | [4fe 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [532 01-12 22:57:35.24 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | [311 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [5bb 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [12e1d5c1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4ff 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [312 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer1.org2.example.com | [533 01-12 22:57:35.24 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 +peer1.org2.example.com | [534 01-12 22:57:35.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab +peer0.org1.example.com | [563 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +peer0.org2.example.com | [5bc 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [12e1d5c1-5ccb-4930-8154-d1a6477f63be]HandleMessage- COMPLETED. Notify +orderer.example.com | [313 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer1.org1.example.com | [500 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Move state message TRANSACTION +peer1.org2.example.com | [535 01-12 22:57:35.81 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 +orderer.example.com | [314 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [564 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +peer0.org2.example.com | [5bd 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:12e1d5c1-5ccb-4930-8154-d1a6477f63be +orderer.example.com | [315 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org1.example.com | [565 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [501 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [5be 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [536 01-12 22:57:35.81 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) +orderer.example.com | [316 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [502 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [566 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]Move state message COMPLETED +peer1.org2.example.com | [537 01-12 22:57:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [5bf 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [764c78a0-8334-4edb-87e4-b5f40e12d24c] +peer1.org1.example.com | [503 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]sending state message TRANSACTION +peer0.org1.example.com | [567 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b7a9084e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [538 01-12 22:57:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | [317 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [5c0 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [539 01-12 22:57:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | [318 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [568 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]send state message COMPLETED +peer0.org2.example.com | [5c1 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [319 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer1.org1.example.com | [504 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Received message TRANSACTION from shim +peer0.org1.example.com | [569 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b7a9084e]Received message COMPLETED from shim +peer1.org2.example.com | [53a 01-12 22:57:35.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [5c2 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4222b8e00), Data:(*common.BlockData)(0xc42327eea0), Metadata:(*common.BlockMetadata)(0xc42327eee0)}, doMVCCValidation=true +orderer.example.com | [31a 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org1.example.com | [505 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [56a 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b7a9084e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [5c3 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | [31b 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [53b 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +peer1.org1.example.com | [506 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f277ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5c4 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [56b 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b7a9084e-0fc9-4844-9493-9db367b1b2b2]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [53c 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +orderer.example.com | [31c 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +peer1.org1.example.com | [507 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43f277ee]Sending GET_STATE +peer0.org2.example.com | [5c5 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org1.example.com | [56c 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b7a9084e-0fc9-4844-9493-9db367b1b2b2 +peer1.org2.example.com | [53d 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [508 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message GET_STATE from shim +orderer.example.com | [31d 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +peer0.org2.example.com | [5c6 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org1.example.com | [56d 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [509 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [53e 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +orderer.example.com | [31e 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +peer0.org2.example.com | [5c7 01-12 22:57:38.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] marked as valid by state validator +peer0.org1.example.com | [56e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95, error Chaincode mycc is already instantiated +orderer.example.com | [31f 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [53f 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [50a 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [43f277ee]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [5c8 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +orderer.example.com | [320 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [56f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e0b71488-4657-4815-8f6c-559247bcc089] +peer1.org2.example.com | [540 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [321 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [50b 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 +peer0.org1.example.com | [570 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 returned error Chaincode mycc is already instantiated +peer1.org2.example.com | [541 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [322 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | ] +peer1.org1.example.com | [50c 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43f277ee] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [542 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Move state message READY +peer0.org1.example.com | [571 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [5c9 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to index +orderer.example.com | [323 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [543 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [50d 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [572 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [5ca 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx number:[0] ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to blockNumTranNum index +peer1.org2.example.com | [544 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [90f19dc7]Entered state ready +orderer.example.com | [324 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [573 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42226f540), Data:(*common.BlockData)(0xc421f477e0), Metadata:(*common.BlockMetadata)(0xc421f47820)}, doMVCCValidation=true +peer1.org1.example.com | [50e 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43f277ee]Got state. Sending RESPONSE +peer1.org2.example.com | [545 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 +peer0.org2.example.com | [5cb 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54521], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [325 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org2.example.com | [546 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]sending state message READY +peer1.org1.example.com | [50f 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [43f277ee]handleGetState serial send RESPONSE +peer0.org1.example.com | [574 01-12 22:57:21.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [547 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [5cc 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +orderer.example.com | [326 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer1.org2.example.com | [548 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [575 01-12 22:57:21.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org1.example.com | [510 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Received message RESPONSE from shim +peer0.org2.example.com | [5cd 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [549 01-12 22:57:35.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [327 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [511 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [5ce 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [54a 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org1.example.com | [576 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +orderer.example.com | [328 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [5cf 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [512 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43f277ee]before send +peer1.org2.example.com | [54b 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [5d0 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 +peer1.org2.example.com | [54c 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [329 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [513 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43f277ee]after send +peer1.org2.example.com | [54d 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | ] +peer1.org2.example.com | [54e 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [32a 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [54f 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Move state message TRANSACTION +peer1.org1.example.com | [515 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [43f277ee]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [5d1 01-12 22:57:38.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [550 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [32b 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [514 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43f277ee]GetState received payload RESPONSE +peer0.org1.example.com | [577 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to index +peer0.org2.example.com | [5d2 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [551 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [32c 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [578 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx number:[0] ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to blockNumTranNum index +peer0.org2.example.com | [5d3 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [552 01-12 22:57:35.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]sending state message TRANSACTION +peer1.org1.example.com | [516 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [553 01-12 22:57:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message GET_STATE from shim +peer0.org2.example.com | [5d4 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [32d 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [579 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49854], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org2.example.com | [554 01-12 22:57:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [517 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Move state message COMPLETED +peer0.org2.example.com | [5d5 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +orderer.example.com | [32e 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org2.example.com | [555 01-12 22:57:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [90f19dc7]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [5d6 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer0.org1.example.com | [57a 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer1.org1.example.com | [518 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [5d7 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [556 01-12 22:57:35.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [57b 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | [32f 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [5d8 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [557 01-12 22:57:35.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [90f19dc7] getting state for chaincode mycc, key a, channel businesschannel +peer1.org1.example.com | [519 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]send state message COMPLETED +peer0.org1.example.com | [57c 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [51a 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message COMPLETED from shim +peer0.org2.example.com | [5d9 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | [330 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [57d 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [51b 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [558 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [5da 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [5db 01-12 22:57:38.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [5dc 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [5dd 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d184e0 +peer0.org2.example.com | [5de 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [5df 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [5e0 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org2.example.com | [5e1 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5e2 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [5e3 01-12 22:57:52.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421f87a40, header 0xc421d18510 +peer0.org2.example.com | [5e4 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org2.example.com | [5e5 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c +peer0.org2.example.com | [5e6 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c] +peer0.org2.example.com | [5e7 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [5e8 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [07d49be9-d96e-43fe-8081-948d1326a305] +peer0.org2.example.com | [5e9 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c channel id: businesschannel +peer0.org2.example.com | [5ea 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c,syscc=true,proposal=0xc421f87a40,canname=lscc:1.0.5 +peer0.org2.example.com | [5eb 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org2.example.com | [5ec 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5ed 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [5ee 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cef2848]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [51c 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a]HandleMessage- COMPLETED. Notify +orderer.example.com | [331 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [57e 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [5ef 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [332 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [333 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [334 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [51d 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a +peer0.org1.example.com | [57f 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [51e 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5f0 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [559 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [90f19dc7]Got state. Sending RESPONSE +peer0.org1.example.com | [580 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org2.example.com | [55a 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90f19dc7]handleGetState serial send RESPONSE +peer1.org1.example.com | [51f 01-12 22:57:36.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +peer0.org2.example.com | [5f1 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cef2848]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [581 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [55b 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message COMPLETED from shim +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer1.org1.example.com | [520 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [582 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +peer0.org2.example.com | [5f2 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Move state message TRANSACTION +peer1.org2.example.com | [55c 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [521 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [5f3 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [583 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org2.example.com | [55d 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685]HandleMessage- COMPLETED. Notify +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [522 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [5f4 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [584 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [55e 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer0.org2.example.com | [5f5 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]sending state message TRANSACTION +peer1.org1.example.com | [523 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [585 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer1.org2.example.com | [55f 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [524 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [5f6 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Received message TRANSACTION from shim +peer0.org1.example.com | [586 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org2.example.com | [560 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [5f7 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cef2848]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 +peer0.org1.example.com | [587 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +peer0.org2.example.com | [5f8 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7cef2848]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [561 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [588 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer1.org2.example.com | [562 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [37ecf21e-93f7-4dc8-93c9-9c2d31791ab2] +peer0.org2.example.com | [5f9 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7cef2848]Sending GET_STATE +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [589 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [5fa 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Received message GET_STATE from shim +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer1.org2.example.com | [563 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [5fb 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [58a 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bc6cc0 +peer1.org2.example.com | [564 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 channel id: businesschannel chaincode id: name:"mycc" +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | [335 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [5fc 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7cef2848]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [58b 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [565 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [525 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock +peer0.org2.example.com | [5fd 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [5fe 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cef2848] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org1.example.com | [526 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock +peer1.org2.example.com | [566 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 channel id: businesschannel version: 1.0.5 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [58c 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [5ff 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [527 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [600 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cef2848]Got state. Sending RESPONSE +peer0.org1.example.com | [58d 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer1.org1.example.com | [528 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) +peer1.org2.example.com | [567 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685,syscc=true,proposal=0xc420314870,canname=escc:1.0.5 +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org2.example.com | [601 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7cef2848]handleGetState serial send RESPONSE +peer0.org1.example.com | [58e 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [529 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) +peer1.org2.example.com | [568 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [602 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Received message RESPONSE from shim +peer1.org1.example.com | [52a 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) +peer1.org2.example.com | [569 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [58f 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [52b 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 +peer0.org2.example.com | [603 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cef2848]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [52c 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +peer1.org2.example.com | [56a 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org1.example.com | [52d 01-12 22:57:36.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 +peer0.org1.example.com | [590 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421eb3b80, header 0xc421bc6cf0 +peer1.org2.example.com | [56b 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org2.example.com | [604 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7cef2848]before send +peer1.org1.example.com | [52e 01-12 22:57:36.25 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 | [591 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [52f 01-12 22:57:36.26 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer0.org2.example.com | [605 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7cef2848]after send +peer0.org1.example.com | [592 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +peer1.org2.example.com | [56c 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org1.example.com | [593 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org2.example.com | [607 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7cef2848]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [56d 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | [594 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer0.org2.example.com | [606 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7cef2848]GetState received payload RESPONSE +peer1.org1.example.com | org.hyperledger.fabric.version="1.0.5" \ +peer1.org2.example.com | [56e 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90f19dc7]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer0.org1.example.com | [595 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [edc46019-d047-4eb2-b056-2e277ce1ec79] +peer0.org2.example.com | [608 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Transaction completed. Sending COMPLETED +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 +peer1.org2.example.com | [56f 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Move state message TRANSACTION +peer0.org1.example.com | [596 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [609 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Move state message COMPLETED +peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [597 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251,syscc=true,proposal=0xc421eb3b80,canname=lscc:1.0.5 +peer1.org2.example.com | [570 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [60a 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cef2848]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [598 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org2.example.com | [571 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [336 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [60b 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]send state message COMPLETED +peer1.org1.example.com | [530 01-12 22:57:36.26 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [531 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [60c 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Received message COMPLETED from shim +peer1.org2.example.com | [572 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]sending state message TRANSACTION +peer1.org1.example.com | [532 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [599 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [533 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [573 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [60d 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [534 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218c0cf0 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [574 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Received message TRANSACTION from shim +peer0.org1.example.com | [59a 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer1.org1.example.com | [535 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer0.org2.example.com | [60e 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [575 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [536 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org2.example.com | [60f 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c +peer1.org1.example.com | [537 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [59b 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [538 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer1.org2.example.com | [576 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90f19dc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [610 01-12 22:57:52.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [59c 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [539 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [577 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [611 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [53a 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [59d 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [612 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c channel id: businesschannel version: 1.0 +peer1.org2.example.com | [578 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer1.org1.example.com | [53b 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42204b000, header channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer1.org2.example.com | [579 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [59e 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [613 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c,syscc=false,proposal=0xc421f87a40,canname=mycc:1.0 +peer1.org1.example.com | [53c 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [57a 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]Move state message COMPLETED +peer1.org1.example.com | [53d 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [59f 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message TRANSACTION +peer0.org2.example.com | [614 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer1.org2.example.com | [57b 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90f19dc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer1.org1.example.com | [53e 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [5a0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [57c 01-12 22:57:35.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90f19dc7]send state message COMPLETED +peer0.org2.example.com | [615 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org1.example.com | [53f 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [57d 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90f19dc7]Received message COMPLETED from shim +peer0.org2.example.com | [616 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org1.example.com | [5a1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [540 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org2.example.com | [617 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cef2848]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [57e 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [541 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [5a2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message TRANSACTION +peer0.org2.example.com | [618 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [542 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [63fd1d49-388e-4e1f-a27c-a449533c164d] +peer1.org2.example.com | [57f 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685]HandleMessage- COMPLETED. Notify +orderer.example.com | [337 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [5a3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Received message TRANSACTION from shim +peer0.org2.example.com | [619 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [338 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [543 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [581 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [61a 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cef2848]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [5a4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [339 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [582 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [61b 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Move state message TRANSACTION +peer0.org1.example.com | [5a5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee76e58d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [544 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [63fd1d49-388e-4e1f-a27c-a449533c164d] +peer1.org2.example.com | [583 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +orderer.example.com | [33a 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [61c 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [580 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90f19dc79cc7be2d0e4190bb4752fc863dbe9c9a0d8a3b7a324b707a29d8e685 +orderer.example.com | [33b 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [545 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [5a6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ee76e58d]Sending GET_STATE +peer0.org2.example.com | [61d 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [584 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [546 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [92fd2035-d145-4a21-8371-9a04da10ce77] +orderer.example.com | [33c 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [5a7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message GET_STATE from shim +peer0.org2.example.com | [61e 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]sending state message TRANSACTION +peer1.org1.example.com | [547 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=93730de5-6627-49a9-9ded-cdfe4e9f2040,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org2.example.com | [585 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [5a8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [548 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 chaindID businesschannel +peer1.org2.example.com | [586 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [61f 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Received message GET_STATE from shim +peer0.org1.example.com | [5a9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ee76e58d]Received GET_STATE, invoking get state from ledger +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [549 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org2.example.com | [620 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [5aa 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [587 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [37ecf21e-93f7-4dc8-93c9-9c2d31791ab2] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [621 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7cef2848]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [54a 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [5ab 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [588 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [622 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [54b 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [5ac 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [54c 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93730de5]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [623 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cef2848] getting state for chaincode mycc, key a, channel businesschannel +peer1.org2.example.com | [589 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org1.example.com | [5ad 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Got state. Sending RESPONSE +peer1.org1.example.com | [54d 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org2.example.com | [58a 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [624 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [54e 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [93730de5]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [58b 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +peer0.org1.example.com | [5ae 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]handleGetState serial send RESPONSE +peer0.org2.example.com | [625 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7cef2848]Got state. Sending RESPONSE +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +peer1.org2.example.com | [58c 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org1.example.com | [54f 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93730de5]Move state message TRANSACTION +peer0.org1.example.com | [5af 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Received message RESPONSE from shim +peer0.org2.example.com | [626 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7cef2848]handleGetState serial send RESPONSE +peer1.org2.example.com | [58d 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [550 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [93730de5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5b0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [627 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Received message COMPLETED from shim +peer1.org2.example.com | [58e 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [551 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer0.org2.example.com | [628 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5b1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee76e58d]before send +peer1.org2.example.com | [58f 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer0.org2.example.com | [629 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [552 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93730de5]sending state message TRANSACTION +peer1.org2.example.com | [590 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer1.org1.example.com | [553 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93730de5]Received message TRANSACTION from shim +peer0.org2.example.com | [62a 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c +peer1.org2.example.com | [591 01-12 22:57:35.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [5b2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee76e58d]after send +orderer.example.com | RTCauNNt1A== +peer1.org1.example.com | [554 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93730de5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [62b 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [5b3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ee76e58d]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [555 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [93730de5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [592 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org2.example.com | [62c 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [33d 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [593 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [62d 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [556 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [5b4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ee76e58d]GetState received payload RESPONSE +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [594 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [62e 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [07d49be9-d96e-43fe-8081-948d1326a305] +peer0.org1.example.com | [5b5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Transaction completed. Sending COMPLETED +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [595 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [557 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [62f 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [596 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [5b6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Move state message COMPLETED +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [597 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422767d70 +peer1.org1.example.com | [558 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [630 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c channel id: businesschannel chaincode id: name:"mycc" +peer0.org1.example.com | [5b7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org2.example.com | [598 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer0.org2.example.com | [631 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [559 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93730de5]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5b8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]send state message COMPLETED +peer1.org2.example.com | [599 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [632 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [5b9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message COMPLETED from shim +peer1.org1.example.com | [55a 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93730de5]Move state message COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [59a 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [633 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c,syscc=true,proposal=0xc421f87a40,canname=escc:1.0.5 +peer1.org1.example.com | [55b 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93730de5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5ba 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [59b 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer1.org1.example.com | [55c 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93730de5]send state message COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer0.org2.example.com | [634 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer0.org1.example.com | [5bb 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [59c 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer1.org1.example.com | [55d 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [93730de5]Received message COMPLETED from shim +peer0.org2.example.com | [635 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [59d 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [5bc 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org1.example.com | [55e 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [93730de5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [636 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer0.org1.example.com | [5bd 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [59e 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a64800, header channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer1.org1.example.com | [55f 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [93730de5-6627-49a9-9ded-cdfe4e9f2040]HandleMessage- COMPLETED. Notify +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org1.example.com | [5be 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [560 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:93730de5-6627-49a9-9ded-cdfe4e9f2040 +peer0.org2.example.com | [637 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cef2848]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [59f 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [5bf 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel version: 1.0 +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org1.example.com | [561 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [5c0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251,syscc=false,proposal=0xc421eb3b80,canname=mycc:1.0 +peer0.org2.example.com | [638 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer1.org2.example.com | [5a0 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [5c1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer1.org1.example.com | [562 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [92fd2035-d145-4a21-8371-9a04da10ce77] +peer1.org2.example.com | [5a1 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [639 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [5c2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [563 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [5a2 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [33e 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [5c3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org2.example.com | [63a 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7cef2848]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [564 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [5a3 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +peer0.org1.example.com | [5c4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [63b 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Move state message TRANSACTION +peer0.org1.example.com | [5c5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [565 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421fef5c0), Data:(*common.BlockData)(0xc4223ad8c0), Metadata:(*common.BlockMetadata)(0xc4223ad900)}, doMVCCValidation=true +peer1.org2.example.com | [5a4 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [5c6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [566 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [5a5 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [ddff8008-f199-4937-88f9-ad50243f8127] +peer0.org2.example.com | [63c 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5c7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [63d 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [567 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [5a6 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [5c8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message TRANSACTION +peer0.org2.example.com | [63e 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]sending state message TRANSACTION +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org1.example.com | [568 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org1.example.com | [5c9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5a7 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [ddff8008-f199-4937-88f9-ad50243f8127] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [63f 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Received message TRANSACTION from shim +peer1.org1.example.com | [569 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org1.example.com | [5ca 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5a8 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [640 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cef2848]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [5cb 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message TRANSACTION +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [56a 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] marked as valid by state validator +peer1.org2.example.com | [5a9 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [49270943-83de-43f0-89b6-f78e3eb914a4] +peer0.org2.example.com | [641 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7cef2848]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [5cc 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message GET_STATE from shim +peer1.org1.example.com | [56b 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer0.org2.example.com | [642 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [5aa 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=d030a18d-ee1a-4fa9-bf04-f0070bb13474,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [5cd 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer1.org2.example.com | [5ab 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 chaindID businesschannel +peer0.org1.example.com | [5ce 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ee76e58d]Received GET_STATE, invoking get state from ledger +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org1.example.com | ] +peer0.org2.example.com | [643 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [5cf 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer1.org2.example.com | [5ac 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer1.org1.example.com | [56c 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to index +peer0.org2.example.com | [644 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5d0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d] getting state for chaincode mycc, key a, channel businesschannel +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org1.example.com | [56d 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx number:[0] ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to blockNumTranNum index +peer1.org2.example.com | [5ad 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [5d1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [645 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]Move state message COMPLETED +peer1.org2.example.com | [5ae 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer1.org1.example.com | [56e 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54521], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org1.example.com | [5d2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Got state. Sending RESPONSE +peer0.org2.example.com | [646 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7cef2848]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5af 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d030a18d]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [56f 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [5d3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]handleGetState serial send RESPONSE +peer0.org2.example.com | [647 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7cef2848]send state message COMPLETED +peer1.org1.example.com | [570 01-12 22:57:38.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [5b0 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [33f 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [5d4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message GET_STATE from shim +peer1.org1.example.com | [571 01-12 22:57:51.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d +peer0.org2.example.com | [648 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7cef2848]Received message COMPLETED from shim +peer1.org2.example.com | [5b1 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d030a18d]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [340 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [572 01-12 22:57:51.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer0.org1.example.com | [5d5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [649 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5b2 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d030a18d]Move state message TRANSACTION +orderer.example.com | [341 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [64a 01-12 22:57:52.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [573 01-12 22:57:51.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 +orderer.example.com | [342 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [5d6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ee76e58d]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [64b 01-12 22:57:52.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7cef2848e240b9e6711f635b87370808c42cb2a4b0f72eaf769603bd4035108c +peer1.org2.example.com | [5b3 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d030a18d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [343 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [5d7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [574 01-12 22:57:51.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d +peer1.org2.example.com | [5b4 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [64c 01-12 22:57:52.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [344 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [575 01-12 22:57:52.02 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 +peer0.org1.example.com | [5d8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d] getting state for chaincode mycc, key b, channel businesschannel +peer0.org2.example.com | [64d 01-12 22:57:52.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [5b5 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d030a18d]sending state message TRANSACTION +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [5d9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org2.example.com | [64e 01-12 22:57:52.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [5b6 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d030a18d]Received message TRANSACTION from shim +peer1.org1.example.com | [576 01-12 22:57:52.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) +peer0.org1.example.com | [5da 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Got state. Sending RESPONSE +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [5b7 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d030a18d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [64f 01-12 22:57:52.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [07d49be9-d96e-43fe-8081-948d1326a305] +peer1.org1.example.com | [577 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [5db 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]handleGetState serial send RESPONSE +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [5b8 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d030a18d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [650 01-12 22:57:52.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [578 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +peer0.org1.example.com | [5dc 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message PUT_STATE from shim +peer1.org2.example.com | [5b9 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [651 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [579 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [5ba 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [652 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [5dd 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [57a 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [5bb 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [653 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [5de 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [57b 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | [5bc 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d030a18d]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5df 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]state is ready +peer1.org1.example.com | [57c 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +peer0.org2.example.com | [654 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423475230 +peer1.org2.example.com | [5bd 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d030a18d]Move state message COMPLETED +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +peer0.org1.example.com | [5e0 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [655 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +peer1.org2.example.com | [5be 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d030a18d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [57d 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [656 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [5e1 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [5bf 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d030a18d]send state message COMPLETED +peer0.org2.example.com | [657 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +peer1.org1.example.com | [57e 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +peer1.org2.example.com | [5c0 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d030a18d]Received message COMPLETED from shim +peer0.org1.example.com | [5e2 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message RESPONSE +peer0.org2.example.com | [658 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer1.org2.example.com | [5c1 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d030a18d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [57f 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +peer1.org2.example.com | [5c2 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d030a18d-ee1a-4fa9-bf04-f0070bb13474]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [659 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [5c3 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d030a18d-ee1a-4fa9-bf04-f0070bb13474 +peer1.org1.example.com | [580 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [5e3 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer0.org2.example.com | [65a 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [5c4 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [5e4 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [581 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [65b 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4220fc800, header channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +peer1.org2.example.com | [5c5 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [49270943-83de-43f0-89b6-f78e3eb914a4] +peer0.org2.example.com | [65c 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [582 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Move state message READY +orderer.example.com | ymzPpM2K +peer0.org1.example.com | [5e5 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message RESPONSE +peer1.org2.example.com | [5c6 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [65d 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [5c7 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [65e 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [5e6 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message PUT_STATE from shim +peer1.org2.example.com | [5c8 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421f65080), Data:(*common.BlockData)(0xc421ff4c60), Metadata:(*common.BlockMetadata)(0xc421ff4ca0)}, doMVCCValidation=true +peer1.org1.example.com | [583 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [65f 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [345 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [5c9 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [5e7 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [660 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] +peer1.org1.example.com | [584 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [43f277ee]Entered state ready +peer1.org2.example.com | [5ca 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [661 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [5e9 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]state is ready +peer1.org2.example.com | [5cb 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org2.example.com | [662 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d45687e3-a694-4161-8e18-a76cd74bb818] +peer1.org1.example.com | [585 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [5cc 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +peer0.org2.example.com | [663 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [586 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]sending state message READY +peer1.org2.example.com | [5cd 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] marked as valid by state validator +peer0.org1.example.com | [5ea 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [664 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [d45687e3-a694-4161-8e18-a76cd74bb818] +peer1.org1.example.com | [587 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [5ce 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [5eb 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]enterBusyState trigger event RESPONSE +peer1.org2.example.com | txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 +peer0.org2.example.com | [665 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [588 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | ] +peer1.org2.example.com | [5cf 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to index +peer0.org2.example.com | [666 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [20dd8837-dccb-4544-b760-c18957264d90] +peer1.org1.example.com | [589 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [5e8 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5d0 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx number:[0] ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to blockNumTranNum index +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [667 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=2c07273f-4493-4dac-a0af-6cbc2ee3c51a,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer1.org1.example.com | [58a 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org1.example.com | [5ec 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message RESPONSE +peer1.org2.example.com | [5d1 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54521], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org1.example.com | [58b 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5ed 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [58c 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org2.example.com | [668 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 chaindID businesschannel +peer1.org2.example.com | [5d2 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer0.org1.example.com | [5ee 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org1.example.com | [58d 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [5d3 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [669 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org1.example.com | [5ef 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message RESPONSE +peer1.org1.example.com | [58e 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [5f0 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message COMPLETED from shim +peer1.org2.example.com | [5d4 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [66a 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [58f 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Move state message TRANSACTION +peer0.org1.example.com | [5f1 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org2.example.com | [5d5 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [590 01-12 22:57:52.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [66b 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [5f2 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5d6 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [66c 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2c07273f]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [591 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5f3 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +peer0.org2.example.com | [66d 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [5d7 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | [346 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [592 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]sending state message TRANSACTION +peer0.org1.example.com | [5f4 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [66e 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2c07273f]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [5d8 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [593 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message GET_STATE from shim +peer0.org1.example.com | [5f5 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [5d9 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [66f 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c07273f]Move state message TRANSACTION +peer1.org1.example.com | [594 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [5da 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [5f6 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [670 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c07273f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5db 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer1.org1.example.com | [595 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [43f277ee]Received GET_STATE, invoking get state from ledger +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [5dc 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer0.org2.example.com | [671 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5f7 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [edc46019-d047-4eb2-b056-2e277ce1ec79] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [596 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org2.example.com | [672 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c07273f]sending state message TRANSACTION +peer0.org1.example.com | [5f8 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [597 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43f277ee] getting state for chaincode mycc, key a, channel businesschannel +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org2.example.com | [5dd 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [5f9 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel chaincode id: name:"mycc" +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org2.example.com | [673 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c07273f]Received message TRANSACTION from shim +peer1.org1.example.com | [598 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org2.example.com | [5de 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [5fa 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [599 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43f277ee]Got state. Sending RESPONSE +peer0.org2.example.com | [674 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c07273f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5df 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org2.example.com | [675 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2c07273f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [5fb 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel version: 1.0.5 +peer1.org1.example.com | [59a 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [43f277ee]handleGetState serial send RESPONSE +peer1.org2.example.com | [5e0 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org2.example.com | [676 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [5fc 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251,syscc=true,proposal=0xc421eb3b80,canname=escc:1.0.5 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [5e1 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [677 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [5fd 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [347 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [59b 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message COMPLETED from shim +peer1.org2.example.com | [5e2 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [5fe 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [348 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [678 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [349 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer1.org1.example.com | [59c 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5e3 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422476570 +peer0.org1.example.com | [5ff 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer0.org2.example.com | [679 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c07273f]Transaction completed. Sending COMPLETED +orderer.example.com | [34a 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [59d 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [67a 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c07273f]Move state message COMPLETED +peer1.org2.example.com | [5e4 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [600 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [34b 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [59e 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a +orderer.example.com | [34c 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [601 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [67b 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c07273f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [59f 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [5e5 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [34d 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [67c 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c07273f]send state message COMPLETED +peer1.org1.example.com | [5a0 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [34e 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [602 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [5a1 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [34f 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [5e6 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org2.example.com | [67d 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c07273f]Received message COMPLETED from shim +peer1.org1.example.com | [5a2 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8cf7da93-c407-4de6-b309-1cdc2e2bbc46] +peer0.org1.example.com | [603 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [350 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [5e7 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [5a3 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [351 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [67e 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c07273f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5a4 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a channel id: businesschannel chaincode id: name:"mycc" +peer1.org2.example.com | [5e8 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [604 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message TRANSACTION +orderer.example.com | [352 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [5a5 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer0.org2.example.com | [67f 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c07273f-4493-4dac-a0af-6cbc2ee3c51a]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5e9 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422215720, header 0xc4224765a0 +orderer.example.com | [353 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [5a6 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a channel id: businesschannel version: 1.0.5 +peer0.org2.example.com | [680 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2c07273f-4493-4dac-a0af-6cbc2ee3c51a +peer0.org2.example.com | [681 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [605 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5a8 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a,syscc=true,proposal=0xc4220e2ff0,canname=escc:1.0.5 +peer1.org2.example.com | [5ea 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer0.org2.example.com | [682 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [20dd8837-dccb-4544-b760-c18957264d90] +orderer.example.com | [354 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [5a9 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer1.org2.example.com | [5eb 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 +peer0.org1.example.com | [606 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5aa 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [683 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | [355 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [5ab 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer0.org1.example.com | [607 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message TRANSACTION +peer0.org2.example.com | [684 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [5ac 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [5a7 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [5ec 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48] +orderer.example.com | [356 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [685 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4221ae9c0), Data:(*common.BlockData)(0xc4231bc540), Metadata:(*common.BlockMetadata)(0xc4231bc580)}, doMVCCValidation=true +peer1.org1.example.com | [5ad 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [5ed 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [608 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Received message TRANSACTION from shim +orderer.example.com | [357 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [5af 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [686 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [609 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5ee 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [63be2709-feb3-4638-996e-f4c312339d07] +orderer.example.com | [358 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [5b0 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f277ee]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [5ef 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 channel id: businesschannel +peer0.org1.example.com | [60a 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee76e58d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [687 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org1.example.com | [5b1 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Move state message TRANSACTION +orderer.example.com | [359 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [5f0 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48,syscc=true,proposal=0xc422215720,canname=lscc:1.0.5 +peer1.org1.example.com | [5b2 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [60b 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [35a 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [688 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [5b3 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5f1 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org1.example.com | [60c 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [689 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | [35b 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [5f2 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5b4 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]sending state message TRANSACTION +peer0.org1.example.com | [60d 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Transaction completed. Sending COMPLETED +orderer.example.com | [35c 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [5f3 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org2.example.com | [68a 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] marked as valid by state validator +peer1.org1.example.com | [5ae 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [60e 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Move state message COMPLETED +peer1.org2.example.com | [5f4 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9fac2b91]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [35d 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [5b6 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Received message TRANSACTION from shim +peer0.org2.example.com | [68b 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +peer0.org1.example.com | [60f 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5f5 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [35e 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [5b7 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [610 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]send state message COMPLETED +peer0.org2.example.com | txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 +orderer.example.com | [35f 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [5f6 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [5b8 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f277ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [611 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message COMPLETED from shim +peer0.org2.example.com | ] +peer1.org2.example.com | [5f7 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9fac2b91]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [360 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [612 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5b5 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org2.example.com | [68c 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to index +peer1.org2.example.com | [5f8 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Move state message TRANSACTION +orderer.example.com | [361 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [613 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [68d 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx number:[0] ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to blockNumTranNum index +peer1.org1.example.com | [5b9 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [5f9 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [362 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [614 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +peer0.org2.example.com | [68e 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59191], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org1.example.com | [5ba 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [5fa 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [615 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [363 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [68f 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer1.org1.example.com | [5bb 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [616 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [5fb 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]sending state message TRANSACTION +peer0.org2.example.com | [690 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [5bc 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]Move state message COMPLETED +orderer.example.com | [364 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [5fc 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Received message TRANSACTION from shim +peer0.org1.example.com | [617 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [691 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [5bd 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f277ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [365 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [618 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [edc46019-d047-4eb2-b056-2e277ce1ec79] +peer1.org2.example.com | [5fd 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9fac2b91]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [5be 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f277ee]send state message COMPLETED +peer0.org2.example.com | [692 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer1.org2.example.com | [5fe 01-12 22:57:52.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9fac2b91]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [366 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [619 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [693 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org1.example.com | [5bf 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f277ee]Received message COMPLETED from shim +orderer.example.com | [367 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [5ff 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9fac2b91]Sending GET_STATE +peer0.org1.example.com | [61a 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org2.example.com | [694 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [5c0 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [368 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [600 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Received message GET_STATE from shim +peer0.org1.example.com | [61b 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [695 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer1.org1.example.com | [5c1 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [601 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [369 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [696 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer0.org1.example.com | [61c 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [5c2 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f277eeb46e553b07b5722383b7e9e6c66ecf08b638d4902e79e8f3efbbd45a +peer1.org2.example.com | [602 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9fac2b91]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [697 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [36a 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [61d 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [5c3 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [698 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +peer1.org2.example.com | [603 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [36b 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [5c4 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [61e 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [699 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | [36c 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [5c5 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [604 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9fac2b91] getting state for chaincode lscc, key mycc, channel businesschannel +peer0.org2.example.com | [69a 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [61f 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4228d1890 +orderer.example.com | [36d 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [5c6 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8cf7da93-c407-4de6-b309-1cdc2e2bbc46] +peer1.org2.example.com | [605 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org2.example.com | [69b 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [36e 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [620 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer1.org1.example.com | [5c7 01-12 22:57:52.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | [36f 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [606 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9fac2b91]Got state. Sending RESPONSE +peer0.org2.example.com | [69c 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [621 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [5c8 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [607 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9fac2b91]handleGetState serial send RESPONSE +orderer.example.com | [370 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [69d 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [622 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [5c9 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [608 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Received message RESPONSE from shim +orderer.example.com | [371 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [623 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org2.example.com | [69e 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [5ca 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer0.org1.example.com | [624 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [372 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [609 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9fac2b91]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [5cb 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [373 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [625 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [60a 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9fac2b91]before send +peer1.org1.example.com | [5cc 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +orderer.example.com | [374 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [626 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42284a000, header channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +peer1.org1.example.com | [5cd 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org2.example.com | [60c 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9fac2b91]GetState received payload RESPONSE +peer0.org1.example.com | [627 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [5ce 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [375 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [628 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [60b 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9fac2b91]after send +peer1.org1.example.com | [5cf 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [60e 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Transaction completed. Sending COMPLETED +orderer.example.com | [376 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [629 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [5d0 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [60d 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9fac2b91]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [62a 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [5d1 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [377 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [60f 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Move state message COMPLETED +peer0.org1.example.com | [62b 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +orderer.example.com | [378 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [5d2 01-12 22:57:52.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [610 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9fac2b91]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [379 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [62c 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [5d3 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [611 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]send state message COMPLETED +peer0.org1.example.com | [62d 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [88b55529-b5f5-4d48-9384-a19931c65cfd] +orderer.example.com | [37a 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [37b 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer1.org1.example.com | [5d4 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [62e 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [37c 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797797928531986 evaluation starts +peer1.org2.example.com | [612 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Received message COMPLETED from shim +peer1.org1.example.com | [5d5 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | [37d 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [62f 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [88b55529-b5f5-4d48-9384-a19931c65cfd] +peer1.org1.example.com | [5d6 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42152e4e0 +peer1.org2.example.com | [613 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [37e 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org1.example.com | [5d7 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +peer0.org1.example.com | [630 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [614 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48]HandleMessage- COMPLETED. Notify +orderer.example.com | [37f 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [631 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [98b91a05-d4a1-470a-8727-22fd243ea772] +peer1.org2.example.com | [615 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 +peer1.org1.example.com | [5d8 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [632 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=1c879b92-1dc1-4529-8b34-aa4cf893b25a,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [616 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [5d9 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [617 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [5da 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +peer0.org1.example.com | [633 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 chaindID businesschannel +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [618 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [634 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer1.org1.example.com | [5db 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [635 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [636 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer1.org1.example.com | [5dc 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [619 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48,syscc=false,proposal=0xc422215720,canname=mycc:1.0 +peer0.org1.example.com | [637 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c879b92]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [61a 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer0.org1.example.com | [638 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [5dd 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4215f5000, header channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +peer0.org1.example.com | [639 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c879b92]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [63a 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c879b92]Move state message TRANSACTION +peer1.org1.example.com | [5de 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [63b 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1c879b92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [61b 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [63c 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5df 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [63d 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c879b92]sending state message TRANSACTION +peer1.org1.example.com | [5e0 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [63e 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]Received message TRANSACTION from shim +peer1.org2.example.com | [61c 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer0.org1.example.com | [63f 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c879b92]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org1.example.com | [5e1 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [640 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c879b92]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [5e2 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] +peer1.org2.example.com | [61d 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9fac2b91]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [641 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [61e 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [642 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [61f 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [5e3 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [5e4 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [203bded1-39a9-44ae-8e25-6c801065f096] +peer0.org1.example.com | [643 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org2.example.com | [620 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9fac2b91]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [644 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]Transaction completed. Sending COMPLETED +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org1.example.com | [5e5 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [621 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Move state message TRANSACTION +peer0.org1.example.com | [645 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]Move state message COMPLETED +peer1.org1.example.com | [5e6 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [203bded1-39a9-44ae-8e25-6c801065f096] +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [646 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c879b92]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [622 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [647 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]send state message COMPLETED +peer0.org1.example.com | [648 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c879b92]Received message COMPLETED from shim +orderer.example.com | [380 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org1.example.com | [5e7 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [649 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1c879b92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [381 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal matched by identity 0 +peer0.org1.example.com | [64a 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1c879b92-1dc1-4529-8b34-aa4cf893b25a]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [623 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [382 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +peer0.org1.example.com | [64b 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1c879b92-1dc1-4529-8b34-aa4cf893b25a +peer1.org1.example.com | [5e8 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [55d6e8ca-1294-478b-9616-d4e6066664ec] +peer0.org1.example.com | [64c 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +peer0.org1.example.com | [64d 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [98b91a05-d4a1-470a-8727-22fd243ea772] +peer1.org2.example.com | [624 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]sending state message TRANSACTION +orderer.example.com | [383 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +peer0.org1.example.com | [64e 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [625 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Received message GET_STATE from shim +peer1.org1.example.com | [5e9 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=8a7aae9d-1b92-4253-adec-ad15cad54956,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [64f 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [5ea 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 chaindID businesschannel +peer0.org1.example.com | [650 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42163d240), Data:(*common.BlockData)(0xc42171c900), Metadata:(*common.BlockMetadata)(0xc42171c940)}, doMVCCValidation=true +orderer.example.com | 00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +peer1.org2.example.com | [626 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [651 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [5eb 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +peer0.org1.example.com | [652 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [653 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +peer0.org1.example.com | [654 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +peer1.org1.example.com | [5ec 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [655 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] marked as valid by state validator +orderer.example.com | 00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +peer1.org1.example.com | [5ed 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer1.org2.example.com | [627 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9fac2b91]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [656 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +orderer.example.com | 00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +peer1.org1.example.com | [5ee 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a7aae9d]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [628 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5ef 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 +orderer.example.com | 00000040 88 95 6d d3 74 2c 02 |..m.t,.| +peer1.org2.example.com | [629 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9fac2b91] getting state for chaincode mycc, key a, channel businesschannel +peer1.org1.example.com | [5f0 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a7aae9d]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [384 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [62a 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org1.example.com | [5f1 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a7aae9d]Move state message TRANSACTION +orderer.example.com | [385 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797797928531986 evaluation succeeds +peer0.org1.example.com | ] +orderer.example.com | [386 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [62b 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9fac2b91]Got state. Sending RESPONSE +peer0.org1.example.com | [657 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to index +peer1.org1.example.com | [5f2 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a7aae9d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [658 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx number:[0] ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to blockNumTranNum index +peer1.org2.example.com | [62c 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9fac2b91]handleGetState serial send RESPONSE +orderer.example.com | [387 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5f3 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [659 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54521], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [388 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5f4 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a7aae9d]sending state message TRANSACTION +peer1.org2.example.com | [62d 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Received message COMPLETED from shim +peer0.org1.example.com | [65a 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer1.org2.example.com | [62e 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [389 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5f5 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a7aae9d]Received message TRANSACTION from shim +peer0.org1.example.com | [65b 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [62f 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48]HandleMessage- COMPLETED. Notify +orderer.example.com | [38a 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5f6 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a7aae9d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [630 01-12 22:57:52.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 +orderer.example.com | [38b 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [65c 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [5f7 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a7aae9d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [631 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [65d 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [38c 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [5f8 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | [38d 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [632 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [65e 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer1.org1.example.com | [5f9 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [38e 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [65f 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [633 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [5fa 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [38f 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [660 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [634 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [63be2709-feb3-4638-996e-f4c312339d07] +orderer.example.com | [390 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [661 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org1.example.com | [5fb 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a7aae9d]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [635 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [391 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [662 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [636 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 channel id: businesschannel chaincode id: name:"mycc" +peer1.org1.example.com | [5fc 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a7aae9d]Move state message COMPLETED +peer0.org1.example.com | [663 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +orderer.example.com | [392 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [637 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org1.example.com | [5fd 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a7aae9d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [664 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +orderer.example.com | [393 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5fe 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a7aae9d]send state message COMPLETED +peer0.org1.example.com | [665 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [638 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 channel id: businesschannel version: 1.0.5 +peer1.org1.example.com | [5ff 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a7aae9d]Received message COMPLETED from shim +orderer.example.com | [394 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [666 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [639 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48,syscc=true,proposal=0xc422215720,canname=escc:1.0.5 +peer1.org1.example.com | [600 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a7aae9d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [395 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [63a 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [396 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [63b 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [397 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [601 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a7aae9d-1b92-4253-adec-ad15cad54956]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [667 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [63c 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [398 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [668 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [602 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8a7aae9d-1b92-4253-adec-ad15cad54956 +peer1.org2.example.com | [63d 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9fac2b91]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [399 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [63e 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [669 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [66a 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [39a 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [63f 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [66b 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f9ee70 +orderer.example.com | [39b 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [603 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [640 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9fac2b91]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [66c 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [39c 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [604 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [55d6e8ca-1294-478b-9616-d4e6066664ec] +peer1.org2.example.com | [641 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Move state message TRANSACTION +orderer.example.com | [39d 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [642 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [605 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [66d 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [39e 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [643 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [39f 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [606 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [3a0 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [3a1 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [66e 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | [3a2 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [3a3 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +peer1.org1.example.com | [607 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420247500), Data:(*common.BlockData)(0xc421a17000), Metadata:(*common.BlockMetadata)(0xc421a17040)}, doMVCCValidation=true +peer1.org2.example.com | [644 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]sending state message TRANSACTION +orderer.example.com | [3a4 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +peer0.org1.example.com | [66f 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [645 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Received message TRANSACTION from shim +orderer.example.com | [3a5 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +peer1.org2.example.com | [646 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9fac2b91]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [647 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9fac2b91]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [670 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [648 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [608 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [649 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [3a6 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [64a 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [671 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4214ade00, header 0xc421f9eea0 +peer1.org1.example.com | [609 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer1.org2.example.com | [64b 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]Move state message COMPLETED +orderer.example.com | [3a7 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [672 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +peer1.org1.example.com | [60a 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org2.example.com | [64c 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9fac2b91]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [64d 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9fac2b91]send state message COMPLETED +peer0.org1.example.com | [673 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +orderer.example.com | [3a8 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [60b 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +peer1.org2.example.com | [64e 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9fac2b91]Received message COMPLETED from shim +peer0.org1.example.com | [674 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8] +peer1.org2.example.com | [64f 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b91]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [650 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [60c 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] marked as valid by state validator +peer1.org2.example.com | [651 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9fac2b9151fd2a20bda7b6a160e4985ec7e50b2443b75a0d6626fe13d62d7f48 +orderer.example.com | [3a9 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [652 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [675 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [60d 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +orderer.example.com | [3aa 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [653 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [676 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [57dc365c-33f8-4116-8749-d16535fdfc37] +peer1.org1.example.com | txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 +orderer.example.com | [3ab 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [654 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org1.example.com | ] +orderer.example.com | [3ac 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [677 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel +peer1.org2.example.com | [655 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [63be2709-feb3-4638-996e-f4c312339d07] +orderer.example.com | [3ad 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +peer1.org1.example.com | [60e 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to index +peer0.org1.example.com | [678 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8,syscc=true,proposal=0xc4214ade00,canname=lscc:1.0.5 +peer1.org2.example.com | [656 01-12 22:57:52.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [679 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org1.example.com | [60f 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx number:[0] ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to blockNumTranNum index +orderer.example.com | [3ae 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer1.org1.example.com | [610 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59191], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [67a 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [3af 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [657 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [67b 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | [3b0 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [611 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer1.org2.example.com | [658 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224923f0 +orderer.example.com | [3b1 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [659 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [612 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [67c 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3b2 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [65a 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [613 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [67d 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [65b 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +orderer.example.com | [3b3 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [614 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer1.org2.example.com | [65c 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [67e 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [615 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | [3b4 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [67f 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [65d 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [3b5 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer1.org1.example.com | [616 01-12 22:57:54.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [65e 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224a47d0, header 0xc422492420 +orderer.example.com | [3b6 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [617 01-12 22:57:54.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [680 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Move state message TRANSACTION +peer1.org2.example.com | [65f 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +orderer.example.com | [3b7 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [618 01-12 22:57:54.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer0.org1.example.com | [681 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [660 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +peer1.org1.example.com | [619 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [682 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [661 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] +orderer.example.com | [3b8 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [683 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]sending state message TRANSACTION +peer1.org1.example.com | [61a 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +orderer.example.com | [3b9 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [662 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [61b 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer0.org1.example.com | [684 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Received message TRANSACTION from shim +peer1.org1.example.com | [61c 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [663 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7e1e47bc-5dad-488c-a5d7-31661c7e6fb3] +peer1.org1.example.com | [61d 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [685 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [3ba 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [61e 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [686 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd5fd2f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [664 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 channel id: businesschannel +orderer.example.com | [3bb 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [61f 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [687 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cd5fd2f1]Sending GET_STATE +peer1.org2.example.com | [665 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026,syscc=true,proposal=0xc4224a47d0,canname=lscc:1.0.5 +peer1.org1.example.com | [620 01-12 22:57:54.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [3bc 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [688 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message GET_STATE from shim +peer1.org2.example.com | [666 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +orderer.example.com | [3bd 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [689 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [667 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [68a 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cd5fd2f1]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [668 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org1.example.com | [68b 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [3be 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer1.org2.example.com | [669 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1780d665]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [68c 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | [3bf 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer1.org2.example.com | [66a 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [68d 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [3c0 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org1.example.com | [68e 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1]Got state. Sending RESPONSE +peer1.org2.example.com | [66b 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [3c1 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [68f 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cd5fd2f1]handleGetState serial send RESPONSE +orderer.example.com | [3c2 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [66c 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1780d665]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [3c3 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [66d 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Move state message TRANSACTION +peer0.org1.example.com | [690 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Received message RESPONSE from shim +peer1.org2.example.com | [66e 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [691 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [692 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cd5fd2f1]before send +orderer.example.com | [3c4 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [693 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cd5fd2f1]after send +peer1.org2.example.com | [66f 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [694 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cd5fd2f1]Received RESPONSE, communicated (state:ready) +orderer.example.com | [3c5 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer1.org2.example.com | [670 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]sending state message TRANSACTION +peer0.org1.example.com | [695 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cd5fd2f1]GetState received payload RESPONSE +peer1.org2.example.com | [671 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Received message TRANSACTION from shim +peer0.org1.example.com | [696 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Transaction completed. Sending COMPLETED +orderer.example.com | [3c6 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [697 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Move state message COMPLETED +peer1.org2.example.com | [672 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1780d665]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [3c7 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org1.example.com | [698 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [3c8 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [673 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1780d665]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3c9 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [674 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1780d665]Sending GET_STATE +orderer.example.com | [3ca 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [675 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message GET_STATE from shim +orderer.example.com | [3cb 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [699 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]send state message COMPLETED +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [676 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [69a 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message COMPLETED from shim +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [677 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1780d665]Received GET_STATE, invoking get state from ledger +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +peer1.org2.example.com | [678 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [69b 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [69c 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8]HandleMessage- COMPLETED. Notify +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [69d 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [69e 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +peer0.org1.example.com | [69f 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [679 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [67a 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +peer0.org1.example.com | [6a0 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel version: 1.0 +peer1.org2.example.com | [67b 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]Got state. Sending RESPONSE +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +peer0.org1.example.com | [6a1 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8,syscc=false,proposal=0xc4214ade00,canname=mycc:1.0 +peer1.org2.example.com | [67c 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1780d665]handleGetState serial send RESPONSE +peer0.org1.example.com | [6a2 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer0.org1.example.com | [6a3 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [67d 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Received message RESPONSE from shim +orderer.example.com | ymzPpM2K +peer0.org1.example.com | [6a4 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [67e 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1780d665]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [6a5 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3cc 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6a6 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [67f 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1780d665]before send +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [680 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1780d665]after send +peer0.org1.example.com | [6a7 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [681 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1780d665]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [6a8 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [682 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1780d665]GetState received payload RESPONSE +peer0.org1.example.com | [6a9 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Move state message TRANSACTION +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer1.org2.example.com | [683 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [6aa 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6ab 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [684 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Move state message COMPLETED +peer0.org1.example.com | [6ac 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]sending state message TRANSACTION +peer1.org2.example.com | [685 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1780d665]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [6ad 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message GET_STATE from shim +peer1.org2.example.com | [686 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]send state message COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [6ae 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org2.example.com | [687 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message COMPLETED from shim +peer0.org1.example.com | [6af 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cd5fd2f1]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [688 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [689 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026]HandleMessage- COMPLETED. Notify +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [6b0 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer1.org2.example.com | [68a 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [6b1 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1] getting state for chaincode mycc, key a, channel businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6b2 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | [3cd 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6b3 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1]Got state. Sending RESPONSE +peer1.org2.example.com | [68b 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6b4 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cd5fd2f1]handleGetState serial send RESPONSE +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [6b5 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message COMPLETED from shim +peer1.org2.example.com | [68c 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [6b6 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [68d 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 channel id: businesschannel version: 1.0 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [68e 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026,syscc=false,proposal=0xc4224a47d0,canname=mycc:1.0 +peer1.org2.example.com | [68f 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +peer1.org2.example.com | [690 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [6b7 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [691 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +peer1.org2.example.com | [692 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1780d665]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6b8 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [693 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [6b9 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [694 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [6ba 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer1.org2.example.com | [695 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1780d665]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [696 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Move state message TRANSACTION +peer0.org1.example.com | [6bb 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [697 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer1.org2.example.com | [698 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer1.org2.example.com | [699 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]sending state message TRANSACTION +peer1.org2.example.com | [69a 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message GET_STATE from shim +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [6bc 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [57dc365c-33f8-4116-8749-d16535fdfc37] +peer1.org2.example.com | [69b 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [6bd 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [6be 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel chaincode id: name:"mycc" +peer1.org2.example.com | [69c 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1780d665]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [6bf 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org2.example.com | [69d 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer1.org2.example.com | [69e 01-12 22:57:52.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665] getting state for chaincode mycc, key a, channel businesschannel +peer1.org2.example.com | [69f 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +peer1.org2.example.com | [6a0 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]Got state. Sending RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6c0 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel version: 1.0.5 +peer1.org2.example.com | [6a1 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1780d665]handleGetState serial send RESPONSE +peer0.org1.example.com | [6c1 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8,syscc=true,proposal=0xc4214ade00,canname=escc:1.0.5 +peer1.org2.example.com | [6a2 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message GET_STATE from shim +peer0.org1.example.com | [6c2 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer1.org2.example.com | [6a3 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [3ce 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [6a4 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [1780d665]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [6c3 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [3cf 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [3d0 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [3d1 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [3d2 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org2.example.com | [6a5 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6c4 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [3d3 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6c5 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6c6 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6a6 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665] getting state for chaincode mycc, key b, channel businesschannel +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [6c7 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6a7 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [6a8 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]Got state. Sending RESPONSE +peer0.org1.example.com | [6c8 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6c9 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Move state message TRANSACTION +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [6ca 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6cb 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6cc 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]sending state message TRANSACTION +peer0.org1.example.com | [6cd 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Received message TRANSACTION from shim +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [6a9 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1780d665]handleGetState serial send RESPONSE +peer0.org1.example.com | [6ce 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6aa 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message PUT_STATE from shim +peer0.org1.example.com | [6cf 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd5fd2f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [6d0 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [6d1 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [6d2 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [6d3 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Move state message COMPLETED +peer1.org2.example.com | [6ab 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [6d4 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6d5 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]send state message COMPLETED +peer0.org1.example.com | [6d6 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message COMPLETED from shim +peer1.org2.example.com | [6ac 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [6d7 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6ad 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]state is ready +peer0.org1.example.com | [6d8 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6d9 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +peer1.org2.example.com | [6ae 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [6da 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [6af 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1780d665]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [6db 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer0.org1.example.com | [6dc 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [6b0 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Move state message RESPONSE +peer0.org1.example.com | [6dd 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [57dc365c-33f8-4116-8749-d16535fdfc37] +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer1.org2.example.com | [6b1 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [6de 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [6df 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [6b2 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer0.org1.example.com | [6e0 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422848b70 +peer0.org1.example.com | [6e1 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [6e2 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [6e3 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | RTCauNNt1A== +peer1.org2.example.com | [6b3 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]sending state message RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6e4 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [3d4 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [6b4 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message PUT_STATE from shim +peer0.org1.example.com | [6e5 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [6e6 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421950d70, header 0xc422848ba0 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [6b5 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [6b6 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6e7 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [6b7 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]state is ready +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [6e8 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc +peer1.org2.example.com | [6b8 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1780d665]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer1.org2.example.com | [6b9 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1780d665]enterBusyState trigger event RESPONSE +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [6e9 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org2.example.com | [6ba 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Move state message RESPONSE +peer0.org1.example.com | [6ea 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org2.example.com | [6bb 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [6bc 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6bd 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]sending state message RESPONSE +peer1.org2.example.com | [6be 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message COMPLETED from shim +peer1.org2.example.com | [6bf 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer1.org2.example.com | [6c0 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6eb 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [66d320e7-a1d1-4055-ae26-29ec06cfbe19] +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org2.example.com | [6c1 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +peer0.org1.example.com | [6ec 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel +peer1.org2.example.com | [6c2 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [6c3 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [6c4 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer1.org2.example.com | [6c5 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7e1e47bc-5dad-488c-a5d7-31661c7e6fb3] +peer1.org2.example.com | [6c6 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6ed 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel version: 1.0.5 +peer1.org2.example.com | [6c7 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 channel id: businesschannel chaincode id: name:"mycc" +peer1.org2.example.com | [6c8 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +peer1.org2.example.com | [6c9 01-12 22:57:52.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 channel id: businesschannel version: 1.0.5 +peer1.org2.example.com | [6ca 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026,syscc=true,proposal=0xc4224a47d0,canname=escc:1.0.5 +peer1.org2.example.com | [6cb 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer1.org2.example.com | [6cc 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6cd 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [6ce 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1780d665]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3d5 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6ee 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc,syscc=true,proposal=0xc421950d70,canname=lscc:1.0.5 +peer1.org2.example.com | [6cf 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [6d0 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [6ef 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer1.org2.example.com | [6d1 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1780d665]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [6f0 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6d2 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Move state message TRANSACTION +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [6f1 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [6d3 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6f2 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6f3 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [6d4 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6d5 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]sending state message TRANSACTION +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer1.org2.example.com | [6d6 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Received message TRANSACTION from shim +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org1.example.com | [6f4 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer1.org2.example.com | [6d7 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1780d665]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [6f5 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6d8 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1780d665]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org1.example.com | [6f6 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Move state message TRANSACTION +peer1.org2.example.com | [6d9 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [6f7 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6f8 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6da 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer1.org2.example.com | [6db 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Transaction completed. Sending COMPLETED +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org1.example.com | [6f9 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]sending state message TRANSACTION +peer1.org2.example.com | [6dc 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]Move state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6fa 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Received message TRANSACTION from shim +peer1.org2.example.com | [6dd 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1780d665]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [3d6 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [6de 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1780d665]send state message COMPLETED +orderer.example.com | [3d7 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [3d8 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [3d9 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | [6df 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1780d665]Received message COMPLETED from shim +peer0.org1.example.com | [6fb 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6e0 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d665]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [3da 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [6e1 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026]HandleMessage- COMPLETED. Notify +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | [6e2 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +peer0.org1.example.com | [6fc 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f3d141ef]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [6e3 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6fd 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f3d141ef]Sending GET_STATE +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [6e4 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [6fe 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Received message GET_STATE from shim +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer1.org2.example.com | [6e5 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [6e6 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7e1e47bc-5dad-488c-a5d7-31661c7e6fb3] +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [6ff 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org2.example.com | [6e7 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer1.org2.example.com | [6e8 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer1.org2.example.com | [6e9 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer1.org2.example.com | [6ea 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org2.example.com | [6eb 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [6ec 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer1.org2.example.com | [6ed 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218a4ff0 +peer0.org1.example.com | [700 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f3d141ef]Received GET_STATE, invoking get state from ledger +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [3db 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [701 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [6ee 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [6ef 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org1.example.com | [702 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f3d141ef] getting state for chaincode lscc, key mycc, channel businesschannel +peer1.org2.example.com | [6f0 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [6f1 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [703 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [6f2 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [6f3 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [704 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f3d141ef]Got state. Sending RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [705 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f3d141ef]handleGetState serial send RESPONSE +orderer.example.com | [3dc 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [6f4 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a64000, header channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [706 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Received message RESPONSE from shim +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [6f5 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [707 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [6f6 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [6f7 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [708 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f3d141ef]before send +peer1.org2.example.com | [6f8 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [709 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f3d141ef]after send +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer1.org2.example.com | [6f9 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [70a 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f3d141ef]Received RESPONSE, communicated (state:ready) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6fa 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [3dd 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [70b 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f3d141ef]GetState received payload RESPONSE +orderer.example.com | [3de 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [70c 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [6fb 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [07768928-05b2-45d6-a0c1-3ad90196cb73] +orderer.example.com | [3df 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [3e0 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [3e1 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [70d 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Move state message COMPLETED +peer1.org2.example.com | [6fc 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [3e2 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [3e3 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer1.org2.example.com | [6fd 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [07768928-05b2-45d6-a0c1-3ad90196cb73] +peer0.org1.example.com | [70e 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [3e4 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [6fe 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [3e5 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org1.example.com | [70f 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]send state message COMPLETED +orderer.example.com | [3e6 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [3e7 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [710 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Received message COMPLETED from shim +orderer.example.com | [3e8 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [711 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6ff 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [aac53ee7-31a6-44fe-a2fd-f6c7a622a4eb] +peer1.org2.example.com | [700 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=793707ad-614e-464e-91a8-d52c56b566b6,syscc=true,proposal=0x0,canname=vscc:1.0.5 +orderer.example.com | [3e9 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [712 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [701 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 chaindID businesschannel +orderer.example.com | [3ea 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [713 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc +peer1.org2.example.com | [702 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +orderer.example.com | [3eb 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +peer1.org2.example.com | [703 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [3ec 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [3ed 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [3ee 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [704 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +orderer.example.com | [3ef 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [714 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [705 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [793707ad]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [3f0 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [706 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [3f1 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [707 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [793707ad]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [708 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [793707ad]Move state message TRANSACTION +orderer.example.com | [3f2 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [715 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [3f3 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org2.example.com | [709 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [793707ad]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [716 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [3f4 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [70a 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [717 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [66d320e7-a1d1-4055-ae26-29ec06cfbe19] +orderer.example.com | [3f5 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org2.example.com | [70b 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [793707ad]sending state message TRANSACTION +peer0.org1.example.com | [718 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [3f6 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [70c 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [793707ad]Received message TRANSACTION from shim +peer0.org1.example.com | [719 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | [3f7 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org2.example.com | [70d 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [793707ad]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [70e 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [793707ad]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [3f8 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [70f 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [71a 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | [3f9 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [71b 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel version: 1.0.5 +peer1.org2.example.com | [710 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [3fa 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [71c 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc,syscc=true,proposal=0xc421950d70,canname=escc:1.0.5 +peer1.org2.example.com | [711 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | [3fb 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [3fc 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [71d 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [3fd 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +peer1.org2.example.com | [712 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [793707ad]Transaction completed. Sending COMPLETED +orderer.example.com | [3fe 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [71e 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [713 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [793707ad]Move state message COMPLETED +peer0.org1.example.com | [71f 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer1.org2.example.com | [714 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [793707ad]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [3ff 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +peer0.org1.example.com | [720 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [715 01-12 22:57:54.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [793707ad]send state message COMPLETED +peer0.org1.example.com | [721 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [400 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer1.org2.example.com | [716 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [793707ad]Received message COMPLETED from shim +orderer.example.com | [401 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org2.example.com | [717 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [793707ad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [402 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer1.org2.example.com | [718 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [793707ad-614e-464e-91a8-d52c56b566b6]HandleMessage- COMPLETED. Notify +orderer.example.com | [403 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org2.example.com | [719 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:793707ad-614e-464e-91a8-d52c56b566b6 +orderer.example.com | [404 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [405 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer1.org2.example.com | [71a 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [722 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [406 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer1.org2.example.com | [71b 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [aac53ee7-31a6-44fe-a2fd-f6c7a622a4eb] +peer1.org2.example.com | [71c 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [723 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [407 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer1.org2.example.com | [71d 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [408 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [409 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +peer0.org1.example.com | [724 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Move state message TRANSACTION +orderer.example.com | [40a 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer1.org2.example.com | [71e 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421c503c0), Data:(*common.BlockData)(0xc422143960), Metadata:(*common.BlockMetadata)(0xc4221439a0)}, doMVCCValidation=true +peer0.org1.example.com | [725 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [40b 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer1.org2.example.com | [71f 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | [40c 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer0.org1.example.com | [726 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [720 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [40d 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer1.org2.example.com | [721 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | [40e 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [727 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]sending state message TRANSACTION +peer1.org2.example.com | [722 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | [40f 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [728 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Received message TRANSACTION from shim +orderer.example.com | [410 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [723 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] marked as valid by state validator +peer0.org1.example.com | [729 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [411 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org2.example.com | [724 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +orderer.example.com | [412 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [72a 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f3d141ef]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 +orderer.example.com | [413 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [414 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +peer0.org1.example.com | [72b 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | ] +orderer.example.com | [415 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer0.org1.example.com | [72c 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [725 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to index +peer1.org2.example.com | [726 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx number:[0] ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to blockNumTranNum index +peer0.org1.example.com | [72d 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [727 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59191], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [72e 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Move state message COMPLETED +orderer.example.com | [416 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer1.org2.example.com | [728 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer0.org1.example.com | [72f 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [417 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer1.org2.example.com | [729 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [730 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]send state message COMPLETED +peer1.org2.example.com | [72a 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [731 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Received message COMPLETED from shim +peer1.org2.example.com | [72b 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +peer0.org1.example.com | [732 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [72c 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +peer0.org1.example.com | [733 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [72d 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [72e 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +orderer.example.com | [418 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [734 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc +peer1.org2.example.com | [72f 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | [419 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer1.org2.example.com | [730 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | [41a 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer1.org2.example.com | [731 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +orderer.example.com | [41b 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [732 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | [41c 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer1.org2.example.com | [733 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [41d 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [735 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [734 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [736 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [735 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [737 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [41e 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [738 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [66d320e7-a1d1-4055-ae26-29ec06cfbe19] +peer1.org2.example.com | [736 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [41f 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [420 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer1.org2.example.com | [737 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [421 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [739 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | [422 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [423 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [73a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [73b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422849fb0 +orderer.example.com | [424 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [73c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [425 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [426 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [427 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [428 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +peer0.org1.example.com | [73d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [429 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [73e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org1.example.com | [73f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [42a 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +peer0.org1.example.com | [740 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [42b 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [741 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421951a40, header 0xc422728000 +orderer.example.com | [42c 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +peer0.org1.example.com | [742 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | [42d 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [743 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d +orderer.example.com | [42e 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [744 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d] +orderer.example.com | [42f 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [745 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [746 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [804b924c-4f93-4cca-89e8-0e3cb2cb4981] +orderer.example.com | [430 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [431 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [747 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel +peer0.org1.example.com | [748 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [749 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d,syscc=true,proposal=0xc421951a40,canname=lscc:1.0.5 +orderer.example.com | [432 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [74a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org1.example.com | [74b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [433 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [74c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org1.example.com | [74d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [74e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [434 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [74f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [435 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [750 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [751 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Move state message TRANSACTION +peer0.org1.example.com | [752 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [753 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [436 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [754 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]sending state message TRANSACTION +peer0.org1.example.com | [755 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Received message TRANSACTION from shim +peer0.org1.example.com | [756 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [757 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7131d719]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [437 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [758 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7131d719]Sending GET_STATE +peer0.org1.example.com | [759 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Received message GET_STATE from shim +orderer.example.com | [438 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [75a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [75b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7131d719]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [75c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [75d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7131d719] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | [439 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [75e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [75f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7131d719]Got state. Sending RESPONSE +peer0.org1.example.com | [760 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7131d719]handleGetState serial send RESPONSE +peer0.org1.example.com | [761 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Received message RESPONSE from shim +orderer.example.com | [43a 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [762 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [43b 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [763 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7131d719]before send +peer0.org1.example.com | [764 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7131d719]after send +orderer.example.com | [43c 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [765 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7131d719]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [766 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7131d719]GetState received payload RESPONSE +peer0.org1.example.com | [767 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Transaction completed. Sending COMPLETED +orderer.example.com | [43d 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [768 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Move state message COMPLETED +orderer.example.com | [43e 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [43f 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [440 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [769 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [441 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [442 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [76a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]send state message COMPLETED +orderer.example.com | [443 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [444 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [445 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [76b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Received message COMPLETED from shim +orderer.example.com | [446 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [447 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [448 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [449 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [76c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [44a 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [44b 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [76d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d]HandleMessage- COMPLETED. Notify +orderer.example.com | [44c 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [44d 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [44e 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [44f 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [76e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d +orderer.example.com | [450 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [451 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [76f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [452 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [453 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [770 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [454 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [771 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [455 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [772 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [804b924c-4f93-4cca-89e8-0e3cb2cb4981] +orderer.example.com | [456 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [457 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [773 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [458 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [774 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | [459 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [775 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | [45a 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [776 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel version: 1.0.5 +orderer.example.com | [45b 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [777 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d,syscc=true,proposal=0xc421951a40,canname=escc:1.0.5 +orderer.example.com | [45c 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [778 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [45d 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [45e 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +peer0.org1.example.com | [779 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [45f 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [460 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [77a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [461 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [77b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [462 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [77c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [463 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [77d 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [464 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [77e 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [465 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [77f 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Move state message TRANSACTION +orderer.example.com | [466 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [780 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [467 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [468 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [781 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [469 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org1.example.com | [782 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]sending state message TRANSACTION +orderer.example.com | [46a 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [46b 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [783 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Received message TRANSACTION from shim +orderer.example.com | [46c 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [784 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [46d 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [785 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7131d719]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [46e 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer0.org1.example.com | [786 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [46f 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [470 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [471 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +peer0.org1.example.com | [787 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [472 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +peer0.org1.example.com | [788 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Transaction completed. Sending COMPLETED +orderer.example.com | [473 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [789 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Move state message COMPLETED +orderer.example.com | [474 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [475 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [476 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [477 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [78a 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [78b 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]send state message COMPLETED +orderer.example.com | [478 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [479 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [47a 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [78c 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Received message COMPLETED from shim +orderer.example.com | [47b 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [47c 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [78d 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [47d 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [47e 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [78e 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d]HandleMessage- COMPLETED. Notify +orderer.example.com | [47f 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [480 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [78f 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d +orderer.example.com | [481 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [790 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [482 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [483 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [791 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [792 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [484 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [793 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [804b924c-4f93-4cca-89e8-0e3cb2cb4981] +orderer.example.com | [485 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [794 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | [486 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [487 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [488 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [795 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +peer0.org1.example.com | [796 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220cc810 +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +peer0.org1.example.com | [797 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +peer0.org1.example.com | [798 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [799 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | [489 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [79a 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [79b 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [79c 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421dc8d20, header 0xc4220cc840 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org1.example.com | [79d 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [79e 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [79f 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4] +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [7a0 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org1.example.com | [7a1 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [41835a83-e049-43cf-bb10-4fc41e51e6e4] +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [48a 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [7a2 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [7a3 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel version: 1.0.5 +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +peer0.org1.example.com | [7a4 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4,syscc=true,proposal=0xc421dc8d20,canname=lscc:1.0.5 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [7a5 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [7a6 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [7a7 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +peer0.org1.example.com | [7a8 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [48b 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [7a9 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [48c 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org1.example.com | [7aa 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [48d 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [7ab 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [48e 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [48f 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [7ac 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Move state message TRANSACTION +orderer.example.com | [490 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7ad 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +peer0.org1.example.com | [7ae 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [491 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [7af 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]sending state message TRANSACTION +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7b0 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Received message TRANSACTION from shim +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [7b1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [7b2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4676bf7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [492 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7b3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4676bf7]Sending GET_STATE +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [7b4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Received message GET_STATE from shim +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [7b5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [493 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [494 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [495 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [7b6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c4676bf7]Received GET_STATE, invoking get state from ledger +orderer.example.com | [496 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [497 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [498 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [7b7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [7b8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4676bf7] getting state for chaincode lscc, key mycc, channel businesschannel +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer0.org1.example.com | [7b9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer0.org1.example.com | [7ba 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4676bf7]Got state. Sending RESPONSE +orderer.example.com | RTCauNNt1A== +peer0.org1.example.com | [7bb 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c4676bf7]handleGetState serial send RESPONSE +peer0.org1.example.com | [7bc 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Received message RESPONSE from shim +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [499 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7bd 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [7be 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4676bf7]before send +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [7bf 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4676bf7]after send +peer0.org1.example.com | [7c0 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c4676bf7]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [7c1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4676bf7]GetState received payload RESPONSE +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [7c2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Transaction completed. Sending COMPLETED +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7c3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Move state message COMPLETED +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [7c4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [7c5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]send state message COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer0.org1.example.com | [7c6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Received message COMPLETED from shim +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer0.org1.example.com | [7c7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer0.org1.example.com | [7c8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4]HandleMessage- COMPLETED. Notify +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org1.example.com | [7c9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7ca 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [7cb 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [49a 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7cc 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [7cd 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [41835a83-e049-43cf-bb10-4fc41e51e6e4] +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [7ce 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [7cf 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7d0 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [7d1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel version: 1.0.5 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [7d2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4,syscc=true,proposal=0xc421dc8d20,canname=escc:1.0.5 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org1.example.com | [7d3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +peer0.org1.example.com | [7d4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7d5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer0.org1.example.com | [7d6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [7d7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org1.example.com | [7d8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [7d9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7da 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Move state message TRANSACTION +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer0.org1.example.com | [7db 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org1.example.com | [7dc 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7dd 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]sending state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7de 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Received message TRANSACTION from shim +orderer.example.com | [49b 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [7df 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [7e0 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4676bf7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [7e1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [49c 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [7e2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [7e3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [7e4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Move state message COMPLETED +orderer.example.com | [49d 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [7e5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [7e6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]send state message COMPLETED +orderer.example.com | [49e 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [7e7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Received message COMPLETED from shim +peer0.org1.example.com | [7e8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7e9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7ea 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 +peer0.org1.example.com | [7eb 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [49f 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org1.example.com | [7ec 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [7ed 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [7ee 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [41835a83-e049-43cf-bb10-4fc41e51e6e4] +peer0.org1.example.com | [7ef 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [7f0 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [4a0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [7f1 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e06720 +peer0.org1.example.com | [7f2 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [4a1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org1.example.com | [7f3 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [7f4 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | [4a2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [7f5 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [4a3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org1.example.com | [7f6 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [7f7 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422405db0, header 0xc421e06750 +orderer.example.com | [4a4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4a5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [7f8 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [7f9 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 +orderer.example.com | [4a6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [7fa 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2] +orderer.example.com | [4a7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [7fb 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [4a8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [7fc 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b90e8efc-5a7b-4a87-83ab-1916d8e13599] +orderer.example.com | [4a9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +peer0.org1.example.com | [7fd 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel +orderer.example.com | [4aa 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4ab 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [7fe 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel version: 1.0.5 +orderer.example.com | [4ac 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [4ad 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [7ff 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2,syscc=true,proposal=0xc422405db0,canname=lscc:1.0.5 +peer0.org1.example.com | [800 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +orderer.example.com | [4ae 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [801 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4af 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [4b0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [802 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +orderer.example.com | [4b1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [4b2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [803 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4b3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [4b4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [804 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [805 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [4b5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [806 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [807 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Move state message TRANSACTION +orderer.example.com | [4b6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4b7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [808 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4b8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [4b9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [809 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [4ba 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [80a 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]sending state message TRANSACTION +orderer.example.com | [4bb 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +peer0.org1.example.com | [80b 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Received message TRANSACTION from shim +orderer.example.com | [4bc 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [80c 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [4bd 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [4be 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer0.org1.example.com | [80d 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5a96e6d7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4bf 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [4c0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [80e 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [80f 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Move state message COMPLETED +orderer.example.com | [4c1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +peer0.org1.example.com | [810 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4c2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [811 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]send state message COMPLETED +orderer.example.com | [4c3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +peer0.org1.example.com | [812 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Received message COMPLETED from shim +peer0.org1.example.com | [813 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [4c4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer0.org1.example.com | [814 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2]HandleMessage- COMPLETED. Notify +orderer.example.com | [4c5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [815 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 +orderer.example.com | [4c6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [4c7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [816 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [4c8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [817 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [4c9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer0.org1.example.com | [818 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [819 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b90e8efc-5a7b-4a87-83ab-1916d8e13599] +orderer.example.com | [4ca 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +peer0.org1.example.com | [81a 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [4cb 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org1.example.com | [81b 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [81c 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | [4cc 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [81d 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel version: 1.0.5 +orderer.example.com | [4cd 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [4ce 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [81e 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2,syscc=true,proposal=0xc422405db0,canname=escc:1.0.5 +orderer.example.com | [4cf 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [81f 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [4d0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [820 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [4d1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [4d2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [821 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [4d3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org1.example.com | [822 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [4d4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [4d5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer0.org1.example.com | [823 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [824 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [4d6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [825 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [4d7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [826 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Move state message TRANSACTION +peer0.org1.example.com | [827 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4d8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [828 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [4d9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [4da 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [829 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]sending state message TRANSACTION +peer0.org1.example.com | [82a 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Received message TRANSACTION from shim +peer0.org1.example.com | [82b 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [4db 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [82c 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5a96e6d7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [4dc 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [82d 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [4dd 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [82e 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [4de 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [82f 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Transaction completed. Sending COMPLETED +orderer.example.com | [4df 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [830 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Move state message COMPLETED +orderer.example.com | [4e0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [831 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [4e1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [4e2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [832 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]send state message COMPLETED +peer0.org1.example.com | [833 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Received message COMPLETED from shim +orderer.example.com | [4e3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [4e4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +peer0.org1.example.com | [834 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [4e5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [4e6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [4e7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [835 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2]HandleMessage- COMPLETED. Notify +orderer.example.com | [4e8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +peer0.org1.example.com | [836 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 +orderer.example.com | [4e9 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [4ea 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [4eb 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [4ec 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +orderer.example.com | [4ed 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [4ee 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1515797798021079289 evaluation starts +orderer.example.com | [4ef 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [4f0 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [4f1 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [837 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [838 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [839 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +peer0.org1.example.com | [83a 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b90e8efc-5a7b-4a87-83ab-1916d8e13599] +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +peer0.org1.example.com | [83b 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [83c 01-12 22:57:53.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [4f2 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [4f3 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [83d 01-12 22:57:53.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4222aeb40 +orderer.example.com | [4f4 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 +peer0.org1.example.com | [83e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [4f5 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 36 b3 b1 96 80 14 0f dd 43 da 67 36 c9 60 a8 |E6.......C.g6.`.| +peer0.org1.example.com | [83f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 00000010 9c 36 6d 44 2f 42 9d ea 31 4b 84 a2 5c 7b c9 44 |.6mD/B..1K..\{.D| +peer0.org1.example.com | [840 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +orderer.example.com | [4f6 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9f 5b b3 92 38 90 64 31 a5 58 2e |0E.!..[..8.d1.X.| +peer0.org1.example.com | [841 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 00000010 1a b5 5a 27 e7 21 f4 8a 58 5c ac 5f d9 56 4e 5d |..Z'.!..X\._.VN]| +peer0.org1.example.com | [842 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 00000020 a1 51 78 fe e4 02 20 0c 47 a0 82 40 76 1a 05 e7 |.Qx... .G..@v...| +peer0.org1.example.com | [843 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e259a0, header 0xc4222aeb70 +peer0.org1.example.com | [844 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | 00000030 c2 8d b6 c7 15 59 74 1d a4 49 0d e8 5c 86 8a b4 |.....Yt..I..\...| +orderer.example.com | 00000040 e7 a4 a6 5f 6e 98 10 |..._n..| +orderer.example.com | [4f7 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 +orderer.example.com | [4f8 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1515797798021079289 evaluation succeeds +peer0.org1.example.com | [845 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 +orderer.example.com | [4f9 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420397fa0 1 [0xc42017c700]})]} +peer0.org1.example.com | [846 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8] +peer0.org1.example.com | [847 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [848 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f8d5f9cf-67c4-422a-b645-4369a6dfe3aa] +orderer.example.com | [4fa 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [849 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel +peer0.org1.example.com | [84a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel version: 1.0.5 +orderer.example.com | [4fb 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [4fc 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [84b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8,syscc=true,proposal=0xc421e259a0,canname=lscc:1.0.5 +peer0.org1.example.com | [84c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +peer0.org1.example.com | [84d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [84e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +peer0.org1.example.com | [84f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [850 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [851 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [4fd 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [4fe 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A6FAE4D20522...41646D696E7310021A0641646D696E73 +peer0.org1.example.com | [852 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [853 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Move state message TRANSACTION +peer0.org1.example.com | [854 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [4ff 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: D2C8C8A7D1B6FA0B17209741E3DA480B62B7DE2CFBDB23E4A197C07487970372 +peer0.org1.example.com | [855 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [856 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]sending state message TRANSACTION +peer0.org1.example.com | [857 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message TRANSACTION from shim +peer0.org1.example.com | [858 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [859 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89d80ff9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [500 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [85a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [89d80ff9]Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [85b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message GET_STATE_BY_RANGE from shim +peer0.org1.example.com | [85c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +orderer.example.com | [501 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [85d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +peer0.org1.example.com | [85e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +orderer.example.com | [502 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [85f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [503 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [860 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +peer0.org1.example.com | [861 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +peer0.org1.example.com | [862 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +peer0.org1.example.com | [863 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [89d80ff9]handleGetStateByRange serial send RESPONSE +peer0.org1.example.com | [864 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message RESPONSE from shim +peer0.org1.example.com | [865 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [866 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]before send +peer0.org1.example.com | [867 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]after send +orderer.example.com | [504 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [868 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [89d80ff9]Received RESPONSE. Successfully got range +peer0.org1.example.com | [869 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [89d80ff9]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [86a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [89d80ff9]Sending QUERY_STATE_CLOSE +orderer.example.com | [505 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [86b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message QUERY_STATE_CLOSE from shim +peer0.org1.example.com | [86c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +peer0.org1.example.com | [86d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +orderer.example.com | [506 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [86e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +orderer.example.com | [507 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [86f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [508 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [870 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +orderer.example.com | [509 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [871 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [89d80ff9]handleQueryStateClose serial send RESPONSE +orderer.example.com | [50a 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [872 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message RESPONSE from shim +orderer.example.com | [50b 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [873 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [50c 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [50d 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [874 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]before send +orderer.example.com | [50e 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [875 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]after send +orderer.example.com | [50f 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [876 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [89d80ff9]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [877 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [89d80ff9]Received RESPONSE. Successfully got range +orderer.example.com | [510 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [878 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [879 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Move state message COMPLETED +orderer.example.com | [511 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [512 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [87a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [513 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [514 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [87b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]send state message COMPLETED +orderer.example.com | [515 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [87c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message COMPLETED from shim +orderer.example.com | [516 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [87d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [517 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [87e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8]HandleMessage- COMPLETED. Notify +orderer.example.com | [518 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [87f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 +orderer.example.com | [519 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [880 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [51a 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [881 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [51b 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [882 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [883 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f8d5f9cf-67c4-422a-b645-4369a6dfe3aa] +peer0.org1.example.com | [884 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [51c 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [885 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | [51d 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [51e 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [51f 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +orderer.example.com | [520 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [521 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [886 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [887 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel version: 1.0.5 +orderer.example.com | [522 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [888 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8,syscc=true,proposal=0xc421e259a0,canname=escc:1.0.5 +orderer.example.com | [523 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [889 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [524 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [525 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [88a 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [526 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [88b 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [527 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [88c 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [528 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [88d 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [529 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [88e 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [52a 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [52b 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [88f 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [52c 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [890 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Move state message TRANSACTION +orderer.example.com | [52d 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [52e 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [52f 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +peer0.org1.example.com | [891 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [530 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [892 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [531 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [893 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]sending state message TRANSACTION +orderer.example.com | [532 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [894 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message TRANSACTION from shim +peer0.org1.example.com | [895 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [533 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [896 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89d80ff9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | [534 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [897 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | [535 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [898 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | [536 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +peer0.org1.example.com | [899 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [89a 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Move state message COMPLETED +peer0.org1.example.com | [89b 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [89c 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]send state message COMPLETED +orderer.example.com | [537 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +peer0.org1.example.com | [89d 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message COMPLETED from shim +orderer.example.com | [538 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [89e 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [539 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +peer0.org1.example.com | [89f 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8a0 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 +orderer.example.com | [53a 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [8a1 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8a2 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | [53b 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [8a3 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [53c 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [53e 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [8a4 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f8d5f9cf-67c4-422a-b645-4369a6dfe3aa] +orderer.example.com | [53f 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +peer0.org1.example.com | [8a5 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | [540 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [541 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +peer0.org1.example.com | [8a6 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [542 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [8a7 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229a26c0 +orderer.example.com | [543 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [8a8 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [8a9 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [544 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [8aa 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org1.example.com | [8ab 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [545 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [8ac 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [546 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [547 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [548 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [8ad 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422960aa0, header 0xc4229a26f0 +orderer.example.com | [549 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [54b 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [54c 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [53d 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found +orderer.example.com | [54d 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [8ae 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | [54e 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [54f 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [551 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [552 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [553 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [8af 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d +orderer.example.com | [554 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [555 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [8b0 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d] +orderer.example.com | [556 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [8b1 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [557 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [558 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [559 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +peer0.org1.example.com | [8b2 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [515ebe05-2f68-4255-aa27-bb5821f01177] +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +peer0.org1.example.com | [8b3 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [55a 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [8b4 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel version: 1.0.5 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [8b5 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d,syscc=true,proposal=0xc422960aa0,canname=qscc:1.0.5 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [8b6 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [8b7 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [8b8 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [8b9 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [8ba 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [8bb 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [8bc 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org1.example.com | [8bd 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Move state message TRANSACTION +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer0.org1.example.com | [8be 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8bf 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [55b 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [8c0 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]sending state message TRANSACTION +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [8c1 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Received message TRANSACTION from shim +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [8c2 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [8c3 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a7f7389]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +peer0.org1.example.com | [8c4 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [8c5 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Transaction completed. Sending COMPLETED +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +peer0.org1.example.com | [8c6 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Move state message COMPLETED +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +peer0.org1.example.com | [8c7 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [55c 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org1.example.com | [8c8 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]send state message COMPLETED +peer0.org1.example.com | [8c9 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Received message COMPLETED from shim +orderer.example.com | [55d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [55e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [55f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [8ca 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [560 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [561 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8cb 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8cc 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [8cd 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8ce 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [8cf 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [8d0 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [515ebe05-2f68-4255-aa27-bb5821f01177] +peer0.org1.example.com | [8d1 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [8d2 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [8d3 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [8d4 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel version: 1.0.5 +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +peer0.org1.example.com | [8d5 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d,syscc=true,proposal=0xc422960aa0,canname=escc:1.0.5 +peer0.org1.example.com | [8d6 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +peer0.org1.example.com | [8d7 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8d8 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +peer0.org1.example.com | [8d9 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [562 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [8da 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [8db 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [8dc 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [8dd 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Move state message TRANSACTION +peer0.org1.example.com | [8de 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [8df 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8e0 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]sending state message TRANSACTION +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [8e1 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Received message TRANSACTION from shim +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | [8e2 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [8e3 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a7f7389]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8e4 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [8e5 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +peer0.org1.example.com | [8e6 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8e7 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Move state message COMPLETED +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [8e8 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [8e9 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]send state message COMPLETED +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [8ea 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Received message COMPLETED from shim +peer0.org1.example.com | [8eb 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8ec 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8ed 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [8ee 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8ef 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8f0 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8f1 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [515ebe05-2f68-4255-aa27-bb5821f01177] +peer0.org1.example.com | [8f2 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [8f3 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8f4 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +orderer.example.com | [563 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8f5 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [8f6 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [8f7 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [8f8 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422848570 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [8f9 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | [8fa 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +peer0.org1.example.com | [8fb 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [8fc 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8fd 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [8fe 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [564 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [8ff 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4224de000, header channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +peer0.org1.example.com | [900 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [901 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [902 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [903 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | [565 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [904 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] +peer0.org1.example.com | [905 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | [566 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [906 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [c88865a9-d8f1-4ace-bff5-16a1c2fd7b0c] +peer0.org1.example.com | [907 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | [567 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [568 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org1.example.com | [908 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c88865a9-d8f1-4ace-bff5-16a1c2fd7b0c] +orderer.example.com | [569 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [909 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [90a 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4a141338-4de7-411e-b5c3-fd5d07225850] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [90b 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=502adefd-7cdd-4b50-9e02-6f5801f2f814,syscc=true,proposal=0x0,canname=vscc:1.0.5 +peer0.org1.example.com | [90c 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 chaindID businesschannel +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [90d 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [90e 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [90f 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +peer0.org1.example.com | [910 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [502adefd]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [911 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +peer0.org1.example.com | [912 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [502adefd]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [913 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [502adefd]Move state message TRANSACTION +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +peer0.org1.example.com | [914 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [502adefd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +peer0.org1.example.com | [915 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +peer0.org1.example.com | [916 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [502adefd]sending state message TRANSACTION +orderer.example.com | RTCauNNt1A== +peer0.org1.example.com | [917 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]Received message TRANSACTION from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [918 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [502adefd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [56a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [919 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [502adefd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [91a 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [91b 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [91c 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +peer0.org1.example.com | [91d 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [91e 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]Move state message COMPLETED +peer0.org1.example.com | [91f 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [502adefd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [920 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]send state message COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [921 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [502adefd]Received message COMPLETED from shim +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +peer0.org1.example.com | [922 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [502adefd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org1.example.com | [923 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [502adefd-7cdd-4b50-9e02-6f5801f2f814]HandleMessage- COMPLETED. Notify +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org1.example.com | [924 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:502adefd-7cdd-4b50-9e02-6f5801f2f814 +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +peer0.org1.example.com | [925 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [56b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [926 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4a141338-4de7-411e-b5c3-fd5d07225850] +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [927 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [928 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [929 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421df2800), Data:(*common.BlockData)(0xc4220a5e20), Metadata:(*common.BlockMetadata)(0xc4220a5e60)}, doMVCCValidation=true +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [92a 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [92b 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +peer0.org1.example.com | [92c 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +peer0.org1.example.com | [92d 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +peer0.org1.example.com | [92e 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] marked as valid by state validator +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +peer0.org1.example.com | [92f 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [56c 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 +peer0.org1.example.com | ] +orderer.example.com | [56d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [930 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to index +peer0.org1.example.com | [931 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx number:[0] ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to blockNumTranNum index +orderer.example.com | [56e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [932 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59191], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [933 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +orderer.example.com | [56f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [570 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org1.example.com | [934 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | [571 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [572 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org1.example.com | [935 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [573 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [936 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +orderer.example.com | [574 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org1.example.com | [937 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +orderer.example.com | [575 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [938 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | [576 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [939 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [93a 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | [577 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [578 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [93b 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [93c 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +peer0.org1.example.com | [93d 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | [579 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [93e 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | [57a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [57b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [93f 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [57c 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [57d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [940 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [941 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | [57e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [942 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | [57f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [943 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | [580 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [581 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [944 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229c95c0 +peer0.org1.example.com | [945 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [582 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [946 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | [583 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [947 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +peer0.org1.example.com | [948 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | [584 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [949 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | [585 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [94a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fd0730, header 0xc4229c95f0 +peer0.org1.example.com | [94b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [94c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 +orderer.example.com | [586 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [587 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +peer0.org1.example.com | [94d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0] +orderer.example.com | [588 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org1.example.com | [94e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [589 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [58a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [58b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [94f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [891cdda9-42eb-4bb3-b762-21dc14b625e2] +orderer.example.com | [58c 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [950 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel +orderer.example.com | [58d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [951 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [952 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0,syscc=true,proposal=0xc421fd0730,canname=qscc:1.0.5 +orderer.example.com | [58e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [58f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +peer0.org1.example.com | [953 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +peer0.org1.example.com | [954 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [590 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [955 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +peer0.org1.example.com | [956 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [957 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [591 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +peer0.org1.example.com | [958 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [959 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [592 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [95a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Move state message TRANSACTION +peer0.org1.example.com | [95b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [593 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +peer0.org1.example.com | [95c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [95d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]sending state message TRANSACTION +peer0.org1.example.com | [95e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Received message TRANSACTION from shim +peer0.org1.example.com | [95f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [960 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [22b7af6a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [961 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +peer0.org1.example.com | [962 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +peer0.org1.example.com | [963 01-12 22:57:54.53 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=[25655] +peer0.org1.example.com | [964 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[33536], Going to peek [8] bytes +peer0.org1.example.com | [965 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13781], placementInfo={fileNum=[0], startOffset=[25655], bytesOffset=[25657]} +peer0.org1.example.com | [966 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [967 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Move state message COMPLETED +peer0.org1.example.com | [968 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | [594 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org1.example.com | [969 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]send state message COMPLETED +peer0.org1.example.com | [96a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Received message COMPLETED from shim +peer0.org1.example.com | [96b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [595 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer0.org1.example.com | [96c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0]HandleMessage- COMPLETED. Notify +orderer.example.com | [596 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer0.org1.example.com | [96d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 +orderer.example.com | [597 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +peer0.org1.example.com | [96e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [598 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [96f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | [599 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [970 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | [59a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [59b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +peer0.org1.example.com | [971 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [891cdda9-42eb-4bb3-b762-21dc14b625e2] +peer0.org1.example.com | [972 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | [59c 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [973 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [974 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | [59d 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +peer0.org1.example.com | [975 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel version: 1.0.5 +peer0.org1.example.com | [976 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0,syscc=true,proposal=0xc421fd0730,canname=escc:1.0.5 +peer0.org1.example.com | [977 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +orderer.example.com | [59e 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [59f 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [5a0 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org1.example.com | [978 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | [5a1 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [5a2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer0.org1.example.com | [979 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +orderer.example.com | [5a3 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [5a4 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +peer0.org1.example.com | [97a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | [5a5 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | [5a6 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [5a7 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [5a8 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | [5a9 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [5aa 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [97b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | [5ab 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [5ac 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [97c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | [5ad 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [5ae 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [5af 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [5b0 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [5b1 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [5b2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [5b3 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [97d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | [5b4 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [97e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Move state message TRANSACTION +orderer.example.com | [5b5 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [97f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | [5b6 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +peer0.org1.example.com | [980 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | [5b7 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200263b8 gate 1515797798063909763 evaluation starts +orderer.example.com | [5b8 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [981 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]sending state message TRANSACTION +orderer.example.com | [5b9 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [982 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Received message TRANSACTION from shim +orderer.example.com | [5ba 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [983 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [984 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [22b7af6a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [985 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +peer0.org1.example.com | [986 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +peer0.org1.example.com | [987 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [988 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Move state message COMPLETED +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +peer0.org1.example.com | [989 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +peer0.org1.example.com | [98a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]send state message COMPLETED +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +peer0.org1.example.com | [98b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Received message COMPLETED from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [98c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [5bb 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org1.example.com | [98d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [98e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 +orderer.example.com | [5bc 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 principal matched by identity 0 +peer0.org1.example.com | [98f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | [5bd 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +peer0.org1.example.com | [990 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +peer0.org1.example.com | [991 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | [5be 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +peer0.org1.example.com | [992 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [891cdda9-42eb-4bb3-b762-21dc14b625e2] +orderer.example.com | 00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +orderer.example.com | 00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +peer0.org1.example.com | [993 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | 00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +orderer.example.com | 00000040 88 95 6d d3 74 2c 02 |..m.t,.| +orderer.example.com | [550 01-12 22:56:38.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [54a 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [5c0 01-12 22:56:38.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [5c1 01-12 22:56:38.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [5c2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [5c3 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [5bf 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 principal evaluation succeeds for identity 0 +orderer.example.com | [5c4 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200263b8 gate 1515797798063909763 evaluation succeeds +orderer.example.com | [5c5 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5c6 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5c7 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5c8 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5c9 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5ca 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5cb 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5cc 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5cd 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5ce 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5cf 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5d0 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5d1 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5d2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5d3 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [5d4 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5d5 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5d6 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5d7 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5d8 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [5d9 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [5da 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [5db 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [5dc 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [5dd 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [5de 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [5df 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [5e0 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [5e1 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [5e2 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [5e3 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [5e4 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [5e5 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5e6 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5e7 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [5e8 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [5e9 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5ea 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5eb 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [5ec 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [5ed 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [5ee 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5ef 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5f0 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [5f1 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [5f2 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [5f3 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5f4 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [5f5 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [5f6 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [5f7 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [5f8 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [5f9 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [5fa 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [5fb 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [5fc 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [5fd 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [5fe 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [5ff 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [600 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [601 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [602 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [603 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [604 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [605 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [606 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [607 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [608 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [609 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [60a 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [60b 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [60c 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [60d 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [60e 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [60f 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [610 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [611 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [612 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [613 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [614 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [615 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [616 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [617 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [618 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [619 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [61a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [61b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [61c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [61d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [61e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [61f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [620 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [621 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [622 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [623 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [624 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [625 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [626 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [627 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [628 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [629 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [62a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [62b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [62c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [62d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [62e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [62f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [630 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [631 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [632 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [633 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [634 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [635 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [636 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [637 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [638 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [639 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [63a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [63b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [63c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [63d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [63e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [63f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [640 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [641 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [642 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [643 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [644 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [645 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [646 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [647 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [648 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [649 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [64a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [64b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [64c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [64d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [64e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [64f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [650 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | [651 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797798107378318 evaluation starts +orderer.example.com | [652 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [653 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [654 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [655 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [656 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal matched by identity 0 +orderer.example.com | [657 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +orderer.example.com | 00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +orderer.example.com | [658 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +orderer.example.com | 00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +orderer.example.com | 00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +orderer.example.com | 00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +orderer.example.com | 00000040 88 95 6d d3 74 2c 02 |..m.t,.| +orderer.example.com | [659 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal evaluation succeeds for identity 0 +orderer.example.com | [65a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797798107378318 evaluation succeeds +orderer.example.com | [65b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [65c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [65d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [65e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [65f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [660 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [661 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [662 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [663 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [664 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [665 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [666 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [667 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [668 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [669 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [66a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [66b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [66c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [66d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [66e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [66f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [670 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [671 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [672 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [673 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [674 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [675 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [676 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [677 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [678 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [679 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [67a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [67b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [67c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [67d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [67e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [67f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [680 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [681 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [682 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [683 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [684 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [685 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [686 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [687 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [688 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [689 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [68a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [68b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [68c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [68d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [68e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [68f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [690 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [691 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [692 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [693 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [694 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [695 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [696 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [697 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [698 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [699 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [69a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [69b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [69c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [69d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [69e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [69f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a0 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a1 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a2 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [6a3 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [6a4 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [6a5 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6a6 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [6a7 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a8 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6a9 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6aa 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [6ab 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [6ac 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [6ad 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6ae 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [6af 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b0 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b1 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b2 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [6b3 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [6b4 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [6b5 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6b6 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [6b7 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6b8 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [6b9 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6ba 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [6bb 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6bc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6bd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6be 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6bf 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6c0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [6c1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6c2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [6c3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6c4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [6c5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6c6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [6c7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6c8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [6c9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6ca 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [6cb 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6cc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6cd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6ce 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6cf 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6d0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6d1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [6d2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [6d3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [6d4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [6d5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [6d6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [6d7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6d8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [6d9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [6da 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [6db 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6dc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [6dd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6de 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [6df 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [6e0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [6e1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [6e2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [6e3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6e4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [6e5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6e6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [6e7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6e8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [6e9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [6ea 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [6eb 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [6ec 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [6ed 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [6ee 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [6ef 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [6f0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [6f1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6f2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6f3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6f4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6f5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6f6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [6f7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [6f8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [6f9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [6fa 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [6fb 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [6fc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [6fd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [6fe 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [6ff 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [700 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [701 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [702 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [703 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [704 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [705 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [706 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [707 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [708 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [709 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [70a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [70b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [70c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [70d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [70e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [70f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [710 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [711 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [712 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [713 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [714 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [715 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [716 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [717 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [718 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [719 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [71a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [71b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [71c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [71d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [71e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [71f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [720 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [721 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [722 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [723 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [724 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [725 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [726 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [727 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [728 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [729 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [72a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [72b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [72c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [72d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [72e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [72f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [730 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [731 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [732 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [733 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [734 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [735 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [736 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [737 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [738 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [739 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [73a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [73b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [73c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [73d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [73e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [73f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [740 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [741 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [742 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [743 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [744 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [745 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [746 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [747 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [748 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [749 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [74a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [74b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [74c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [74d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [74e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [74f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [750 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [751 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [752 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [753 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [754 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [755 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [756 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [757 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [758 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [759 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [75a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [75b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [75c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [75d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [75e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [75f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [760 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [761 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [762 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [763 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [764 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [765 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [766 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [767 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [768 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [769 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [76a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [76b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [76c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [76d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [76e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [76f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [770 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [771 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [772 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [773 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [774 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [775 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [776 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [777 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [778 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [779 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [77a 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [77b 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [77c 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [77d 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [77e 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [77f 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [780 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [781 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [782 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [783 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [784 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [785 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [786 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [787 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [788 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [789 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [78a 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [78b 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [78c 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [78d 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [78e 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [78f 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [790 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [791 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [792 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [793 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [794 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [795 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [796 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [797 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [798 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [799 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [79a 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [79b 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [79c 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [79d 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [79e 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [79f 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [7a0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [7a1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7a2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [7a3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [7a4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [7a5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [7a6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [7a7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [7a8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [7a9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [7aa 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [7ab 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [7ac 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [7ad 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7ae 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [7af 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7b0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7b1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7b2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7b3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [7b4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [7b5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [7b6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [7b7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [7b8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [7b9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [7ba 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [7bb 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [7bc 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [7bd 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [7be 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [7bf 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [7c0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [7c1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +orderer.example.com | [7c2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [7c3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [7c4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +orderer.example.com | [7c5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [7c6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [7c7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [7c8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [7c9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [7ca 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [7cb 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [7cc 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [7cd 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [7ce 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [7cf 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [7d0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [7d1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [7d2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [7d3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [7d4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [7d5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [7d6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [7d7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [7d8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [7d9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [7da 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [7db 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [7dc 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [7dd 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [7de 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [7df 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [7e0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [7e1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [7e2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [7e3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [7e4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [7e5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [7e6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [7e7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [7e8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [7e9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [7ea 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [7eb 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [7ec 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [7ed 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [7ee 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [7ef 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [7f0 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [7f1 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [7f2 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [7f3 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [7f4 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [7f5 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [7f6 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [7f7 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [7f8 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [7f9 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [7fa 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [7fb 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [7fc 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [7fd 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [7fe 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [7ff 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [800 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [801 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [802 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [803 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [804 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [805 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [806 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [807 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [808 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [809 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [80a 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [80b 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [80c 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [80d 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [80e 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [80f 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [810 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [811 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [812 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [813 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [814 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [815 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [816 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [817 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [818 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [819 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [81a 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [81b 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [81c 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [81d 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [81e 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [81f 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [820 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [821 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [822 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [823 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [824 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [825 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [826 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [827 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [828 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [829 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [82a 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [82b 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [82c 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [82d 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [82e 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [82f 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [830 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [831 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [832 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [833 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [834 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [835 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [836 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [837 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [838 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [839 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [83a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [83b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [83c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [83d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [83e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [83f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [840 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [841 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [842 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [843 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [844 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [845 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [846 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [847 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [848 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [849 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [84a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [84b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [84c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [84d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [84e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [84f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [850 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [851 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [852 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [853 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [854 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [855 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [856 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [857 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [858 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [859 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [85a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [85b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [85c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [85d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [85e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [85f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [860 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [861 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [862 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [863 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [864 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [865 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [866 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [867 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [868 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [869 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [86a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [86b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [86c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [86d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [86e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [86f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [870 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [871 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [872 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [873 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [874 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [875 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [876 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [877 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [878 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [879 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [87a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [87b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [87c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [87d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [87e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [87f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [880 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [881 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [882 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [883 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [884 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | [885 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +orderer.example.com | [886 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +orderer.example.com | [887 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +orderer.example.com | [888 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +orderer.example.com | [889 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | [88a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [88b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | [88c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +orderer.example.com | [88d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | [88e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42017b160)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [88f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +orderer.example.com | [890 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +orderer.example.com | txId= locPointer=offset=38, bytesLength=11883 +orderer.example.com | ] +orderer.example.com | [891 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11926], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | [892 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [893 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [894 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11926], Going to peek [8] bytes +orderer.example.com | [895 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11924], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [896 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +orderer.example.com | [897 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel +orderer.example.com | [898 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42080ee40 chain:0xc42080f300 cutter:0xc420811720 filters:0xc42080eea0 signer:0x128b4a8 lastConfig:0 lastConfigSeq:0} +orderer.example.com | [899 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [89a 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [89b 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [89c 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [89d 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [89e 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...D11DFA43757CF5E5EC344628383D6110 +orderer.example.com | [89f 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 518472013E1241C4D53E06DBA6280CC8808767CECD76866B1041CD6421893EFF +orderer.example.com | [8a0 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8a1 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8a2 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +orderer.example.com | [8a3 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [8a4 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8a5 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...D11DFA43757CF5E5EC344628383D6110 +orderer.example.com | [8a6 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 51BB7D10EC392DA3FF6956AC3F3D2F0C48B6C017C33C41868C1DCC9733FBF584 +orderer.example.com | [8a7 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf5, 0xa1, 0x43, 0x1d, 0x4a, 0xa, 0x12, 0x77, 0x5b, 0x91, 0x7f, 0x23, 0x64, 0xf4, 0x99, 0x4a, 0x24, 0x34, 0xaa, 0xf5, 0x65, 0x92, 0x22, 0x72, 0xfa, 0xeb, 0xdb, 0x71, 0x82, 0x6a, 0x4d, 0xed} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12784 +orderer.example.com | ] +orderer.example.com | [8a8 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23675], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [8a9 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 +orderer.example.com | [8aa 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [8ab 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cae8 gate 1515797798268296319 evaluation starts +orderer.example.com | [8ac 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8ad 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8ae 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8af 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [8b0 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 principal evaluation fails +orderer.example.com | [8b1 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cae8 gate 1515797798268296319 evaluation fails +orderer.example.com | [8b2 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017caf8 gate 1515797798271294319 evaluation starts +orderer.example.com | [8b3 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8b4 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8b5 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8b6 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [8b7 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [8b8 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 principal matched by identity 0 +orderer.example.com | [8b9 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d1 ca 90 85 9e 34 0f bf 61 56 b9 09 b2 b5 8c 8f |.....4..aV......| +orderer.example.com | 00000010 87 dd ae d3 a0 1e 6e 0b e9 bd 00 75 80 05 9c 54 |......n....u...T| +orderer.example.com | [8ba 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 57 c1 ca 53 e0 d0 cd 6f 62 91 a2 e9 |0D. W..S...ob...| +orderer.example.com | 00000010 6c 16 20 33 26 96 22 78 d6 55 62 c9 0f 8a ae 86 |l. 3&."x.Ub.....| +orderer.example.com | 00000020 5c 6c ca 54 02 20 3e dd 13 8a 49 4c 2f 91 c6 28 |\l.T. >...IL/..(| +orderer.example.com | 00000030 13 6e 55 d6 06 59 c8 73 ba 68 d2 d7 e4 8c 5d b5 |.nU..Y.s.h....].| +orderer.example.com | 00000040 bf 33 87 c0 40 02 |.3..@.| +orderer.example.com | [8bb 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 principal evaluation succeeds for identity 0 +orderer.example.com | [8bc 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017caf8 gate 1515797798271294319 evaluation succeeds +orderer.example.com | [8bd 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420aee640 1 [0xc42017c4e8]}) %!s(*policies.implicitMetaPolicy=&{0xc420aeff00 1 [0xc42017c720 0xc42017c9c8]})]} +orderer.example.com | [8be 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420887b80) start: > stop: > +orderer.example.com | [8bf 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [8c0 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [8c1 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11926], Going to peek [8] bytes +orderer.example.com | [8c2 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11924], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [8c3 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420887b80) +orderer.example.com | [8c4 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420887b80), waiting for new SeekInfo +orderer.example.com | [8c5 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [8c6 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [8c7 01-12 22:56:38.27 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [8c8 01-12 22:56:39.50 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [8c9 01-12 22:56:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [8ca 01-12 22:56:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [8cb 01-12 22:56:39.51 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [8cc 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [8cd 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +orderer.example.com | [8ce 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +orderer.example.com | [8cf 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [8d0 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [8d1 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [8d2 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [8d3 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [8d4 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [8d5 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [8d6 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [8d7 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [8d8 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [8d9 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [8da 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [8db 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [8dc 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [8dd 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [8de 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [8df 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cda0 gate 1515797799521244031 evaluation starts +orderer.example.com | [8e0 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8e1 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [8e2 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8e3 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [8e4 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 principal matched by identity 0 +orderer.example.com | [8e5 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +orderer.example.com | 00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +orderer.example.com | [8e6 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +orderer.example.com | 00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +orderer.example.com | 00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +orderer.example.com | 00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +orderer.example.com | 00000040 80 21 fd 56 14 8f |.!.V..| +orderer.example.com | [8e7 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 principal evaluation succeeds for identity 0 +orderer.example.com | [8e8 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cda0 gate 1515797799521244031 evaluation succeeds +orderer.example.com | [8e9 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8ea 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8eb 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8ec 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [8ed 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8ee 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8ef 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8f0 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [8f1 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [8f2 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [8f3 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8f4 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8f5 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8f6 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8f7 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8f8 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8f9 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [8fa 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [8fb 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [8fc 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [8fd 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [8fe 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [8ff 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [900 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [901 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [902 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [903 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [904 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [905 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [906 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [907 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [908 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [909 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [90a 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [90b 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [90c 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [90d 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [90e 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [90f 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [910 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [911 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [912 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [913 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [914 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [915 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [916 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [917 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [918 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [919 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [91a 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [91b 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [91c 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [91d 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [91e 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [91f 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [920 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [921 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [922 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [923 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [924 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [925 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [926 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [927 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [928 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [929 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [92a 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [92b 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [92c 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [92d 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [92e 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [92f 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [930 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [931 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [932 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [933 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [934 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [935 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [936 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [937 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [938 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [939 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [93a 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [93b 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [93c 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [93d 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [93e 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [93f 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [940 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [941 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [942 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [943 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [944 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [945 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [946 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [947 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A7FAE4D20522...F6697CBA4AAD120D3832202CE96294DC +orderer.example.com | [948 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 65DAE87FAC1A749F8CA8148A37A982A40562C0FCF5C0F044E9B2E7E5F00AF5BC +orderer.example.com | [949 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | [94a 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [94b 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017d170 gate 1515797799546570962 evaluation starts +orderer.example.com | [94c 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [94d 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [94e 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [94f 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [950 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [951 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 principal matched by identity 0 +orderer.example.com | [952 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 65 da e8 7f ac 1a 74 9f 8c a8 14 8a 37 a9 82 a4 |e.....t.....7...| +orderer.example.com | 00000010 05 62 c0 fc f5 c0 f0 44 e9 b2 e7 e5 f0 0a f5 bc |.b.....D........| +orderer.example.com | [953 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 89 8d ff 98 a6 f2 5d a9 a4 07 36 |0E.!.......]...6| +orderer.example.com | 00000010 94 a1 8c e0 df 8d 25 12 b2 94 0d 61 11 1e 9d 04 |......%....a....| +orderer.example.com | 00000020 71 13 d9 de 2b 02 20 26 5f a1 28 bd 0a 82 6c 19 |q...+. &_.(...l.| +orderer.example.com | 00000030 f6 d4 39 3c cc a5 72 7b 47 18 91 01 ed 0d 25 b8 |..9<..r{G.....%.| +orderer.example.com | 00000040 bc 5f ef 86 3d 01 cf |._..=..| +orderer.example.com | [954 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 principal evaluation succeeds for identity 0 +orderer.example.com | [955 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017d170 gate 1515797799546570962 evaluation succeeds +orderer.example.com | [956 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420aee740 1 [0xc42017c510]}) %!s(*policies.implicitMetaPolicy=&{0xc420aefe00 1 [0xc42017c818 0xc42017c920]})]} +orderer.example.com | [957 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [958 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [959 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [95a 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [95b 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [95c 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [95d 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [95e 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [95f 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [960 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [961 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [962 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [963 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [964 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [965 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [966 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [967 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017d750 gate 1515797799552095498 evaluation starts +orderer.example.com | [968 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [969 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [96a 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [96b 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [96c 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 principal matched by identity 0 +orderer.example.com | [96d 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +orderer.example.com | 00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +orderer.example.com | [96e 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +orderer.example.com | 00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +orderer.example.com | 00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +orderer.example.com | 00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +orderer.example.com | 00000040 80 21 fd 56 14 8f |.!.V..| +orderer.example.com | [96f 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 principal evaluation succeeds for identity 0 +orderer.example.com | [970 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017d750 gate 1515797799552095498 evaluation succeeds +orderer.example.com | [971 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [972 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [973 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [974 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [975 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [976 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [977 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [978 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [979 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [97a 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [97b 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [97c 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [97d 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [97e 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [97f 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [980 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [981 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [982 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [983 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [984 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [985 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [986 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [987 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [988 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [989 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [98a 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [98b 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [98c 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [98d 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [98e 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [98f 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [990 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [991 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [992 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [993 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [994 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [995 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [996 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [997 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [998 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [999 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [99a 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [99b 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [99c 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [99d 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [99e 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [99f 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9a0 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [9a1 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [9a2 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [9a3 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [9a4 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [9a5 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [9a6 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [9a7 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [9a8 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [9a9 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [9aa 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [9ab 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [9ac 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [9ad 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [9ae 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [9af 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [9b0 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [9b1 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [9b2 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [9b3 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [9b4 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [9b5 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [9b6 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9b7 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9b8 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9b9 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [9ba 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [9bb 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [9bc 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [9bd 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [9be 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9bf 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9c0 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9c1 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [9c2 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [9c3 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [9c4 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [9c5 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9c6 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9c7 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9c8 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9c9 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [9ca 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [9cb 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | [9cc 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [9cd 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797799584878198 evaluation starts +orderer.example.com | [9ce 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9cf 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [9d0 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9d1 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [9d2 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [9d3 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal matched by identity 0 +orderer.example.com | [9d4 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 65 da e8 7f ac 1a 74 9f 8c a8 14 8a 37 a9 82 a4 |e.....t.....7...| +orderer.example.com | 00000010 05 62 c0 fc f5 c0 f0 44 e9 b2 e7 e5 f0 0a f5 bc |.b.....D........| +orderer.example.com | [9d5 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 89 8d ff 98 a6 f2 5d a9 a4 07 36 |0E.!.......]...6| +orderer.example.com | 00000010 94 a1 8c e0 df 8d 25 12 b2 94 0d 61 11 1e 9d 04 |......%....a....| +orderer.example.com | 00000020 71 13 d9 de 2b 02 20 26 5f a1 28 bd 0a 82 6c 19 |q...+. &_.(...l.| +orderer.example.com | 00000030 f6 d4 39 3c cc a5 72 7b 47 18 91 01 ed 0d 25 b8 |..9<..r{G.....%.| +orderer.example.com | 00000040 bc 5f ef 86 3d 01 cf |._..=..| +orderer.example.com | [9d6 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation succeeds for identity 0 +orderer.example.com | [9d7 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797799584878198 evaluation succeeds +orderer.example.com | [9d8 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420aee740 1 [0xc42017c510]}) %!s(*policies.implicitMetaPolicy=&{0xc420aefe00 1 [0xc42017c818 0xc42017c920]})]} +orderer.example.com | [9d9 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [9da 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [9db 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [9dc 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [9dd 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [9de 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [9df 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [9e0 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [9e1 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [9e2 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [9e3 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [9e4 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [9e5 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [9e6 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [9e7 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [9e8 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [9e9 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026630 gate 1515797799588823525 evaluation starts +orderer.example.com | [9ea 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9eb 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [9ec 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [9ed 01-12 22:56:39.59 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [9ee 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [9ef 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [9f1 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 principal matched by identity 0 +orderer.example.com | [9f2 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +orderer.example.com | 00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +orderer.example.com | [9f3 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +orderer.example.com | 00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +orderer.example.com | 00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +orderer.example.com | 00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +orderer.example.com | 00000040 80 21 fd 56 14 8f |.!.V..| +orderer.example.com | [9f4 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 principal evaluation succeeds for identity 0 +orderer.example.com | [9f5 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026630 gate 1515797799588823525 evaluation succeeds +orderer.example.com | [9f0 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [9f7 01-12 22:56:39.59 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [9f6 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [9f8 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [9f9 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [9fa 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [9fb 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [9fc 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [9fd 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [9fe 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [9ff 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [a00 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [a01 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a02 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a03 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a04 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a05 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a06 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a07 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a08 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a09 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a0a 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [a0b 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [a0c 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [a0d 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [a0e 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [a0f 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [a10 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [a11 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [a12 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [a13 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [a14 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [a15 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [a16 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [a17 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a18 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a19 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [a1a 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [a1b 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a1c 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a1d 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [a1e 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [a1f 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [a20 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a21 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a22 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [a23 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [a24 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a25 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a26 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [a27 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [a28 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [a29 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [a2a 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [a2b 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [a2c 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [a2d 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [a2e 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [a2f 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [a30 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [a31 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [a32 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [a33 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [a34 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [a35 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [a36 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [a37 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [a38 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [a39 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [a3a 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [a3b 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [a3c 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a3d 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a3e 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a3f 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [a40 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [a41 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [a42 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [a43 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [a44 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a45 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a46 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a47 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [a48 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [a49 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [a4a 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [a4b 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a4c 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a4d 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a4e 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a4f 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [a50 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [a51 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +orderer.example.com | [a52 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | [a53 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [a54 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11926], Going to peek [8] bytes +orderer.example.com | [a55 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11924], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [a56 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [a57 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [a58 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [a59 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [a5a 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [a5b 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a5c 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [a5d 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [a5e 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [a5f 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [a60 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [a61 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [a62 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [a63 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [a64 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [a65 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [a66 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [a67 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [a68 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [a69 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [a6a 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [a6b 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [a6c 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [a6d 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [a6e 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [a6f 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [a70 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [a71 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [a72 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [a73 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [a74 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [a75 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [a76 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [a77 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [a78 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [a79 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [a7a 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [a7b 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [a7c 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [a7d 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [a7e 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [a7f 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [a80 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [a81 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [a82 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [a83 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [a84 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [a85 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [a86 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [a87 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [a88 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [a89 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [a8a 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [a8b 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c940 gate 1515797799635437406 evaluation starts +orderer.example.com | [a8c 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a8d 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [a8e 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a8f 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [a90 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 principal matched by identity 0 +orderer.example.com | [a91 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +orderer.example.com | 00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +orderer.example.com | [a92 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +orderer.example.com | 00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +orderer.example.com | 00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +orderer.example.com | 00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +orderer.example.com | 00000040 80 21 fd 56 14 8f |.!.V..| +orderer.example.com | [a93 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 principal evaluation succeeds for identity 0 +orderer.example.com | [a94 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c940 gate 1515797799635437406 evaluation succeeds +orderer.example.com | [a95 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a96 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a97 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a98 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [a99 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [a9a 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [a9b 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [a9c 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [a9d 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [a9e 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [a9f 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [aa0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [aa1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [aa2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [aa3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [aa4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [aa5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [aa6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [aa7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [aa8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [aa9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [aaa 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [aab 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [aac 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [aad 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [aae 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [aaf 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [ab0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [ab1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [ab2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [ab3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [ab4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [ab5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [ab6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [ab7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [ab8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [ab9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [aba 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [abb 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [abc 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [abd 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [abe 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [abf 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [ac0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [ac1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [ac2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [ac3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [ac4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ac5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ac6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [ac7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [ac8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ac9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [aca 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [acb 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [acc 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [acd 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ace 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [acf 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [ad0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [ad1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ad2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ad3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [ad4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [ad5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [ad6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [ad7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [ad8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [ad9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ada 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [adb 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [adc 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [add 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [ade 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [adf 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [ae0 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [ae1 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ae2 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ae3 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ae4 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [ae5 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [ae6 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [ae7 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [ae8 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [ae9 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [aea 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [aeb 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [aec 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [aed 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [aee 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [aef 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [af0 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [af1 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [af2 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [af3 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [af4 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [af5 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [af6 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [af7 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [af8 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [af9 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [afa 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [afb 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [afc 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [afd 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [afe 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [aff 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b00 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [b01 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b02 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [b03 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b04 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [b05 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b06 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b07 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b08 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b09 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b0a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b0b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [b0c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [b0d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b0e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [b0f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b10 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [b11 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b12 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [b13 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [b14 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [b15 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [b16 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [b17 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [b18 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [b19 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [b1a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [b1b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [b1c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [b1d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [b1e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [b1f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b20 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [b21 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b22 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [b23 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [b24 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [b25 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [b26 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [b27 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [b28 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [b29 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b2a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [b2b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b2c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b2d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b2e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b2f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b30 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b31 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [b32 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [b33 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [b34 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [b35 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [b36 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [b37 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [b38 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [b39 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [b3a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [b3b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [b3c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [b3d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:0 lastConfigSeq:1} +orderer.example.com | [b3e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [b3f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b40 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b41 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b42 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b43 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...3C430D9C0B181A5D657348A7F8683A8A +orderer.example.com | [b44 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: BF5A24880359122A4534C9144E39B842D56EC7D5FC6ED4BCD39477F02DF4AB4C +orderer.example.com | [b45 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +orderer.example.com | [b46 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b47 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b48 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +orderer.example.com | [b49 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [b4a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [b4b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...3C430D9C0B181A5D657348A7F8683A8A +orderer.example.com | [b4c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: F44817E4FB8BBBC0CB1D57258EDED75E7F7C16439EBDB8365D4AA4389741E762 +orderer.example.com | [b4d 01-12 22:56:39.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11906 +orderer.example.com | ] +orderer.example.com | [b4e 01-12 22:56:39.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25653], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [b4f 01-12 22:56:39.67 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 +orderer.example.com | [b50 01-12 22:56:41.75 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [b51 01-12 22:56:41.75 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [b52 01-12 22:56:41.75 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [b53 01-12 22:56:41.76 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [b54 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [b55 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +orderer.example.com | [b56 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +orderer.example.com | [b57 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [b58 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [b59 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [b5a 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [b5b 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [b5c 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [b5d 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [b5e 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [b5f 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [b60 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [b61 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [b62 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [b63 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [b64 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [b65 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [b66 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [b67 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a0 gate 1515797801768627877 evaluation starts +orderer.example.com | [b68 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [b69 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [b6a 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b6b 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [b6c 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 principal matched by identity 0 +orderer.example.com | [b6d 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +orderer.example.com | 00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +orderer.example.com | [b6e 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +orderer.example.com | 00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +orderer.example.com | 00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +orderer.example.com | 00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +orderer.example.com | 00000040 2e 5c 5c ed e8 4b |.\\..K| +orderer.example.com | [b6f 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 principal evaluation succeeds for identity 0 +orderer.example.com | [b70 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a0 gate 1515797801768627877 evaluation succeeds +orderer.example.com | [b71 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b72 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b73 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b74 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [b75 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b76 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b77 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b78 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b79 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b7a 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b7b 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [b7c 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [b7d 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [b7e 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b7f 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b80 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b81 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b82 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b83 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b84 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [b85 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [b86 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [b87 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [b88 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [b89 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [b8a 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [b8b 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [b8c 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [b8d 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [b8e 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [b8f 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [b90 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [b91 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [b92 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [b93 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [b94 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [b95 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [b96 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [b97 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [b98 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [b99 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [b9a 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [b9b 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [b9c 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [b9d 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [b9e 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [b9f 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ba0 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [ba1 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [ba2 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [ba3 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [ba4 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [ba5 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [ba6 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [ba7 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [ba8 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [ba9 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [baa 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [bab 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [bac 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [bad 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [bae 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [baf 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [bb0 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [bb1 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [bb2 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [bb3 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [bb4 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [bb5 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [bb6 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bb7 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bb8 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bb9 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [bba 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [bbb 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [bbc 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [bbd 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [bbe 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bbf 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bc0 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bc1 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [bc2 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [bc3 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [bc4 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [bc5 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bc6 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bc7 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bc8 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [bc9 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [bca 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [bcb 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [bcc 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [bcd 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [bce 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [bcf 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A9FAE4D20522...B58958F67DD3719BF0253B0DD550A384 +orderer.example.com | [bd0 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 08BAE8EF1533085E86E400A8ECA81A1C4AD34B405CC57B2E5796C364B95B5F6A +orderer.example.com | [bd1 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | [bd2 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [bd3 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026680 gate 1515797801802065050 evaluation starts +orderer.example.com | [bd4 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [bd5 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [bd6 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bd7 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [bd8 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [bd9 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 principal matched by identity 0 +orderer.example.com | [bda 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 08 ba e8 ef 15 33 08 5e 86 e4 00 a8 ec a8 1a 1c |.....3.^........| +orderer.example.com | 00000010 4a d3 4b 40 5c c5 7b 2e 57 96 c3 64 b9 5b 5f 6a |J.K@\.{.W..d.[_j| +orderer.example.com | [bdb 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 15 9d e7 70 26 67 c6 c9 80 0d |0E.!.....p&g....| +orderer.example.com | 00000010 7b 45 78 51 53 28 80 ed 2a 1a b1 34 73 6d 3a c7 |{ExQS(..*..4sm:.| +orderer.example.com | 00000020 9a af 31 d8 bd 02 20 2b 04 41 b2 fe 08 20 1d 17 |..1... +.A... ..| +orderer.example.com | 00000030 69 36 13 09 e0 56 45 ca 7e 20 c0 3a 4c 55 46 fa |i6...VE.~ .:LUF.| +orderer.example.com | 00000040 ab 1e 07 31 a2 ef 7f |...1...| +orderer.example.com | [bdc 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 principal evaluation succeeds for identity 0 +orderer.example.com | [bdd 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026680 gate 1515797801802065050 evaluation succeeds +orderer.example.com | [bde 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420339180 1 [0xc42017cae0]}) %!s(*policies.implicitMetaPolicy=&{0xc420339e40 1 [0xc42017cb80 0xc42017cbf8]})]} +orderer.example.com | [bdf 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [be0 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [be1 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [be2 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [be3 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [be4 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [be5 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [be6 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [be7 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [be8 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [be9 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [bea 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [beb 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [bec 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [bed 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [bee 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [bef 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026070 gate 1515797801809956702 evaluation starts +orderer.example.com | [bf0 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [bf1 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [bf2 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [bf3 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [bf4 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 principal matched by identity 0 +orderer.example.com | [bf5 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +orderer.example.com | 00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +orderer.example.com | [bf6 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +orderer.example.com | 00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +orderer.example.com | 00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +orderer.example.com | 00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +orderer.example.com | 00000040 2e 5c 5c ed e8 4b |.\\..K| +orderer.example.com | [bf7 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 principal evaluation succeeds for identity 0 +orderer.example.com | [bf8 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026070 gate 1515797801809956702 evaluation succeeds +orderer.example.com | [bf9 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [bfa 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [bfb 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [bfc 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [bfd 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [bfe 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [bff 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c00 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c01 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c02 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c03 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [c04 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [c05 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [c06 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c07 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c08 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c09 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c0a 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c0b 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c0c 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [c0d 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [c0e 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [c0f 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [c10 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [c11 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [c12 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [c13 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [c14 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [c15 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [c16 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [c17 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [c18 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [c19 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [c1a 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [c1b 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [c1c 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [c1d 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [c1e 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [c1f 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c20 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c21 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [c22 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [c23 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [c24 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [c25 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [c26 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [c27 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [c28 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c29 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c2a 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [c2b 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [c2c 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c2d 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c2e 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [c2f 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [c30 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [c31 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c32 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c33 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [c34 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [c35 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [c36 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [c37 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [c38 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [c39 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [c3a 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [c3b 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [c3c 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [c3d 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c3e 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c3f 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c40 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [c41 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [c42 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [c43 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [c44 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [c45 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c46 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c47 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c48 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [c49 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [c4a 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [c4b 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [c4c 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [c4d 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c4e 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c4f 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c50 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [c51 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [c52 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [c53 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | [c54 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [c55 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c020 gate 1515797801831635757 evaluation starts +orderer.example.com | [c56 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c57 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c58 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +orderer.example.com | V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +orderer.example.com | 3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +orderer.example.com | uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c59 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [c5a 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [c5b 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 principal matched by identity 0 +orderer.example.com | [c5c 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 08 ba e8 ef 15 33 08 5e 86 e4 00 a8 ec a8 1a 1c |.....3.^........| +orderer.example.com | 00000010 4a d3 4b 40 5c c5 7b 2e 57 96 c3 64 b9 5b 5f 6a |J.K@\.{.W..d.[_j| +orderer.example.com | [c5d 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 15 9d e7 70 26 67 c6 c9 80 0d |0E.!.....p&g....| +orderer.example.com | 00000010 7b 45 78 51 53 28 80 ed 2a 1a b1 34 73 6d 3a c7 |{ExQS(..*..4sm:.| +orderer.example.com | 00000020 9a af 31 d8 bd 02 20 2b 04 41 b2 fe 08 20 1d 17 |..1... +.A... ..| +orderer.example.com | 00000030 69 36 13 09 e0 56 45 ca 7e 20 c0 3a 4c 55 46 fa |i6...VE.~ .:LUF.| +orderer.example.com | 00000040 ab 1e 07 31 a2 ef 7f |...1...| +orderer.example.com | [c5e 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 principal evaluation succeeds for identity 0 +orderer.example.com | [c5f 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c020 gate 1515797801831635757 evaluation succeeds +orderer.example.com | [c60 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420339180 1 [0xc42017cae0]}) %!s(*policies.implicitMetaPolicy=&{0xc420339e40 1 [0xc42017cb80 0xc42017cbf8]})]} +orderer.example.com | [c61 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [c62 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [c63 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [c64 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [c65 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [c66 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [c67 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [c68 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [c69 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [c6a 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [c6b 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [c6c 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [c6d 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [c6e 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [c6f 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [c71 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [c73 01-12 22:56:41.84 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [c70 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [c74 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cfc8 gate 1515797801845954295 evaluation starts +orderer.example.com | [c75 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c72 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [c76 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [c77 01-12 22:56:41.84 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [c78 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c79 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [c7a 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 principal matched by identity 0 +orderer.example.com | [c7b 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +orderer.example.com | 00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +orderer.example.com | [c7c 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +orderer.example.com | 00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +orderer.example.com | 00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +orderer.example.com | 00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +orderer.example.com | 00000040 2e 5c 5c ed e8 4b |.\\..K| +orderer.example.com | [c7d 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 principal evaluation succeeds for identity 0 +orderer.example.com | [c7e 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cfc8 gate 1515797801845954295 evaluation succeeds +orderer.example.com | [c7f 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c80 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c81 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c82 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [c83 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c84 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c85 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c86 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c87 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c88 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c89 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [c8a 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [c8b 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [c8c 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c8d 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c8e 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c8f 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c90 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c91 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c92 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [c93 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [c94 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [c95 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [c96 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [c97 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [c98 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [c99 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [c9a 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [c9b 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [c9c 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [c9d 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [c9e 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [c9f 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [ca0 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [ca1 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [ca2 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [ca3 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [ca4 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [ca5 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [ca6 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ca7 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [ca8 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [ca9 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [caa 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [cab 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [cac 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [cad 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [cae 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [caf 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cb0 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [cb1 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [cb2 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cb3 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cb4 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [cb5 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [cb6 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [cb7 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cb8 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cb9 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [cba 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [cbb 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [cbc 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [cbd 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [cbe 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [cbf 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [cc0 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [cc1 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [cc2 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [cc3 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cc4 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cc5 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cc6 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [cc7 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [cc8 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [cc9 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [cca 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [ccb 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ccc 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ccd 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cce 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [ccf 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [cd0 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [cd1 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [cd2 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [cd3 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cd4 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cd5 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cd6 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [cd7 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [cd8 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [cd9 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +orderer.example.com | [cda 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [cdb 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +orderer.example.com | [cdc 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13727], Going to peek [8] bytes +orderer.example.com | [cdd 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +orderer.example.com | [cde 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [cdf 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [ce0 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | [ce1 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [ce2 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | [ce3 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [ce4 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [ce5 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [ce6 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [ce7 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [ce8 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [ce9 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [cea 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [ceb 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [cec 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [ced 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [cee 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [cef 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | [cf0 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | [cf1 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [cf2 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [cf3 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [cf4 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [cf5 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | [cf6 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [cf7 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | [cf8 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | [cf9 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [cfa 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [cfb 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [cfc 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [cfd 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | [cfe 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | [cff 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | [d00 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | [d01 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [d02 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [d03 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [d04 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [d05 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [d06 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [d07 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [d08 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [d09 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [d0a 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [d0b 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | [d0c 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | [d0d 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | [d0e 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [d0f 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | [d10 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [d11 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [d12 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [d13 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d14 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c608 gate 1515797801895017051 evaluation starts +orderer.example.com | [d15 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [d16 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [d17 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d18 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [d19 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 principal matched by identity 0 +orderer.example.com | [d1a 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +orderer.example.com | 00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +orderer.example.com | [d1b 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +orderer.example.com | 00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +orderer.example.com | 00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +orderer.example.com | 00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +orderer.example.com | 00000040 2e 5c 5c ed e8 4b |.\\..K| +orderer.example.com | [d1c 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 principal evaluation succeeds for identity 0 +orderer.example.com | [d1d 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c608 gate 1515797801895017051 evaluation succeeds +orderer.example.com | [d1e 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d1f 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d20 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d21 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [d22 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [d23 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [d24 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d25 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d26 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d27 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d28 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d29 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d2a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [d2b 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d2c 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d2d 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d2e 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [d2f 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [d30 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [d31 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | [d32 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | [d33 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [d34 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [d35 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [d36 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [d37 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [d38 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [d39 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [d3a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | [d3b 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [d3c 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [d3d 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [d3e 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [d3f 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [d40 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +orderer.example.com | [d41 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +orderer.example.com | [d42 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +orderer.example.com | [d43 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +orderer.example.com | [d44 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d45 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d46 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +orderer.example.com | [d47 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +orderer.example.com | [d48 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +orderer.example.com | [d49 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | [d4a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +orderer.example.com | [d4b 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +orderer.example.com | [d4c 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +orderer.example.com | [d4d 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d4e 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d4f 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [d50 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [d51 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d52 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d53 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +orderer.example.com | [d54 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +orderer.example.com | [d55 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +orderer.example.com | [d56 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d57 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d58 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | [d59 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [d5a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | [d5b 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [d5c 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +orderer.example.com | [d5d 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +orderer.example.com | [d5e 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +orderer.example.com | [d5f 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [d60 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [d61 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [d62 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +orderer.example.com | mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +orderer.example.com | iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d63 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d64 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +orderer.example.com | 8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +orderer.example.com | iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +orderer.example.com | FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d65 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [d66 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [d67 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [d68 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [d69 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [d6a 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +orderer.example.com | S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +orderer.example.com | UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +orderer.example.com | qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +orderer.example.com | RTCauNNt1A== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d6b 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d6c 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d6d 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [d6e 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [d6f 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [d70 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [d71 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [d72 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +orderer.example.com | V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +orderer.example.com | wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +orderer.example.com | l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +orderer.example.com | ymzPpM2K +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d73 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d74 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [d75 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [d76 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [d77 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [d78 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d79 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | [d7a 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d7b 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | [d7c 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d7d 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | [d7e 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d7f 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d80 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d81 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d82 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d83 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | [d84 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d85 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | [d86 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d87 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | [d88 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d89 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | [d8a 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d8b 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | [d8c 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d8d 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | [d8e 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d8f 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d90 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d91 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d92 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d93 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d94 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [d95 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | [d96 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [d97 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | [d98 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [d99 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | [d9a 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | [d9b 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | [d9c 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | [d9d 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | [d9e 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | [d9f 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | [da0 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +orderer.example.com | [da1 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | [da2 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +orderer.example.com | [da3 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | [da4 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +orderer.example.com | [da5 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | [da6 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +orderer.example.com | [da7 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | [da8 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [da9 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | [daa 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dab 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | [dac 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +orderer.example.com | [dad 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | [dae 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +orderer.example.com | [daf 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | [db0 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [db1 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | [db2 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +orderer.example.com | [db3 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | [db4 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [db5 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +orderer.example.com | [db6 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [db7 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [db8 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [db9 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dba 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [dbb 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [dbc 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [dbd 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [dbe 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +orderer.example.com | [dbf 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [dc0 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +orderer.example.com | [dc1 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [dc2 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +orderer.example.com | [dc3 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [dc4 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | [dc5 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [dc6 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:1 lastConfigSeq:2} +orderer.example.com | [dc7 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [dc8 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [dc9 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [dca 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [dcb 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [dcc 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...8DE3C765068E7C18EC5465E981104700 +orderer.example.com | [dcd 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 35DFE80A100C517F8E59F3A5D12B543FB4D1D16D7D126F3A61EC6D9EEAB7E209 +orderer.example.com | [dce 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +orderer.example.com | [dcf 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [dd0 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [dd1 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [dd2 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [dd3 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [dd4 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...8DE3C765068E7C18EC5465E981104700 +orderer.example.com | [dd5 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 7FCC78B07B9A73C7F7214FED8D35F23211BE1F171940C520D0CC2BE13306D9AA +orderer.example.com | [dd6 01-12 22:56:42.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11963 +orderer.example.com | ] +orderer.example.com | [dd7 01-12 22:56:42.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39435], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [dd8 01-12 22:56:42.07 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 +orderer.example.com | [dd9 01-12 22:56:44.62 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [dda 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [ddb 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [ddc 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [ddd 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797804627001475 evaluation starts +orderer.example.com | [dde 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ddf 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414b357470314d636d416a39717542613834624d69313477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142476b4578542b39774646704b353272336e5737735a6955796a6733687855750a4c374959583339476e6c2b54314d784a7235525050426a364c4931466a526b5a386d466473384d6f77654777624c76744678744a7554756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d4555434951434b624567650a7263536831376b2f316b74674a30524e736a705764797650722b702f37417a74592f744d6b4149675669485847452f37315a3638636c4a3962756c61393948690a42627765694e62794a543978325553492f32593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [de0 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +orderer.example.com | L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +orderer.example.com | rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +orderer.example.com | BbweiNbyJT9x2USI/2Y= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [de1 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [de2 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation fails +orderer.example.com | [de3 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797804627001475 evaluation fails +orderer.example.com | [de4 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026058 gate 1515797804628269341 evaluation starts +orderer.example.com | [de5 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [de6 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414b357470314d636d416a39717542613834624d69313477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142476b4578542b39774646704b353272336e5737735a6955796a6733687855750a4c374959583339476e6c2b54314d784a7235525050426a364c4931466a526b5a386d466473384d6f77654777624c76744678744a7554756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d4555434951434b624567650a7263536831376b2f316b74674a30524e736a705764797650722b702f37417a74592f744d6b4149675669485847452f37315a3638636c4a3962756c61393948690a42627765694e62794a543978325553492f32593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [de7 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +orderer.example.com | L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +orderer.example.com | rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +orderer.example.com | BbweiNbyJT9x2USI/2Y= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [de8 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [de9 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 principal evaluation fails +orderer.example.com | [dea 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026058 gate 1515797804628269341 evaluation fails +orderer.example.com | [deb 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026078 gate 1515797804629360095 evaluation starts +orderer.example.com | [dec 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ded 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414b357470314d636d416a39717542613834624d69313477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142476b4578542b39774646704b353272336e5737735a6955796a6733687855750a4c374959583339476e6c2b54314d784a7235525050426a364c4931466a526b5a386d466473384d6f77654777624c76744678744a7554756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d4555434951434b624567650a7263536831376b2f316b74674a30524e736a705764797650722b702f37417a74592f744d6b4149675669485847452f37315a3638636c4a3962756c61393948690a42627765694e62794a543978325553492f32593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [dee 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +orderer.example.com | L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +orderer.example.com | rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +orderer.example.com | BbweiNbyJT9x2USI/2Y= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [def 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [df0 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [df1 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 principal matched by identity 0 +orderer.example.com | [df2 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 66 47 df 3e 0a e3 dd 55 7c 94 03 02 84 c5 1c 52 |fG.>...U|......R| +orderer.example.com | 00000010 2a da b9 c9 24 0b 55 3f ee 40 4d 9f 1e 74 29 3e |*...$.U?.@M..t)>| +orderer.example.com | [df3 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 96 cf b4 81 29 27 c7 29 41 20 96 |0E.!.....)'.)A .| +orderer.example.com | 00000010 df c6 63 fc 54 7d e6 73 57 c3 9a ab 95 8e 68 47 |..c.T}.sW.....hG| +orderer.example.com | 00000020 d0 2b 7b 0b d9 02 20 3b 29 42 a2 57 5f e6 e9 e9 |.+{... ;)B.W_...| +orderer.example.com | 00000030 4e 54 31 07 ae 8f ac 0c 0f 6a 71 ea 0e fa b0 a5 |NT1......jq.....| +orderer.example.com | 00000040 d1 7d a6 97 3f be 11 |.}..?..| +orderer.example.com | [df4 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 principal evaluation succeeds for identity 0 +orderer.example.com | [df5 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026078 gate 1515797804629360095 evaluation succeeds +orderer.example.com | [df6 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e4860 1 [0xc42017c8d8]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5760 1 [0xc42017c9f0 0xc42017ccb8]})]} +orderer.example.com | [df7 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420343d80) start: > stop: > +orderer.example.com | [df8 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [df9 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +orderer.example.com | [dfa 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27509], Going to peek [8] bytes +orderer.example.com | [dfb 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +orderer.example.com | [dfc 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +orderer.example.com | [dfd 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [dfe 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +orderer.example.com | [dff 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +orderer.example.com | [e00 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +orderer.example.com | [e01 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +orderer.example.com | [e02 01-12 22:56:45.02 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [e03 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [e04 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [e05 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e06 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e0 gate 1515797805022430062 evaluation starts +orderer.example.com | [e07 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e08 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b67417749424167495162384a6e6771797a6c51774a554867514545537a4c6a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741456b76304458585a74474171577431647855476a584d65653538666b6d6d524f710a65386c4279557449526558615569787433545073497766766b695346684d376f4174563858567038724237324272726d6e504543614b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414f5048353330340a596852635534466e7961457145516e2b422f6e2b48676939496168654c3935536b357a444169414243536d546363755535516a4954507641394f72594670434f0a6f61475a54643154326b664779382f4172673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e09 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -orderer.example.com | 5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -orderer.example.com | 6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -orderer.example.com | hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -orderer.example.com | PjNMGC1fMR/dFfg4xQ== +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +orderer.example.com | e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +orderer.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +orderer.example.com | YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +orderer.example.com | oaGZTd1T2kfGy8/Arg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [df6 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [df7 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [df8 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal matched by identity 0 -orderer.example.com | [df9 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 27 ce 2e 41 fd a8 71 62 63 9c 54 33 2b 18 03 |.'..A..qbc.T3+..| -orderer.example.com | 00000010 0a 75 71 c6 54 91 75 c1 64 91 d7 55 12 06 59 8e |.uq.T.u.d..U..Y.| -orderer.example.com | [dfa 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ef 64 69 a0 b7 eb 1e 9b a1 73 b3 |0E.!..di......s.| -orderer.example.com | 00000010 4f a4 2f f1 e8 2f e3 63 91 bd 2c 6b 0f 33 b4 b3 |O./../.c..,k.3..| -orderer.example.com | 00000020 72 ea b1 dd 83 02 20 17 7d fd 87 70 79 32 f5 e5 |r..... .}..py2..| -orderer.example.com | 00000030 05 7a 2f d2 c5 56 8d 0f d4 0f ef 8e 5b 42 68 79 |.z/..V......[Bhy| -orderer.example.com | 00000040 bc 15 32 53 e3 8a 51 |..2S..Q| -orderer.example.com | [dfb 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation succeeds for identity 0 -orderer.example.com | [dfc 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1513666061149971000 evaluation succeeds -orderer.example.com | [dfd 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [dfe 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4202aa700) start: > stop: > -orderer.example.com | [dff 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | [e00 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -orderer.example.com | [e01 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27525], Going to peek [8] bytes -orderer.example.com | [e02 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -orderer.example.com | [e03 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -orderer.example.com | [e04 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [e05 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -orderer.example.com | [e06 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -orderer.example.com | [e07 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -orderer.example.com | [e08 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -orderer.example.com | [e09 12-19 06:47:41.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [e0a 12-19 06:47:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [e0b 12-19 06:47:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [e0c 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [e0d 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a08 gate 1513666061465044800 evaluation starts -orderer.example.com | [e0e 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e0f 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e4b744164454a5a464f566646662f6f4245505a696777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c724e4b2f37344f63696c714c31327133577338753333517455384a7a6b310a736c304a4575647848504370445162645a576566755969674e6e4e6f2b4633646e2f4e3859374a707a53545352354d7633636b304855696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514450324357430a4447654f764367325655343345524d43394c2b5546787a42326a6b52447a49716d6a4a3167414967623568525a39474e524256362f6d474930465157662b34450a4a39377177656f344746646364354a694f32733d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e10 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -orderer.example.com | sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -orderer.example.com | DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -orderer.example.com | J97qweo4GFdcd5JiO2s= +orderer.example.com | [e0a 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [e0b 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 principal evaluation fails +orderer.example.com | [e0c 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e0 gate 1515797805022430062 evaluation fails +orderer.example.com | [e0d 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f0 gate 1515797805025662645 evaluation starts +orderer.example.com | [e0e 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e0f 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b67417749424167495162384a6e6771797a6c51774a554867514545537a4c6a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741456b76304458585a74474171577431647855476a584d65653538666b6d6d524f710a65386c4279557449526558615569787433545073497766766b695346684d376f4174563858567038724237324272726d6e504543614b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414f5048353330340a596852635534466e7961457145516e2b422f6e2b48676939496168654c3935536b357a444169414243536d546363755535516a4954507641394f72594670434f0a6f61475a54643154326b664779382f4172673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e10 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +orderer.example.com | e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +orderer.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +orderer.example.com | YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +orderer.example.com | oaGZTd1T2kfGy8/Arg== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e11 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [e12 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 principal evaluation fails -orderer.example.com | [e13 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a08 gate 1513666061465044800 evaluation fails -orderer.example.com | [e14 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a18 gate 1513666061465881300 evaluation starts -orderer.example.com | [e15 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e16 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e4b744164454a5a464f566646662f6f4245505a696777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c724e4b2f37344f63696c714c31327133577338753333517455384a7a6b310a736c304a4575647848504370445162645a576566755969674e6e4e6f2b4633646e2f4e3859374a707a53545352354d7633636b304855696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514450324357430a4447654f764367325655343345524d43394c2b5546787a42326a6b52447a49716d6a4a3167414967623568525a39474e524256362f6d474930465157662b34450a4a39377177656f344746646364354a694f32733d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e17 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -orderer.example.com | sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -orderer.example.com | DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -orderer.example.com | J97qweo4GFdcd5JiO2s= +orderer.example.com | [e11 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [e12 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [e13 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 principal matched by identity 0 +orderer.example.com | [e14 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7f 44 69 bf 66 c8 b4 e2 ee 34 57 f2 9e 90 be 38 |.Di.f....4W....8| +orderer.example.com | 00000010 99 2b 27 24 86 f7 91 84 66 f8 4b 80 d1 bf 02 95 |.+'$....f.K.....| +orderer.example.com | [e15 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 14 15 54 2f 8d 1f bd 36 77 9f 85 0e |0D. ..T/...6w...| +orderer.example.com | 00000010 e2 56 a4 18 1b 13 a0 70 b4 3b a5 41 7a f3 d1 7c |.V.....p.;.Az..|| +orderer.example.com | 00000020 33 3b 85 ed 02 20 25 54 00 40 e7 29 79 94 02 e0 |3;... %T.@.)y...| +orderer.example.com | 00000030 8c cb 88 06 9b 30 db 34 88 5e 35 55 3d b5 a9 b5 |.....0.4.^5U=...| +orderer.example.com | 00000040 59 1a 4d 59 f1 16 |Y.MY..| +orderer.example.com | [e16 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 principal evaluation succeeds for identity 0 +orderer.example.com | [e17 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f0 gate 1515797805025662645 evaluation succeeds +orderer.example.com | [e18 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e4860 1 [0xc42017c8d8]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5760 1 [0xc42017c9f0 0xc42017ccb8]})]} +orderer.example.com | [e19 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4202fa4a0) start: > stop: > +orderer.example.com | [e1a 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [e1b 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +orderer.example.com | [e1c 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27509], Going to peek [8] bytes +orderer.example.com | [e1d 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +orderer.example.com | [e1e 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202fa4a0) +orderer.example.com | [e1f 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [e20 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +orderer.example.com | [e21 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +orderer.example.com | [e22 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +orderer.example.com | [e23 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202fa4a0) +orderer.example.com | [e24 01-12 22:56:45.18 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [e25 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +orderer.example.com | [e26 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +orderer.example.com | [e27 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +orderer.example.com | [e28 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026150 gate 1515797805182522675 evaluation starts +orderer.example.com | [e29 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e2a 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951466e626749425538777867493345702f7144676e7044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d533576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457a6d6533395465643962516b5a51534d4d3241344f686b6a55422b347a7836320a2b67486776554e72544d586568464b7344567a55354769654e733573726f59564273517243376a38464f70646833477a6643373139364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414d646c6d7947450a4f4c337672566874636433532f365759526c646179513745534d59726e586a6e5653757341694132736a54316d5a72544b4958497a4c307a3565626b415743410a4557774e414b726e54653761734d515335773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e2b 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 +orderer.example.com | +gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +orderer.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +orderer.example.com | OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +orderer.example.com | EWwNAKrnTe7asMQS5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e18 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [e19 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [e1a 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 principal matched by identity 0 -orderer.example.com | [e1b 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ca 3f 52 26 1d b8 ad b0 3e 15 b0 3e 48 dc 0b ab |.?R&....>..>H...| -orderer.example.com | 00000010 3e d7 e3 3b e5 26 57 9e d0 ee 48 d7 e1 92 96 0c |>..;.&W...H.....| -orderer.example.com | [e1c 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb 35 5a 6e d7 41 95 dc f1 e5 d7 |0E.!..5Zn.A.....| -orderer.example.com | 00000010 ff dd 89 7b 2b f5 d7 54 ad be d0 2e 14 15 dd 8f |...{+..T........| -orderer.example.com | 00000020 0c a2 a3 94 a2 02 20 7b 01 50 81 eb 2a c4 cc 19 |...... {.P..*...| -orderer.example.com | 00000030 9e f3 40 22 39 5d 3b ec 07 ba dd 95 ac 3a bf 68 |..@"9];......:.h| -orderer.example.com | 00000040 d6 a9 c5 70 02 b7 37 |...p..7| -orderer.example.com | [e1d 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 principal evaluation succeeds for identity 0 -orderer.example.com | [e1e 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a18 gate 1513666061465881300 evaluation succeeds -orderer.example.com | [e1f 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [e20 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42017ef40) start: > stop: > -orderer.example.com | [e21 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | [e22 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -orderer.example.com | [e23 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27525], Going to peek [8] bytes -orderer.example.com | [e24 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -orderer.example.com | [e25 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -orderer.example.com | [e26 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [e27 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -orderer.example.com | [e28 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -orderer.example.com | [e29 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -orderer.example.com | [e2a 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -orderer.example.com | [e2b 12-19 06:47:41.61 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [e2c 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [e2d 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [e2e 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [e2f 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b0 gate 1513666061617334200 evaluation starts -orderer.example.com | [e30 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e31 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b6873664a7174763942366f6e6345536a4e6f2b6e4577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142502b4b31505a6155324f2f482b347a7a6c54384554596170556c4b3455414a0a376d59495157545a752b734e6e2b526539497a374e2f3339305634565661593731656b78435955644975364d6c544e4d5556623548712b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413063414d45514349477445657466360a6d485755714e2f78484e6558703751335143554b4161544a3764485371504d626442664241694256627a3176434d61357873323769793334765a5465423541470a6b734d543346444b5a5a354378714c6d52413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e32 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -orderer.example.com | 7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -orderer.example.com | mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -orderer.example.com | ksMT3FDKZZ5CxqLmRA== +orderer.example.com | [e2c 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [e2d 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 principal evaluation fails +orderer.example.com | [e2e 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026150 gate 1515797805182522675 evaluation fails +orderer.example.com | [e2f 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1515797805184772750 evaluation starts +orderer.example.com | [e30 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e31 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951466e626749425538777867493345702f7144676e7044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d533576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457a6d6533395465643962516b5a51534d4d3241344f686b6a55422b347a7836320a2b67486776554e72544d586568464b7344567a55354769654e733573726f59564273517243376a38464f70646833477a6643373139364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414d646c6d7947450a4f4c337672566874636433532f365759526c646179513745534d59726e586a6e5653757341694132736a54316d5a72544b4958497a4c307a3565626b415743410a4557774e414b726e54653761734d515335773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e32 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 +orderer.example.com | +gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +orderer.example.com | yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +orderer.example.com | OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +orderer.example.com | EWwNAKrnTe7asMQS5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e33 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [e34 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 principal evaluation fails -orderer.example.com | [e35 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b0 gate 1513666061617334200 evaluation fails -orderer.example.com | [e36 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513666061619528000 evaluation starts -orderer.example.com | [e37 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e38 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b6873664a7174763942366f6e6345536a4e6f2b6e4577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142502b4b31505a6155324f2f482b347a7a6c54384554596170556c4b3455414a0a376d59495157545a752b734e6e2b526539497a374e2f3339305634565661593731656b78435955644975364d6c544e4d5556623548712b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413063414d45514349477445657466360a6d485755714e2f78484e6558703751335143554b4161544a3764485371504d626442664241694256627a3176434d61357873323769793334765a5465423541470a6b734d543346444b5a5a354378714c6d52413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e39 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -orderer.example.com | 7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -orderer.example.com | mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -orderer.example.com | ksMT3FDKZZ5CxqLmRA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e3a 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [e3b 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [e3c 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 principal matched by identity 0 -orderer.example.com | [e3d 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c0 ef 03 88 fc b7 f1 9e 23 3e 70 91 e1 0d f3 36 |........#>p....6| -orderer.example.com | 00000010 27 b2 5c 90 32 4c f7 bd 3a fd 60 b8 0c 50 6b 85 |'.\.2L..:.`..Pk.| -orderer.example.com | [e3e 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 84 7b 1e be f0 85 d0 16 ee 7d 2b |0D. x.{.......}+| -orderer.example.com | 00000010 41 95 5d 8c db d2 ac d8 ee 9c ce e0 4f bc 89 dd |A.].........O...| -orderer.example.com | 00000020 b0 ad 52 5d 02 20 75 c9 7d bb de 45 b8 bb 95 88 |..R]. u.}..E....| -orderer.example.com | 00000030 bf 76 60 fd 55 e5 fe 86 c9 e2 fb 9d 2f 47 00 a2 |.v`.U......./G..| -orderer.example.com | 00000040 9d e2 0d f4 55 c8 |....U.| -orderer.example.com | [e3f 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 principal evaluation succeeds for identity 0 -orderer.example.com | [e40 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513666061619528000 evaluation succeeds -orderer.example.com | [e41 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [e42 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420a7ab80) start: > stop: > -orderer.example.com | [e43 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | [e44 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -orderer.example.com | [e45 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27525], Going to peek [8] bytes -orderer.example.com | [e46 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -orderer.example.com | [e47 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a7ab80) -orderer.example.com | [e48 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [e49 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -orderer.example.com | [e4a 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -orderer.example.com | [e4b 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -orderer.example.com | [e4c 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a7ab80) -orderer.example.com | [e4d 12-19 06:47:42.66 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [e4e 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [e4f 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [e50 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [e51 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026220 gate 1513666079426040100 evaluation starts -orderer.example.com | [e52 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e53 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e54 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [e33 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [e34 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [e35 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 principal matched by identity 0 +orderer.example.com | [e36 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 73 c2 67 fe 1a 4f 83 94 23 ed 02 41 5c 0e 7b fa |s.g..O..#..A\.{.| +orderer.example.com | 00000010 8a c6 d3 35 de 7c 40 35 c2 f8 f3 e7 ac bb 72 f7 |...5.|@5......r.| +orderer.example.com | [e37 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b9 7d 81 2f 2d 87 05 f5 8c b4 af |0E.!..}./-......| +orderer.example.com | 00000010 e1 63 69 41 51 90 86 2f 69 26 4e e1 6b f0 12 a4 |.ciAQ../i&N.k...| +orderer.example.com | 00000020 e0 f1 51 29 38 02 20 3f df f3 69 f1 7a ce 8d 45 |..Q)8. ?..i.z..E| +orderer.example.com | 00000030 bd dc ea 99 d7 76 5e 45 12 1a 4f b7 83 b7 d2 c0 |.....v^E..O.....| +orderer.example.com | 00000040 02 6d 37 dc 49 dc 71 |.m7.I.q| +orderer.example.com | [e38 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 principal evaluation succeeds for identity 0 +orderer.example.com | [e39 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1515797805184772750 evaluation succeeds +orderer.example.com | [e3a 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e4860 1 [0xc42017c8d8]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5760 1 [0xc42017c9f0 0xc42017ccb8]})]} +orderer.example.com | [e3b 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42090d900) start: > stop: > +orderer.example.com | [e3c 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | [e3d 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +orderer.example.com | [e3e 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27509], Going to peek [8] bytes +orderer.example.com | [e3f 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +orderer.example.com | [e40 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +orderer.example.com | [e41 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [e42 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +orderer.example.com | [e43 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +orderer.example.com | [e44 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +orderer.example.com | [e45 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +orderer.example.com | [e46 01-12 22:56:46.30 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [e47 01-12 22:56:46.30 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [e48 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [e49 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [e4a 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261c0 gate 1515797823128365663 evaluation starts +orderer.example.com | [e4b 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e4c 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e4d 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e55 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [e56 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 principal evaluation fails -orderer.example.com | [e57 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026220 gate 1513666079426040100 evaluation fails -orderer.example.com | [e58 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026230 gate 1513666079427004000 evaluation starts -orderer.example.com | [e59 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e5a 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e5b 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [e4e 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [e4f 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 principal evaluation fails +orderer.example.com | [e50 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261c0 gate 1515797823128365663 evaluation fails +orderer.example.com | [e51 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261d0 gate 1515797823131003044 evaluation starts +orderer.example.com | [e52 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e53 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e54 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e5c 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [e5d 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [e5e 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 principal matched by identity 0 -orderer.example.com | [e5f 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 80 17 9f 6f 2d e6 ab 01 97 5b 05 fc 5b 15 e6 |....o-....[..[..| -orderer.example.com | 00000010 8b 03 89 07 11 8b 74 7b 5b a7 56 84 11 c6 5a c1 |......t{[.V...Z.| -orderer.example.com | [e60 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 65 d6 2a 89 07 41 4c c9 66 7c 4f |0D. Te.*..AL.f|O| -orderer.example.com | 00000010 7b 90 b6 e9 ed be 07 48 cc 15 b7 32 11 df 79 30 |{......H...2..y0| -orderer.example.com | 00000020 4c 3a 4f 8c 02 20 19 53 6e 33 d8 93 4b 17 3f f1 |L:O.. .Sn3..K.?.| -orderer.example.com | 00000030 54 e5 a3 75 3c e3 4c 28 e0 50 76 ed cf d2 98 a0 |T..u<.L(.Pv.....| -orderer.example.com | 00000040 18 71 0a ec 4f f6 |.q..O.| -orderer.example.com | [e61 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 principal evaluation succeeds for identity 0 -orderer.example.com | [e62 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026230 gate 1513666079427004000 evaluation succeeds -orderer.example.com | [e63 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [e64 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [e65 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [e66 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513666079429669800 evaluation starts -orderer.example.com | [e67 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e68 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e69 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [e55 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [e56 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 principal evaluation fails +orderer.example.com | [e57 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261d0 gate 1515797823131003044 evaluation fails +orderer.example.com | [e58 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1515797823133065712 evaluation starts +orderer.example.com | [e59 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e5a 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e5b 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e6a 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [e6b 12-19 06:47:59.43 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [e6c 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [e6d 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal evaluation fails -orderer.example.com | [e6e 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513666079429669800 evaluation fails -orderer.example.com | [e6f 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513666079432401000 evaluation starts -orderer.example.com | [e70 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e71 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [e72 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [e5c 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [e5d 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [e5e 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal matched by identity 0 +orderer.example.com | [e5f 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b 12 ac ab 3a 65 5c df e5 13 2b 8b ce e3 80 38 |k...:e\...+....8| +orderer.example.com | 00000010 d9 1f 03 f0 e3 0a 38 a4 e5 dd 35 54 de 44 51 c0 |......8...5T.DQ.| +orderer.example.com | [e60 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 95 0c 2b 23 ad d6 d0 cc 5c a2 23 |0D. ...+#....\.#| +orderer.example.com | 00000010 e2 97 39 f6 ae e1 2a 23 4d 0c 29 fe 4f 2b 5d 3f |..9...*#M.).O+]?| +orderer.example.com | 00000020 d1 63 ea fd 02 20 1b c5 b4 c7 27 3b 0a c2 fc 8b |.c... ....';....| +orderer.example.com | 00000030 54 09 34 ad f2 ed 20 c1 4f 3f 80 2a 22 cc a6 b1 |T.4... .O?.*"...| +orderer.example.com | 00000040 ff f4 7f a4 86 45 |.....E| +orderer.example.com | [e61 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal evaluation succeeds for identity 0 +orderer.example.com | [e62 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1515797823133065712 evaluation succeeds +orderer.example.com | [e63 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [e65 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [e66 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdc0 gate 1515797823137063012 evaluation starts +orderer.example.com | [e64 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [e67 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e68 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e69 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [e73 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [e74 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [e75 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal matched by identity 0 -orderer.example.com | [e76 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 80 17 9f 6f 2d e6 ab 01 97 5b 05 fc 5b 15 e6 |....o-....[..[..| -orderer.example.com | 00000010 8b 03 89 07 11 8b 74 7b 5b a7 56 84 11 c6 5a c1 |......t{[.V...Z.| -orderer.example.com | [e77 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 65 d6 2a 89 07 41 4c c9 66 7c 4f |0D. Te.*..AL.f|O| -orderer.example.com | 00000010 7b 90 b6 e9 ed be 07 48 cc 15 b7 32 11 df 79 30 |{......H...2..y0| -orderer.example.com | 00000020 4c 3a 4f 8c 02 20 19 53 6e 33 d8 93 4b 17 3f f1 |L:O.. .Sn3..K.?.| -orderer.example.com | 00000030 54 e5 a3 75 3c e3 4c 28 e0 50 76 ed cf d2 98 a0 |T..u<.L(.Pv.....| -orderer.example.com | 00000040 18 71 0a ec 4f f6 |.q..O.| -orderer.example.com | [e78 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal evaluation succeeds for identity 0 -orderer.example.com | [e79 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513666079432401000 evaluation succeeds -orderer.example.com | [e7a 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [e7b 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [e7c 12-19 06:47:59.54 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [e7d 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [e7e 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [e7f 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [e80 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -orderer.example.com | [e81 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -orderer.example.com | [e82 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -orderer.example.com | [e83 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -orderer.example.com | [e84 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [e85 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e86 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e87 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e88 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e89 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...A3C8103C7B8A79783523C6DC445E7D04 -orderer.example.com | [e8a 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 750F654325F3706CF48DA8AEDF34A0CD72FCAA3AE8CE3E3003A42F07003648E6 -orderer.example.com | [e8b 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e8c 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e8d 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [e8e 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [e8f 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [e90 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...A3C8103C7B8A79783523C6DC445E7D04 -orderer.example.com | [e91 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 68DA4EBFE478BF4A2F8ACE49CED7DB7790B2BC0E1E10DCEBF08AFCC0288C4A57 -orderer.example.com | [e92 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -orderer.example.com | txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 +orderer.example.com | [e6a 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [e6b 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 principal evaluation fails +orderer.example.com | [e6c 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdc0 gate 1515797823137063012 evaluation fails +orderer.example.com | [e6d 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdd0 gate 1515797823139916585 evaluation starts +orderer.example.com | [e6e 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e6f 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e70 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [e71 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [e72 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 principal evaluation fails +orderer.example.com | [e73 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdd0 gate 1515797823139916585 evaluation fails +orderer.example.com | [e74 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cde0 gate 1515797823141205440 evaluation starts +orderer.example.com | [e75 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [e76 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [e77 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [e78 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [e79 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [e7b 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 principal matched by identity 0 +orderer.example.com | [e7c 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b 12 ac ab 3a 65 5c df e5 13 2b 8b ce e3 80 38 |k...:e\...+....8| +orderer.example.com | 00000010 d9 1f 03 f0 e3 0a 38 a4 e5 dd 35 54 de 44 51 c0 |......8...5T.DQ.| +orderer.example.com | [e7d 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 95 0c 2b 23 ad d6 d0 cc 5c a2 23 |0D. ...+#....\.#| +orderer.example.com | 00000010 e2 97 39 f6 ae e1 2a 23 4d 0c 29 fe 4f 2b 5d 3f |..9...*#M.).O+]?| +orderer.example.com | 00000020 d1 63 ea fd 02 20 1b c5 b4 c7 27 3b 0a c2 fc 8b |.c... ....';....| +orderer.example.com | 00000030 54 09 34 ad f2 ed 20 c1 4f 3f 80 2a 22 cc a6 b1 |T.4... .O?.*"...| +orderer.example.com | 00000040 ff f4 7f a4 86 45 |.....E| +orderer.example.com | [e7e 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 principal evaluation succeeds for identity 0 +orderer.example.com | [e7f 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cde0 gate 1515797823141205440 evaluation succeeds +orderer.example.com | [e80 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [e81 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [e7a 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [e82 01-12 22:57:03.14 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [e83 01-12 22:57:03.28 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [e84 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [e85 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [e86 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | [e87 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +orderer.example.com | [e88 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +orderer.example.com | [e89 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +orderer.example.com | [e8a 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [e8b 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [e8c 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e8d 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e8e 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e8f 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e90 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4882968F93E2D92E722C5C479223990A +orderer.example.com | [e91 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 514CED934B52A160AD9F8DFCA95DD2D87A6CA5F245D9734DD930D80705E7C7EB +orderer.example.com | [e92 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e93 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e94 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [e95 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [e96 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [e97 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...4882968F93E2D92E722C5C479223990A +orderer.example.com | [e98 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 95F1E4CA95476773800574E7DB1A57E53275577DA2163F51B3AD6156A9AAFCF9 +orderer.example.com | [e99 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +orderer.example.com | txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 orderer.example.com | ] -orderer.example.com | [e93 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44668], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | [e94 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 -orderer.example.com | [e95 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | [e96 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -orderer.example.com | [e97 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | [e98 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -orderer.example.com | [e99 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -orderer.example.com | [e9b 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | [e9c 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -orderer.example.com | [e9d 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | [e9e 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -orderer.example.com | [e9f 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -orderer.example.com | [e9a 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | [ea0 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -orderer.example.com | [ea1 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | [ea2 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -orderer.example.com | [ea3 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a7ab80) -orderer.example.com | [ea4 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN [channel: businesschannel] Error sending to stream: rpc error: code = Internal desc = transport is closing -orderer.example.com | [ea5 12-19 06:48:01.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [ea6 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [ea7 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [ea8 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e8 gate 1513666095216668900 evaluation starts -orderer.example.com | [ea9 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [eaa 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [eab 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [e9a 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44642], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | [e9b 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 +orderer.example.com | [e9c 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [e9f 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +orderer.example.com | [e9d 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [ea1 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +orderer.example.com | [ea2 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [ea3 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +orderer.example.com | [ea4 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202fa4a0) +orderer.example.com | [ea5 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN [channel: businesschannel] Error sending to stream: rpc error: code = Internal desc = transport is closing +orderer.example.com | [ea6 01-12 22:57:05.15 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [e9e 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [ea7 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +orderer.example.com | [ea8 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [ea9 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +orderer.example.com | [eaa 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +orderer.example.com | [ea0 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [eab 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +orderer.example.com | [eac 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +orderer.example.com | [ead 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [eae 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [eaf 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026238 gate 1515797839281849979 evaluation starts +orderer.example.com | [eb0 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [eb1 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [eb2 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [eac 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [ead 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 principal evaluation fails -orderer.example.com | [eae 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e8 gate 1513666095216668900 evaluation fails -orderer.example.com | [eaf 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f8 gate 1513666095217543500 evaluation starts -orderer.example.com | [eb0 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [eb1 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [eb2 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [eb3 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [eb4 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 principal evaluation fails +orderer.example.com | [eb5 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026238 gate 1515797839281849979 evaluation fails +orderer.example.com | [eb6 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1515797839283780613 evaluation starts +orderer.example.com | [eb7 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [eb8 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [eb9 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [eb3 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [eb4 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 principal evaluation fails -orderer.example.com | [eb5 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f8 gate 1513666095217543500 evaluation fails -orderer.example.com | [eb6 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513666095218538700 evaluation starts -orderer.example.com | [eb7 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [eb8 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [eb9 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [eba 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [ebb 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [ebc 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal matched by identity 0 +orderer.example.com | [ebd 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 13 6a b4 8f eb 73 c6 c3 38 a4 72 a5 8e 3b ba |..j...s..8.r..;.| +orderer.example.com | 00000010 04 6e e6 a4 07 54 0c 61 89 20 20 8d 85 98 68 01 |.n...T.a. ...h.| +orderer.example.com | [ebe 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 27 c1 22 e8 fe 15 a9 7b 92 5f 7b e1 |0D. '."....{._{.| +orderer.example.com | 00000010 9a 8f 1f a9 6f 85 47 6d 4a 25 e2 5c f1 ac 67 70 |....o.GmJ%.\..gp| +orderer.example.com | 00000020 27 b3 be 82 02 20 11 ed ba df 4f 35 aa ae bf b9 |'.... ....O5....| +orderer.example.com | 00000030 c1 fb a3 82 ed 89 eb e6 8c 28 3f ad aa ab 43 4d |.........(?...CM| +orderer.example.com | 00000040 c0 1f fc 07 20 63 |.... c| +orderer.example.com | [ebf 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal evaluation succeeds for identity 0 +orderer.example.com | [ec0 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1515797839283780613 evaluation succeeds +orderer.example.com | [ec1 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [ec2 01-12 22:57:19.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 +orderer.example.com | [ec3 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [ec4 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026050 gate 1515797839292746128 evaluation starts +orderer.example.com | [ec5 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ec6 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ec7 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [eba 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [ebb 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [ebc 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 principal matched by identity 0 -orderer.example.com | [ebd 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 68 c0 cc 07 92 56 b0 26 8f 34 ab 65 65 0a b3 |Eh....V.&.4.ee..| -orderer.example.com | 00000010 b4 8c 5a c6 6b 73 55 4e 50 9f ab 2e 75 ac de 6e |..Z.ksUNP...u..n| -orderer.example.com | [ebe 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 45 36 a8 0a da 86 f4 14 a1 5f dc a6 |0D. E6......._..| -orderer.example.com | 00000010 db dd 29 30 d0 14 7d fb ab dd 40 18 0f c8 10 97 |..)0..}...@.....| -orderer.example.com | 00000020 fa 55 ad b2 02 20 07 bc da 94 b5 af a9 64 e8 be |.U... .......d..| -orderer.example.com | 00000030 3d 52 29 7c 30 f5 1c bf 84 04 31 88 c7 82 85 14 |=R)|0.....1.....| -orderer.example.com | 00000040 de 82 ed 5a 30 29 |...Z0)| -orderer.example.com | [ebf 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 principal evaluation succeeds for identity 0 -orderer.example.com | [ec0 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513666095218538700 evaluation succeeds -orderer.example.com | [ec1 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [ec2 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [ec3 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [ec4 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026320 gate 1513666095220306700 evaluation starts -orderer.example.com | [ec5 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ec6 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [ec7 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [ec9 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [eca 01-12 22:57:19.29 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [ec8 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [ecb 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 principal evaluation fails +orderer.example.com | [ecc 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026050 gate 1515797839292746128 evaluation fails +orderer.example.com | [ecd 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026070 gate 1515797839300206496 evaluation starts +orderer.example.com | [ece 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ecf 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [ed0 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ec8 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [ec9 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 principal evaluation fails -orderer.example.com | [eca 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026320 gate 1513666095220306700 evaluation fails -orderer.example.com | [ecb 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026330 gate 1513666095221761800 evaluation starts -orderer.example.com | [ecc 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ecd 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [ece 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ecf 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [ed0 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 principal evaluation fails -orderer.example.com | [ed1 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026330 gate 1513666095221761800 evaluation fails -orderer.example.com | [ed2 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026340 gate 1513666095222603800 evaluation starts -orderer.example.com | [ed3 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ed4 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [ed5 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ed6 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [ed7 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [ed8 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 principal matched by identity 0 -orderer.example.com | [ed9 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 68 c0 cc 07 92 56 b0 26 8f 34 ab 65 65 0a b3 |Eh....V.&.4.ee..| -orderer.example.com | 00000010 b4 8c 5a c6 6b 73 55 4e 50 9f ab 2e 75 ac de 6e |..Z.ksUNP...u..n| -orderer.example.com | [eda 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 45 36 a8 0a da 86 f4 14 a1 5f dc a6 |0D. E6......._..| -orderer.example.com | 00000010 db dd 29 30 d0 14 7d fb ab dd 40 18 0f c8 10 97 |..)0..}...@.....| -orderer.example.com | 00000020 fa 55 ad b2 02 20 07 bc da 94 b5 af a9 64 e8 be |.U... .......d..| -orderer.example.com | 00000030 3d 52 29 7c 30 f5 1c bf 84 04 31 88 c7 82 85 14 |=R)|0.....1.....| -orderer.example.com | 00000040 de 82 ed 5a 30 29 |...Z0)| -orderer.example.com | [edb 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 principal evaluation succeeds for identity 0 -orderer.example.com | [edc 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026340 gate 1513666095222603800 evaluation succeeds -orderer.example.com | [edd 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [ede 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [edf 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [ee0 12-19 06:48:15.22 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [ee1 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [ee2 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | [ee3 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -orderer.example.com | [ee4 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | [ee5 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -orderer.example.com | [ee6 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -orderer.example.com | [ee7 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [ee8 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [ee9 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [eea 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [eeb 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [eec 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...31C8B5AF6C2E7329CCFE62CB628CBAC9 -orderer.example.com | [eed 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 6946513D8D3C41D65FAC40942E7D5B03EB4A5E42E085653AD0E6E1A0BFBD6348 -orderer.example.com | [eee 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [eef 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [ef0 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [ef1 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [ef2 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [ef3 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...31C8B5AF6C2E7329CCFE62CB628CBAC9 -orderer.example.com | [ef4 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 3C7278D75F9A422F818DA95F5A40B0AAB432CBC779A3D03853F6CF1112DC6912 -orderer.example.com | [ef5 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -orderer.example.com | txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 +orderer.example.com | [ed1 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [ed2 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [ed3 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 principal matched by identity 0 +orderer.example.com | [ed4 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 13 6a b4 8f eb 73 c6 c3 38 a4 72 a5 8e 3b ba |..j...s..8.r..;.| +orderer.example.com | 00000010 04 6e e6 a4 07 54 0c 61 89 20 20 8d 85 98 68 01 |.n...T.a. ...h.| +orderer.example.com | [ed5 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 27 c1 22 e8 fe 15 a9 7b 92 5f 7b e1 |0D. '."....{._{.| +orderer.example.com | 00000010 9a 8f 1f a9 6f 85 47 6d 4a 25 e2 5c f1 ac 67 70 |....o.GmJ%.\..gp| +orderer.example.com | 00000020 27 b3 be 82 02 20 11 ed ba df 4f 35 aa ae bf b9 |'.... ....O5....| +orderer.example.com | 00000030 c1 fb a3 82 ed 89 eb e6 8c 28 3f ad aa ab 43 4d |.........(?...CM| +orderer.example.com | 00000040 c0 1f fc 07 20 63 |.... c| +orderer.example.com | [ed6 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 principal evaluation succeeds for identity 0 +orderer.example.com | [ed7 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026070 gate 1515797839300206496 evaluation succeeds +orderer.example.com | [ed8 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [ed9 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [eda 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [edb 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | [edc 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +orderer.example.com | [edd 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [ede 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +orderer.example.com | [edf 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [ee0 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [ee1 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ee2 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ee3 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ee4 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ee5 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...1C4A895161D71C56FB47FD3554E03F88 +orderer.example.com | [ee6 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 35C878D6CFD4CB4A5856AAE6AB0834E9431B9D83E853AEB1F8A08180F7B768AD +orderer.example.com | [ee7 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [ee8 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [ee9 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [eea 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [eeb 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [eec 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...1C4A895161D71C56FB47FD3554E03F88 +orderer.example.com | [eed 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: D7D00C876954FA527D305945A8D55B450CCFFE7007FBDE248F5FA928AAD1FEBD +orderer.example.com | [eee 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +orderer.example.com | txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 orderer.example.com | ] -orderer.example.com | [ef6 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49877], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | [ef7 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 -orderer.example.com | [ef8 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | [efa 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | [ef9 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | [efc 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5209], Going to peek [8] bytes -orderer.example.com | [efb 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | [efe 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | [efd 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5209], Going to peek [8] bytes -orderer.example.com | [f00 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | [f01 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -orderer.example.com | [eff 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -orderer.example.com | [f02 12-19 06:48:32.08 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [f03 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [f04 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [f05 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [f06 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026388 gate 1513666112107633000 evaluation starts -orderer.example.com | [f07 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f08 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f09 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [eef 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49849], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [ef0 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 +orderer.example.com | [ef1 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [ef2 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [ef3 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44642] +orderer.example.com | [ef5 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [ef6 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[44642], bytesOffset=[44644]} +orderer.example.com | [ef7 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +orderer.example.com | [ef4 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44642] +orderer.example.com | [ef8 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [ef9 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[44642], bytesOffset=[44644]} +orderer.example.com | [efa 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +orderer.example.com | [efb 01-12 22:57:36.02 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [efc 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [efd 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [efe 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [eff 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d8 gate 1515797856050737339 evaluation starts +orderer.example.com | [f00 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f01 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f02 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f0a 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [f0b 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 principal evaluation fails -orderer.example.com | [f0c 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026388 gate 1513666112107633000 evaluation fails -orderer.example.com | [f0d 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026398 gate 1513666112108221800 evaluation starts -orderer.example.com | [f0e 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f0f 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f10 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f03 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [f04 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 principal evaluation fails +orderer.example.com | [f05 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d8 gate 1515797856050737339 evaluation fails +orderer.example.com | [f06 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1515797856052466074 evaluation starts +orderer.example.com | [f07 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f08 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f09 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f11 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [f12 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [f13 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 principal matched by identity 0 -orderer.example.com | [f14 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a5 a4 a1 bb c4 d1 91 07 49 ee cc 2d f7 01 05 97 |........I..-....| -orderer.example.com | 00000010 30 13 3a 79 86 b9 3f fd 2f 17 ec f6 6a 48 e2 68 |0.:y..?./...jH.h| -orderer.example.com | [f15 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e2 a1 6d 78 1d d6 b8 d5 64 a8 e5 |0E.!...mx....d..| -orderer.example.com | 00000010 16 6c 25 8c 03 75 d0 da ce 82 a6 55 91 2b 6b 28 |.l%..u.....U.+k(| -orderer.example.com | 00000020 28 2f 00 a4 6a 02 20 1a 0e 4a af 2e 67 a9 dd 99 |(/..j. ..J..g...| -orderer.example.com | 00000030 f7 35 9f a2 ef 8d 5c 41 e5 36 36 d5 fa 4d 1f f1 |.5....\A.66..M..| -orderer.example.com | 00000040 7c 16 d1 f0 86 36 51 ||....6Q| -orderer.example.com | [f16 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 principal evaluation succeeds for identity 0 -orderer.example.com | [f17 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026398 gate 1513666112108221800 evaluation succeeds -orderer.example.com | [f18 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [f19 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [f1a 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [f1b 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666112109545300 evaluation starts -orderer.example.com | [f1c 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f1d 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f1e 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f0a 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [f0b 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 principal evaluation fails +orderer.example.com | [f0c 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1515797856052466074 evaluation fails +orderer.example.com | [f0d 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1515797856054121146 evaluation starts +orderer.example.com | [f0e 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f0f 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f10 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f1f 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [f20 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 principal evaluation fails -orderer.example.com | [f21 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666112109545300 evaluation fails -orderer.example.com | [f22 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180b00 gate 1513666112110402000 evaluation starts -orderer.example.com | [f23 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f24 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f25 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f11 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [f12 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [f13 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal matched by identity 0 +orderer.example.com | [f14 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 e5 61 20 d4 10 d5 f2 28 d5 e9 78 95 1a d8 cb |#.a ....(..x....| +orderer.example.com | 00000010 45 82 3f 04 f0 18 13 d9 90 fd a0 00 52 b1 9c 15 |E.?.........R...| +orderer.example.com | [f15 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 ba 4b 27 82 ef 3d 27 da 46 92 f7 |0D. h.K'..='.F..| +orderer.example.com | 00000010 2c 35 af a8 3c 14 a4 72 70 9a 01 49 6a af 92 ee |,5..<..rp..Ij...| +orderer.example.com | 00000020 01 72 93 9c 02 20 61 29 ad 1d 06 cb 86 e9 aa fd |.r... a)........| +orderer.example.com | 00000030 c2 e3 6f 96 c8 8e 41 0f f3 28 37 ed 47 9e 85 c1 |..o...A..(7.G...| +orderer.example.com | 00000040 ee 2e e6 ad be 73 |.....s| +orderer.example.com | [f16 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal evaluation succeeds for identity 0 +orderer.example.com | [f17 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1515797856054121146 evaluation succeeds +orderer.example.com | [f18 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [f19 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [f1a 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f1b 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4d0 gate 1515797856057485663 evaluation starts +orderer.example.com | [f1c 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f1d 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f1e 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -orderer.example.com | tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -orderer.example.com | IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -orderer.example.com | LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -orderer.example.com | xxOzE+vwajS1IiAN7g== +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f26 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [f27 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [f28 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 principal matched by identity 0 -orderer.example.com | [f29 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a5 a4 a1 bb c4 d1 91 07 49 ee cc 2d f7 01 05 97 |........I..-....| -orderer.example.com | 00000010 30 13 3a 79 86 b9 3f fd 2f 17 ec f6 6a 48 e2 68 |0.:y..?./...jH.h| -orderer.example.com | [f2a 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e2 a1 6d 78 1d d6 b8 d5 64 a8 e5 |0E.!...mx....d..| -orderer.example.com | 00000010 16 6c 25 8c 03 75 d0 da ce 82 a6 55 91 2b 6b 28 |.l%..u.....U.+k(| -orderer.example.com | 00000020 28 2f 00 a4 6a 02 20 1a 0e 4a af 2e 67 a9 dd 99 |(/..j. ..J..g...| -orderer.example.com | 00000030 f7 35 9f a2 ef 8d 5c 41 e5 36 36 d5 fa 4d 1f f1 |.5....\A.66..M..| -orderer.example.com | 00000040 7c 16 d1 f0 86 36 51 ||....6Q| -orderer.example.com | [f2b 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 principal evaluation succeeds for identity 0 -orderer.example.com | [f2c 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180b00 gate 1513666112110402000 evaluation succeeds -orderer.example.com | [f2d 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [f2e 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [f2f 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [f30 12-19 06:48:32.11 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [f31 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [f32 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | [f33 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | [f34 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5209], Going to peek [8] bytes -orderer.example.com | [f35 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | [f36 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -orderer.example.com | [f37 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [f38 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f39 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f3a 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f3b 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f3c 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...8BCB72929412272172AB774C0308BC78 -orderer.example.com | [f3d 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: EB41E2C57B6FEAF510AF24344097120EBC27D439872EE46473301107CE894B92 -orderer.example.com | [f3e 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f3f 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f40 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [f41 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f42 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f43 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...8BCB72929412272172AB774C0308BC78 -orderer.example.com | [f44 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: A50A2E7B14AB3D6C34C9EE4615B4CAEA27DD87FBDDAA39B453758FBA5CE8182F -orderer.example.com | [f45 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -orderer.example.com | txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 +orderer.example.com | [f1f 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [f20 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 principal evaluation fails +orderer.example.com | [f21 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4d0 gate 1515797856057485663 evaluation fails +orderer.example.com | [f22 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4e0 gate 1515797856058551030 evaluation starts +orderer.example.com | [f23 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f24 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f25 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f26 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [f27 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 principal evaluation fails +orderer.example.com | [f28 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4e0 gate 1515797856058551030 evaluation fails +orderer.example.com | [f29 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4f0 gate 1515797856059807901 evaluation starts +orderer.example.com | [f2a 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f2b 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f2c 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +orderer.example.com | IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +orderer.example.com | IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +orderer.example.com | 8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +orderer.example.com | GQ7v12AxPl+nq3TimiE= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [f2d 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [f2e 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [f2f 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 principal matched by identity 0 +orderer.example.com | [f30 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 e5 61 20 d4 10 d5 f2 28 d5 e9 78 95 1a d8 cb |#.a ....(..x....| +orderer.example.com | 00000010 45 82 3f 04 f0 18 13 d9 90 fd a0 00 52 b1 9c 15 |E.?.........R...| +orderer.example.com | [f31 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 ba 4b 27 82 ef 3d 27 da 46 92 f7 |0D. h.K'..='.F..| +orderer.example.com | 00000010 2c 35 af a8 3c 14 a4 72 70 9a 01 49 6a af 92 ee |,5..<..rp..Ij...| +orderer.example.com | 00000020 01 72 93 9c 02 20 61 29 ad 1d 06 cb 86 e9 aa fd |.r... a)........| +orderer.example.com | 00000030 c2 e3 6f 96 c8 8e 41 0f f3 28 37 ed 47 9e 85 c1 |..o...A..(7.G...| +orderer.example.com | 00000040 ee 2e e6 ad be 73 |.....s| +orderer.example.com | [f32 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 principal evaluation succeeds for identity 0 +orderer.example.com | [f33 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4f0 gate 1515797856059807901 evaluation succeeds +orderer.example.com | [f34 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [f35 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [f36 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [f37 01-12 22:57:36.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [f38 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [f39 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | [f3a 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44642] +orderer.example.com | [f3b 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +orderer.example.com | [f3c 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[44642], bytesOffset=[44644]} +orderer.example.com | [f3d 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [f3e 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [f3f 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f40 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f41 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f42 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f43 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CEEE4EBDA6167406C65B71B41DAD1DBF +orderer.example.com | [f44 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: DAFFEA65833B435CE919EF42BFB3A9ABA0E38131D936E3042FF788A2B2CBCB0D +orderer.example.com | [f45 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f46 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f47 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [f48 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f49 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f4a 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...CEEE4EBDA6167406C65B71B41DAD1DBF +orderer.example.com | [f4b 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 101083AAE21708BE4F0C645ADE40DB6A6AD400D313FB3B132E14CD2DBBCFA063 +orderer.example.com | [f4c 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +orderer.example.com | txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 orderer.example.com | ] -orderer.example.com | [f46 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54545], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | [f47 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 5 -orderer.example.com | [f48 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | [f49 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -orderer.example.com | [f4a 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | [f4b 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -orderer.example.com | [f4d 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4668], Going to peek [8] bytes -orderer.example.com | [f4e 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -orderer.example.com | [f4f 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -orderer.example.com | [f4c 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4668], Going to peek [8] bytes -orderer.example.com | [f50 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -orderer.example.com | [f51 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -orderer.example.com | [f52 12-19 06:48:48.30 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [f53 12-19 06:48:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -orderer.example.com | [f54 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | [f55 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [f56 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260c8 gate 1513666128332022400 evaluation starts -orderer.example.com | [f57 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f58 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f59 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f4d 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54515], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [f4e 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 5 +orderer.example.com | [f4f 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | [f50 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49849] +orderer.example.com | [f51 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | [f53 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4666], Going to peek [8] bytes +orderer.example.com | [f54 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4664], placementInfo={fileNum=[0], startOffset=[49849], bytesOffset=[49851]} +orderer.example.com | [f55 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +orderer.example.com | [f52 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49849] +orderer.example.com | [f56 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4666], Going to peek [8] bytes +orderer.example.com | [f57 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4664], placementInfo={fileNum=[0], startOffset=[49849], bytesOffset=[49851]} +orderer.example.com | [f58 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +orderer.example.com | [f59 01-12 22:57:52.35 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [f5a 01-12 22:57:52.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +orderer.example.com | [f5b 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | [f5c 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f5d 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c640 gate 1515797872386983428 evaluation starts +orderer.example.com | [f5e 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f5f 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f60 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f5a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [f5b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 principal evaluation fails -orderer.example.com | [f5c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260c8 gate 1513666128332022400 evaluation fails -orderer.example.com | [f5d 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1513666128333055700 evaluation starts -orderer.example.com | [f5e 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f5f 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f60 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f61 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [f62 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 principal evaluation fails +orderer.example.com | [f63 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c640 gate 1515797872386983428 evaluation fails +orderer.example.com | [f64 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c6a0 gate 1515797872388303867 evaluation starts +orderer.example.com | [f65 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f66 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f67 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f61 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [f62 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 principal evaluation fails -orderer.example.com | [f63 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1513666128333055700 evaluation fails -orderer.example.com | [f64 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1513666128334056600 evaluation starts -orderer.example.com | [f65 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f66 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f67 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f68 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [f69 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [f6a 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 principal matched by identity 0 +orderer.example.com | [f6b 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2b a1 a4 46 9e 3b 0b 90 29 70 e5 1a c1 be 7b 90 |+..F.;..)p....{.| +orderer.example.com | 00000010 06 2f dc ad a1 15 a5 61 05 3c ab 28 f5 1e 45 e6 |./.....a.<.(..E.| +orderer.example.com | [f6c 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d2 99 01 15 46 b9 9a d4 39 dc fe |0E.!.....F...9..| +orderer.example.com | 00000010 6d 15 f3 2f 98 38 23 a1 a4 f7 0c 24 e0 96 7a 42 |m../.8#....$..zB| +orderer.example.com | 00000020 0c bc 84 59 71 02 20 08 5b 81 59 2a de e4 9d 41 |...Yq. .[.Y*...A| +orderer.example.com | 00000030 98 d0 bb dd 1b c2 d0 c4 25 27 a7 4e 36 d2 c8 d8 |........%'.N6...| +orderer.example.com | 00000040 49 0f 58 d6 32 3d 4d |I.X.2=M| +orderer.example.com | [f6d 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 principal evaluation succeeds for identity 0 +orderer.example.com | [f6e 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c6a0 gate 1515797872388303867 evaluation succeeds +orderer.example.com | [f6f 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [f70 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | [f71 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +orderer.example.com | [f72 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026148 gate 1515797872390742447 evaluation starts +orderer.example.com | [f73 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f74 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f75 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f68 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [f69 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [f6a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal matched by identity 0 -orderer.example.com | [f6b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 84 b8 1e 2e 2b 22 19 da 00 96 cf 02 06 a1 c4 d0 |....+"..........| -orderer.example.com | 00000010 53 9d 42 c3 ab d2 e5 23 23 ad 64 a4 b7 8c 60 2f |S.B....##.d...`/| -orderer.example.com | [f6c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 44 1a d8 2c 52 77 ef fc f0 50 e0 |0D. xD..,Rw...P.| -orderer.example.com | 00000010 4f 2a 3e 50 6d 44 1e 11 0a 85 75 db 64 82 80 fa |O*>PmD....u.d...| -orderer.example.com | 00000020 12 cd 23 f0 02 20 1a d0 0c 18 7b e1 8f 10 0b dc |..#.. ....{.....| -orderer.example.com | 00000030 08 1c 81 46 ef 83 0e 9e ce 2b 6a 4e 56 6f d1 c2 |...F.....+jNVo..| -orderer.example.com | 00000040 1c 83 27 c2 00 37 |..'..7| -orderer.example.com | [f6d 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal evaluation succeeds for identity 0 -orderer.example.com | [f6e 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1513666128334056600 evaluation succeeds -orderer.example.com | [f6f 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [f70 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | [f71 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -orderer.example.com | [f72 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026200 gate 1513666128336045900 evaluation starts -orderer.example.com | [f73 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f74 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f75 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +orderer.example.com | [f76 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | [f77 01-12 22:57:52.39 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [f78 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [f79 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 principal evaluation fails +orderer.example.com | [f7a 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026148 gate 1515797872390742447 evaluation fails +orderer.example.com | [f7b 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026158 gate 1515797872393019908 evaluation starts +orderer.example.com | [f7c 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [f7d 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | [f7e 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +orderer.example.com | KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX +orderer.example.com | +Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +orderer.example.com | rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +orderer.example.com | SYrZ4wtbgZQtN8SOzQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f76 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [f77 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 principal evaluation fails -orderer.example.com | [f78 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026200 gate 1513666128336045900 evaluation fails -orderer.example.com | [f79 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026218 gate 1513666128337402200 evaluation starts -orderer.example.com | [f7a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f7b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f7c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f7d 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [f7e 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 principal evaluation fails -orderer.example.com | [f7f 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026218 gate 1513666128337402200 evaluation fails -orderer.example.com | [f80 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026228 gate 1513666128338589700 evaluation starts -orderer.example.com | [f81 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f82 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [f83 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -orderer.example.com | 5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -orderer.example.com | c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -orderer.example.com | fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -orderer.example.com | RylILfxW9iIlKYt/mSI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [f84 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [f85 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [f86 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 principal matched by identity 0 -orderer.example.com | [f87 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 84 b8 1e 2e 2b 22 19 da 00 96 cf 02 06 a1 c4 d0 |....+"..........| -orderer.example.com | 00000010 53 9d 42 c3 ab d2 e5 23 23 ad 64 a4 b7 8c 60 2f |S.B....##.d...`/| -orderer.example.com | [f88 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 44 1a d8 2c 52 77 ef fc f0 50 e0 |0D. xD..,Rw...P.| -orderer.example.com | 00000010 4f 2a 3e 50 6d 44 1e 11 0a 85 75 db 64 82 80 fa |O*>PmD....u.d...| -orderer.example.com | 00000020 12 cd 23 f0 02 20 1a d0 0c 18 7b e1 8f 10 0b dc |..#.. ....{.....| -orderer.example.com | 00000030 08 1c 81 46 ef 83 0e 9e ce 2b 6a 4e 56 6f d1 c2 |...F.....+jNVo..| -orderer.example.com | 00000040 1c 83 27 c2 00 37 |..'..7| -orderer.example.com | [f89 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 principal evaluation succeeds for identity 0 -orderer.example.com | [f8a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026228 gate 1513666128338589700 evaluation succeeds -orderer.example.com | [f8b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -orderer.example.com | [f8c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [f8d 12-19 06:48:48.34 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [f8e 12-19 06:48:48.34 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [f8f 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [f90 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | [f91 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -orderer.example.com | [f92 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4668], Going to peek [8] bytes -orderer.example.com | [f93 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -orderer.example.com | [f94 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -orderer.example.com | [f95 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -orderer.example.com | [f96 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f97 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f98 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f99 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f9a 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...97FFA714D7E5731AAD5C10355BFFEED4 -orderer.example.com | [f9b 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 4C2DA3F4563121226A47051EA12CC9B3C9185A89684F8C8E257C99EF241ADAD4 -orderer.example.com | [f9c 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [f9d 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [f9e 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [f9f 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [fa0 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [fa1 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...97FFA714D7E5731AAD5C10355BFFEED4 -orderer.example.com | [fa2 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: AB8BE80EC44741F15E5CD933B8E63C7BF09108561A44298BB06BCA769DFD406B -orderer.example.com | [fa3 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -orderer.example.com | txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 +orderer.example.com | [f7f 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [f80 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [f81 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 principal matched by identity 0 +orderer.example.com | [f82 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2b a1 a4 46 9e 3b 0b 90 29 70 e5 1a c1 be 7b 90 |+..F.;..)p....{.| +orderer.example.com | 00000010 06 2f dc ad a1 15 a5 61 05 3c ab 28 f5 1e 45 e6 |./.....a.<.(..E.| +orderer.example.com | [f83 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d2 99 01 15 46 b9 9a d4 39 dc fe |0E.!.....F...9..| +orderer.example.com | 00000010 6d 15 f3 2f 98 38 23 a1 a4 f7 0c 24 e0 96 7a 42 |m../.8#....$..zB| +orderer.example.com | 00000020 0c bc 84 59 71 02 20 08 5b 81 59 2a de e4 9d 41 |...Yq. .[.Y*...A| +orderer.example.com | 00000030 98 d0 bb dd 1b c2 d0 c4 25 27 a7 4e 36 d2 c8 d8 |........%'.N6...| +orderer.example.com | 00000040 49 0f 58 d6 32 3d 4d |I.X.2=M| +orderer.example.com | [f84 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 principal evaluation succeeds for identity 0 +orderer.example.com | [f85 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026158 gate 1515797872393019908 evaluation succeeds +orderer.example.com | [f86 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +orderer.example.com | [f87 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [f88 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [f89 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | [f8a 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49849] +orderer.example.com | [f8b 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4666], Going to peek [8] bytes +orderer.example.com | [f8c 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4664], placementInfo={fileNum=[0], startOffset=[49849], bytesOffset=[49851]} +orderer.example.com | [f8d 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +orderer.example.com | [f8e 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +orderer.example.com | [f8f 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f90 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f91 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f92 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f93 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...834AED6F65874D4B4C959128AA98BB63 +orderer.example.com | [f94 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9CEB0556366AFE2DD76F6E617A8385BA8A2051A5117AA43183A4F823D4BE9E5D +orderer.example.com | [f95 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f96 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f97 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [f98 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | [f99 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [f9a 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...834AED6F65874D4B4C959128AA98BB63 +orderer.example.com | [f9b 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 1103664AAA452E687FE4DF6E81B29BD172601704378204BDE13CA32898C29B8C +orderer.example.com | [f9c 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +orderer.example.com | txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 orderer.example.com | ] -orderer.example.com | [fa4 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59214], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | [fa5 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 6 -orderer.example.com | [fa7 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | [fa6 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | [fa9 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -orderer.example.com | [faa 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes -orderer.example.com | [fab 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -orderer.example.com | [fac 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -orderer.example.com | [fa8 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -orderer.example.com | [fad 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes -orderer.example.com | [fae 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -orderer.example.com | [faf 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -orderer.example.com | [fb0 12-19 06:48:50.42 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [fb1 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [fb2 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [fb3 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [fb4 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201805b8 gate 1513666130428837000 evaluation starts -orderer.example.com | [fb5 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fb6 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [fb7 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [fb8 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [fb9 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 principal evaluation fails -orderer.example.com | [fba 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201805b8 gate 1513666130428837000 evaluation fails -orderer.example.com | [fbb 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180710 gate 1513666130431161100 evaluation starts -orderer.example.com | [fbc 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fbd 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [fbe 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [fbf 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [fc0 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 principal evaluation fails -orderer.example.com | [fc1 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180710 gate 1513666130431161100 evaluation fails -orderer.example.com | [fc2 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201808d8 gate 1513666130433755000 evaluation starts -orderer.example.com | [fc3 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fc4 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [fc5 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [fc6 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [fc7 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [fc8 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 principal matched by identity 0 -orderer.example.com | [fc9 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 58 74 2b 72 be 86 7d 96 3f 7a 24 19 69 cb 3b cb |Xt+r..}.?z$.i.;.| -orderer.example.com | 00000010 8b 56 7f 89 e5 80 0a 72 a1 cb 41 4d ed 72 9a c6 |.V.....r..AM.r..| -orderer.example.com | [fca 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ea 3d c4 91 1d 73 7c df 1a c4 62 |0E.!..=...s|...b| -orderer.example.com | 00000010 ec 4b 52 ef 7b 03 34 10 74 22 77 3e c0 b3 5c d3 |.KR.{.4.t"w>..\.| -orderer.example.com | 00000020 dd 7a a6 eb c5 02 20 70 ac 5a 6d 23 06 af 1a cf |.z.... p.Zm#....| -orderer.example.com | 00000030 7b 9a 1b da 00 4b 44 2a 7a 64 32 a7 22 b6 70 9f |{....KD*zd2.".p.| -orderer.example.com | 00000040 cb 95 74 79 70 3e ae |..typ>.| -orderer.example.com | [fcb 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 principal evaluation succeeds for identity 0 -orderer.example.com | [fcc 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201808d8 gate 1513666130433755000 evaluation succeeds -orderer.example.com | [fcd 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [fce 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4209e7520) start: > stop: > -orderer.example.com | [fcf 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | [fd0 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [fd1 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[59214], Going to peek [8] bytes -orderer.example.com | [fd2 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [fd3 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4209e7520) -orderer.example.com | [fd4 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4209e7520), waiting for new SeekInfo -orderer.example.com | [fd5 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [fd6 12-19 06:48:50.44 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [fd7 12-19 06:48:50.44 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [fd8 12-19 06:48:50.55 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [fd9 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [fda 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [fdb 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [fdc 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026268 gate 1513666130559044700 evaluation starts -orderer.example.com | [fdd 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fde 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [fdf 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [fe0 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [fe1 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 principal evaluation fails -orderer.example.com | [fe2 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026268 gate 1513666130559044700 evaluation fails -orderer.example.com | [fe3 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026278 gate 1513666130560296800 evaluation starts -orderer.example.com | [fe4 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fe5 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [fe6 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [fe7 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [fe8 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 principal evaluation fails -orderer.example.com | [fe9 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026278 gate 1513666130560296800 evaluation fails -orderer.example.com | [fea 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513666130561161300 evaluation starts -orderer.example.com | [feb 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fec 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [fed 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [fee 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [fef 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [ff0 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 principal matched by identity 0 -orderer.example.com | [ff1 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 9d ff ad 29 ee 1c ca 63 8e f4 db 82 c1 13 7b |L...)...c......{| -orderer.example.com | 00000010 85 c0 e5 76 54 32 ae a3 32 85 ca d1 f7 ac 81 db |...vT2..2.......| -orderer.example.com | [ff2 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 04 db db ed 86 8a b7 0b 0b 0f ac bf |0D. ............| -orderer.example.com | 00000010 47 86 8d ac 87 21 04 ad 23 0f 62 a8 d9 13 ff a3 |G....!..#.b.....| -orderer.example.com | 00000020 2c c2 5b 86 02 20 21 7c f5 e5 97 06 ed e1 a1 ec |,.[.. !|........| -orderer.example.com | 00000030 d2 7c 8d f1 8d c3 f9 59 73 59 95 c4 24 d1 7b 32 |.|.....YsY..$.{2| -orderer.example.com | 00000040 79 c0 11 c6 9e dc |y.....| -orderer.example.com | [ff3 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 principal evaluation succeeds for identity 0 -orderer.example.com | [ff4 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513666130561161300 evaluation succeeds -orderer.example.com | [ff5 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [ff6 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420abff60) start: > stop: > -orderer.example.com | [ff7 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | [ff8 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -orderer.example.com | [ff9 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[47279], Going to peek [8] bytes -orderer.example.com | [ffa 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -orderer.example.com | [ffb 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420abff60) -orderer.example.com | [ffc 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420abff60), waiting for new SeekInfo -orderer.example.com | [ffd 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [ffe 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [fff 12-19 06:48:50.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1000 12-19 06:48:50.68 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1001 12-19 06:48:50.68 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [1002 12-19 06:48:50.68 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [1003 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [1004 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180998 gate 1513666130690450200 evaluation starts -orderer.example.com | [1005 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1006 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [1007 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1008 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [1009 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 principal evaluation fails -orderer.example.com | [100a 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180998 gate 1513666130690450200 evaluation fails -orderer.example.com | [100b 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809b8 gate 1513666130691042000 evaluation starts -orderer.example.com | [100c 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [100d 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [100e 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [100f 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [1010 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 principal evaluation fails -orderer.example.com | [1011 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809b8 gate 1513666130691042000 evaluation fails -orderer.example.com | [1012 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809d0 gate 1513666130691561500 evaluation starts -orderer.example.com | [1013 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1014 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [1015 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1016 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [1017 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [1018 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 principal matched by identity 0 -orderer.example.com | [1019 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 00 58 2a 2c 3c e9 3a 9c ce 2d 46 a8 63 7d 73 20 |.X*,<.:..-F.c}s | -orderer.example.com | 00000010 c1 8a 19 3a 6e e6 93 27 c6 95 3c 16 34 41 21 97 |...:n..'..<.4A!.| -orderer.example.com | [101a 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 84 61 ca 0e ee f5 4c 55 37 fb 00 |0E.!..a....LU7..| -orderer.example.com | 00000010 aa f9 8e b7 1f c3 a1 b9 60 ff c9 48 dc 20 ea 77 |........`..H. .w| -orderer.example.com | 00000020 6b 95 08 f7 8c 02 20 31 1e 6d 88 b1 70 4d 03 35 |k..... 1.m..pM.5| -orderer.example.com | 00000030 35 7a ce a6 0a 44 54 b8 81 55 16 6a cf ad af 08 |5z...DT..U.j....| -orderer.example.com | 00000040 43 a0 c2 c2 0c d5 07 |C......| -orderer.example.com | [101b 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 principal evaluation succeeds for identity 0 -orderer.example.com | [101c 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809d0 gate 1513666130691561500 evaluation succeeds -orderer.example.com | [101d 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [101e 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4203b4520) start: > stop: > -orderer.example.com | [101f 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | [1020 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -orderer.example.com | [1021 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[33545], Going to peek [8] bytes -orderer.example.com | [1022 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -orderer.example.com | [1023 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4203b4520) -orderer.example.com | [1024 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4203b4520), waiting for new SeekInfo -orderer.example.com | [1025 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [1026 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1027 12-19 06:48:50.69 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1028 12-19 06:48:50.79 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1029 12-19 06:48:50.79 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [102a 12-19 06:48:50.79 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [102b 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [102c 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513666130801428000 evaluation starts -orderer.example.com | [102d 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [102e 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [102f 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1030 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [1031 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 principal evaluation fails -orderer.example.com | [1032 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513666130801428000 evaluation fails -orderer.example.com | [1033 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513666130802749100 evaluation starts -orderer.example.com | [1034 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1035 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [1036 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1037 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [1038 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal evaluation fails -orderer.example.com | [1039 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513666130802749100 evaluation fails -orderer.example.com | [103a 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1513666130803679800 evaluation starts -orderer.example.com | [103b 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [103c 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [103d 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [103e 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [103f 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [1040 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal matched by identity 0 -orderer.example.com | [1041 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2e dc 42 8d d4 b0 f5 b5 61 fd 02 af b3 6c e8 b8 |..B.....a....l..| -orderer.example.com | 00000010 8f 7c 91 62 ca 51 58 76 68 bc 76 66 e7 78 bb 78 |.|.b.QXvh.vf.x.x| -orderer.example.com | [1042 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 03 95 1f ce 11 d9 76 ef a5 c4 97 5c |0D. ......v....\| -orderer.example.com | 00000010 29 dd 43 2f 1b a1 b8 18 a2 05 22 4c 06 46 89 9d |).C/......"L.F..| -orderer.example.com | 00000020 3f c0 ff c6 02 20 1b b7 c4 23 59 df bc bb a4 9f |?.... ...#Y.....| -orderer.example.com | 00000030 be 94 b8 0a 0e bf 54 2f e4 2b d2 e0 ca 17 21 01 |......T/.+....!.| -orderer.example.com | 00000040 57 11 ac f4 82 e7 |W.....| -orderer.example.com | [1043 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal evaluation succeeds for identity 0 -orderer.example.com | [1044 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1513666130803679800 evaluation succeeds -orderer.example.com | [1045 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [1046 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4208fa880) start: > stop: > -orderer.example.com | [1047 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | [1048 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -orderer.example.com | [1049 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[19754], Going to peek [8] bytes -orderer.example.com | [104a 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -orderer.example.com | [104b 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4208fa880) -orderer.example.com | [104c 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4208fa880), waiting for new SeekInfo -orderer.example.com | [104d 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [104e 12-19 06:48:50.81 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [104f 12-19 06:48:50.81 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1050 12-19 06:48:50.92 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1051 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [1052 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [1053 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [1054 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026348 gate 1513666130924407600 evaluation starts -orderer.example.com | [1055 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1056 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [1057 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1058 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [1059 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 principal evaluation fails -orderer.example.com | [105a 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026348 gate 1513666130924407600 evaluation fails -orderer.example.com | [105b 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026358 gate 1513666130925704000 evaluation starts -orderer.example.com | [105c 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [105d 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [105e 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [105f 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [1060 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 principal evaluation fails -orderer.example.com | [1061 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026358 gate 1513666130925704000 evaluation fails -orderer.example.com | [1062 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513666130926852100 evaluation starts -orderer.example.com | [1063 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1064 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [1065 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1066 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [1067 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [1068 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal matched by identity 0 -orderer.example.com | [1069 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 12 a1 f1 4a 14 49 8a 0a 9d be 26 f2 3e ae 40 a2 |...J.I....&.>.@.| -orderer.example.com | 00000010 33 35 0f 7d 0f d7 51 62 4c 69 df a2 67 4a a8 f2 |35.}..QbLi..gJ..| -orderer.example.com | [106a 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6d ff 30 1a 80 5e 1b 3e f1 0d ac a5 |0D. m.0..^.>....| -orderer.example.com | 00000010 5a 66 a7 01 dd a8 0a d6 22 69 8a a6 c6 c4 46 2c |Zf......"i....F,| -orderer.example.com | 00000020 37 61 56 42 02 20 72 14 7b d2 e2 4b a9 d4 bc 04 |7aVB. r.{..K....| -orderer.example.com | 00000030 2e b5 e6 96 3f b0 fa 63 84 89 4e d5 ab 60 47 1c |....?..c..N..`G.| -orderer.example.com | 00000040 49 3f bb 0b f8 54 |I?...T| -orderer.example.com | [106b 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal evaluation succeeds for identity 0 -orderer.example.com | [106c 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513666130926852100 evaluation succeeds -orderer.example.com | [106d 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [106e 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420352a60) start: > stop: > -orderer.example.com | [106f 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | [1070 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | [1071 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14546], Going to peek [8] bytes -orderer.example.com | [1072 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | [1073 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420352a60) -orderer.example.com | [1074 12-19 06:48:50.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420352a60), waiting for new SeekInfo -orderer.example.com | [1075 12-19 06:48:50.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [1076 12-19 06:48:50.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1077 12-19 06:48:50.93 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1078 12-19 06:48:51.03 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1079 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [107a 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [107b 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [107c 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a38 gate 1513666131031545000 evaluation starts -orderer.example.com | [107d 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [107e 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [107f 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1080 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [1081 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 principal evaluation fails -orderer.example.com | [1082 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a38 gate 1513666131031545000 evaluation fails -orderer.example.com | [1083 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a50 gate 1513666131036396900 evaluation starts -orderer.example.com | [1084 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1085 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [1086 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1087 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [1088 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 principal evaluation fails -orderer.example.com | [1089 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a50 gate 1513666131036396900 evaluation fails -orderer.example.com | [108a 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a68 gate 1513666131039743500 evaluation starts -orderer.example.com | [108b 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [108c 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [108d 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [108e 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [108f 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [1090 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 principal matched by identity 0 -orderer.example.com | [1091 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 b3 a4 70 ed a3 17 74 c0 59 f4 0c bf f9 f0 bc |i..p...t.Y......| -orderer.example.com | 00000010 b8 b8 c8 b7 89 43 65 a9 ac 58 b6 67 ae 25 96 7a |.....Ce..X.g.%.z| -orderer.example.com | [1092 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 31 24 f4 81 f9 10 68 bd d3 ac a9 77 |0D. 1$....h....w| -orderer.example.com | 00000010 ed bd 30 d1 4c 5d 63 75 5e 2d 3f e1 87 80 14 96 |..0.L]cu^-?.....| -orderer.example.com | 00000020 34 38 78 06 02 20 50 62 fb 48 b4 ce c8 de 3c b1 |48x.. Pb.H....<.| -orderer.example.com | 00000030 39 37 19 d2 7b ea 5b 0e 0d 91 e3 c4 e7 72 66 01 |97..{.[......rf.| -orderer.example.com | 00000040 db 1e 3a 9b 29 a7 |..:.).| -orderer.example.com | [1093 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 principal evaluation succeeds for identity 0 -orderer.example.com | [1094 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a68 gate 1513666131039743500 evaluation succeeds -orderer.example.com | [1095 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [1096 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4202aa200) start: > stop: > -orderer.example.com | [1097 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | [1098 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -orderer.example.com | [1099 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9337], Going to peek [8] bytes -orderer.example.com | [109a 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -orderer.example.com | [109b 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa200) -orderer.example.com | [109c 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4202aa200), waiting for new SeekInfo -orderer.example.com | [109d 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [109e 12-19 06:48:51.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [109f 12-19 06:48:51.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [10a0 12-19 06:48:51.19 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [10a1 12-19 06:48:51.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [10a2 12-19 06:48:51.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [10a3 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [10a4 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c8 gate 1513666131200693800 evaluation starts -orderer.example.com | [10a5 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10a6 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [10a7 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [10a8 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [10a9 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 principal evaluation fails -orderer.example.com | [10aa 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c8 gate 1513666131200693800 evaluation fails -orderer.example.com | [10ab 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263d8 gate 1513666131202143000 evaluation starts -orderer.example.com | [10ac 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10ad 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [10ae 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [10af 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [10b0 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 principal evaluation fails -orderer.example.com | [10b1 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263d8 gate 1513666131202143000 evaluation fails -orderer.example.com | [10b2 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e8 gate 1513666131203914100 evaluation starts -orderer.example.com | [10b3 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10b4 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [10b5 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [10b6 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [10b7 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [10b8 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 principal matched by identity 0 -orderer.example.com | [10b9 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0e 2d cd cb 25 25 64 8b f7 12 63 b3 77 0b 03 5d |.-..%%d...c.w..]| -orderer.example.com | 00000010 25 02 35 69 73 77 a2 73 a2 82 0f 96 95 17 8b d6 |%.5isw.s........| -orderer.example.com | [10ba 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 65 ec 1f 60 fd 07 a8 36 4f fd |0E.!..e..`...6O.| -orderer.example.com | 00000010 d9 7c 9d c8 f3 85 43 bc 21 d5 87 1f b4 3a 39 1d |.|....C.!....:9.| -orderer.example.com | 00000020 c2 6a 0c 3d fa 02 20 5b 84 ca 6a 77 64 8f ba 8c |.j.=.. [..jwd...| -orderer.example.com | 00000030 fc 85 81 5d 35 14 66 94 e7 6a 49 7c f7 e6 29 0c |...]5.f..jI|..).| -orderer.example.com | 00000040 01 aa 9d 97 7d a4 8b |....}..| -orderer.example.com | [10bb 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 principal evaluation succeeds for identity 0 -orderer.example.com | [10bc 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e8 gate 1513666131203914100 evaluation succeeds -orderer.example.com | [10bd 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -orderer.example.com | [10be 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420228780) start: > stop: > -orderer.example.com | [10bf 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | [10c0 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -orderer.example.com | [10c1 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes -orderer.example.com | [10c2 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -orderer.example.com | [10c3 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420228780) -orderer.example.com | [10c4 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420228780), waiting for new SeekInfo -orderer.example.com | [10c5 12-19 06:48:51.21 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [10c6 12-19 06:48:51.21 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [10c7 12-19 06:48:51.21 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [10c8 12-19 06:48:51.33 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [10c9 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [10ca 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [10cb 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [10cc 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180ac0 gate 1513666131332859000 evaluation starts -orderer.example.com | [10cd 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10ce 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [10cf 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [10d0 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [10d1 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [10d2 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 principal matched by identity 0 -orderer.example.com | [10d3 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2a 93 ee 3c 00 96 ad 6a 70 b7 63 91 e1 b8 e2 e5 |*..<...jp.c.....| -orderer.example.com | 00000010 1b 3c 55 4a 13 b5 c9 01 af 44 35 7c e0 a4 af 25 |. DEBU Verify: sig = 00000000 30 44 02 20 20 20 8b 7e 93 9a ed c9 bb a2 c8 91 |0D. .~........| -orderer.example.com | 00000010 dc b0 70 f7 69 37 dd ca 50 0b 1b 8b d2 7a fd ba |..p.i7..P....z..| -orderer.example.com | 00000020 f1 c3 0c 5c 02 20 6e d6 ad f1 5f bf 3a 61 93 bd |...\. n..._.:a..| -orderer.example.com | 00000030 d7 b9 f2 71 4a 64 83 dd c9 33 96 da 7a 20 2e 71 |...qJd...3..z .q| -orderer.example.com | 00000040 38 19 36 84 bf 07 |8.6...| -orderer.example.com | [10d5 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 principal evaluation succeeds for identity 0 -orderer.example.com | [10d6 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180ac0 gate 1513666131332859000 evaluation succeeds -orderer.example.com | [10d7 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc4203c4e20 1 [0xc420180898]})]} -orderer.example.com | [10d8 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc420167a60) start: > stop: > -orderer.example.com | [10d9 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | [10da 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [10db 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[23690], Going to peek [8] bytes -orderer.example.com | [10dc 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [10dd 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc420167a60) -orderer.example.com | [10de 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc420167a60), waiting for new SeekInfo -orderer.example.com | [10df 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [10e0 12-19 06:48:51.34 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [10e1 12-19 06:48:51.34 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [10e2 12-19 06:48:51.47 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [10e3 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -orderer.example.com | [10e4 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [10e5 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -orderer.example.com | [10e6 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026438 gate 1513666131475550900 evaluation starts -orderer.example.com | [10e7 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10e8 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | [10e9 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -orderer.example.com | SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -orderer.example.com | Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -orderer.example.com | BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -orderer.example.com | OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -orderer.example.com | uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [10ea 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [10eb 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [10ec 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 principal matched by identity 0 -orderer.example.com | [10ed 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e6 50 26 c5 27 0a 04 3b 07 8f 94 1c bb 7b 10 c3 |.P&.'..;.....{..| -orderer.example.com | 00000010 de df d8 48 dd cd cd 0f c7 ef f8 9c a2 76 ec 13 |...H.........v..| -orderer.example.com | [10ee 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b3 75 16 3a 38 d7 fc 19 34 2e 17 |0E.!..u.:8...4..| -orderer.example.com | 00000010 85 c7 ca 78 4a 41 17 6b 7b c4 6f ba 4b 72 b0 85 |...xJA.k{.o.Kr..| -orderer.example.com | 00000020 6a ad 9c d9 99 02 20 31 0e bf cc 92 5c f7 97 ab |j..... 1....\...| -orderer.example.com | 00000030 1f 5d 82 0a 96 33 7c 0e 4a 2d 3a 3c a8 52 66 2b |.]...3|.J-:<.Rf+| -orderer.example.com | 00000040 6f 89 61 6d d0 33 fd |o.am.3.| -orderer.example.com | [10ef 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 principal evaluation succeeds for identity 0 -orderer.example.com | [10f0 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026438 gate 1513666131475550900 evaluation succeeds -orderer.example.com | [10f1 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc4203c4e20 1 [0xc420180898]})]} -orderer.example.com | [10f2 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc420ad6940) start: > stop: > -orderer.example.com | [10f3 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | [10f4 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -orderer.example.com | [10f5 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14608], Going to peek [8] bytes -orderer.example.com | [10f6 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -orderer.example.com | [10f7 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc420ad6940) -orderer.example.com | [10f8 12-19 06:48:51.48 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc420ad6940), waiting for new SeekInfo -orderer.example.com | [10f9 12-19 06:48:51.48 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -orderer.example.com | [10fa 12-19 06:48:51.48 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | [10fb 12-19 06:48:51.48 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [f9d 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59184], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [f9e 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 6 +orderer.example.com | [f9f 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | [fa1 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | [fa2 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54515] +orderer.example.com | [fa3 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes +orderer.example.com | [fa0 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54515] +orderer.example.com | [fa4 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54515], bytesOffset=[54517]} +orderer.example.com | [fa5 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes +orderer.example.com | [fa7 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54515], bytesOffset=[54517]} +orderer.example.com | [fa6 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +orderer.example.com | [fa8 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) diff --git a/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log b/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log index 3236aeea..a229824b 100644 --- a/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/v1.0.5/solo/logs/dev_orderer.log @@ -1,7876 +1,7203 @@ -2017-12-19 06:47:31.561 UTC [orderer/main] main -> INFO 001 Starting orderer: +2018-01-12 22:56:34.550 UTC [orderer/main] main -> INFO 001 Starting orderer: Version: 1.0.5 Go version: go1.7.5 OS/Arch: linux/amd64 -[002 12-19 06:47:31.57 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled -[003 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -[004 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] -[005 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[006 12-19 06:47:31.60 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -[007 12-19 06:47:31.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[008 12-19 06:47:31.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -[009 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[00a 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -[00b 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[00c 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -[00d 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00e 12-19 06:47:31.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -[00f 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[010 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -[011 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[012 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -[013 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -[014 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[015 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP -[016 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP -[017 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw +[002 01-12 22:56:34.56 UTC] [main] main.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled +[003 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +[004 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.setFactories.initBCCSP -> DEBU Initialize BCCSP [SW] +[005 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +[006 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +[007 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +[008 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +[009 01-12 22:56:34.61 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +[00a 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +[00b 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +[00c 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +[00d 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +[00e 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +[00f 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +[010 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +[011 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +[012 01-12 22:56:34.62 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +[013 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +[014 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[015 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Created new local MSP +[016 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP +[017 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[018 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl -----END CERTIFICATE----- -[018 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== +[019 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl -----END CERTIFICATE----- -[019 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== +[01a 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 -----END CERTIFICATE----- -[01a 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 +[01b 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [036250716e8535be98703987ebd1c933cbd0f8376d9481fe556e4720a19d7842] at [/var/hyperledger/orderer/msp/keystore/036250716e8535be98703987ebd1c933cbd0f8376d9481fe556e4720a19d7842_sk]... +[01c 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 -----END CERTIFICATE----- -[01b 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [2f81bd26ad519eb4713e9004a323d3fe493d959894db628a5ec1e44c5af7b16f] at [/var/hyperledger/orderer/msp/keystore/2f81bd26ad519eb4713e9004a323d3fe493d959894db628a5ec1e44c5af7b16f_sk]... -[01c 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[01d 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[01e 12-19 06:47:31.63 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[01f 12-19 06:47:31.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -[020 12-19 06:47:31.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -[021 12-19 06:47:31.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists -[022 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid -[023 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -[024 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -[025 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -[026 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[027 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[028 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[029 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[02a 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[02b 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[02c 12-19 06:47:31.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4203c4940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[02d 12-19 06:47:31.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[02e 12-19 06:47:31.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xf7, 0x29, 0x3c, 0xb1, 0xff, 0xd9, 0xeb, 0xb6, 0x36, 0x46, 0x48, 0x6, 0x53, 0xe1, 0x6a, 0x62, 0x2e, 0x8d, 0x72, 0xec, 0xa7, 0x87, 0xb9, 0xd3, 0x38, 0x62, 0x4, 0xdd, 0x68, 0xaf, 0x6, 0x83} txOffsets= -txId=c1fdb8cec547d20e7773cccf2207c05572ce38347c87bc423d09a2bbd54fe028 locPointer=offset=38, bytesLength=9039 +[01d 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/msp] main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[01e 01-12 22:56:34.63 UTC] [main] main.initializeMultiChainManager.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +[01f 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +[020 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +[021 01-12 22:56:34.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +[022 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +[023 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +[024 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +[025 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +[026 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[027 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[028 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[029 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[02a 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[02b 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[02c 01-12 22:56:34.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4203b0940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[02d 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[02e 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xa6, 0x6c, 0xb, 0xac, 0x3b, 0x71, 0x82, 0x58, 0x6c, 0xc3, 0x9d, 0x9e, 0xf8, 0xf3, 0x8d, 0x23, 0x70, 0xc9, 0xfe, 0xa9, 0xe5, 0xd1, 0xe9, 0x29, 0xa0, 0x6, 0xa5, 0xc2, 0xe, 0x1b, 0x98, 0x65} txOffsets= +txId=aa312d688e22c89ecfb3bfef88e38e969a9315bfef005fe6e45a800cf6bee23c locPointer=offset=38, bytesLength=9031 ] -[02f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] -[030 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[031 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[032 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -[033 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[034 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[035 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[036 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -[037 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[038 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[039 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[03a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[03b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[03c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[03d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[03e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums -[03f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -[040 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -[041 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[042 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[043 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[044 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[045 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -[046 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[047 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[048 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[049 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[04a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[04b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -[04c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[04d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[04e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[04f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[050 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[051 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[052 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[053 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[054 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[055 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[056 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[057 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[058 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[059 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[05a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[05b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[05c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[05d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[05e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[05f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[060 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid -[061 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[062 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[063 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[064 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[065 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[066 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[067 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[068 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[069 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums -[06a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos -[06b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[06c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[06d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[06e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[06f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[070 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[071 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[072 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[073 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[074 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[075 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[076 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[077 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[078 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[079 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[07a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[07b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[07c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[07d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[07e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[07f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[080 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[081 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[082 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[083 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[084 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[085 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[086 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[087 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[088 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL +[02f 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9074], isChainEmpty=[false], lastBlockNumber=[0] +[030 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[031 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[032 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +[033 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[034 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[035 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[036 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +[037 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.getConfigTx.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[038 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[039 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[03a 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[03b 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[03c 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[03d 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[03e 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[03f 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[040 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[041 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[042 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[043 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[044 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[045 01-12 22:56:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[046 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[047 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[048 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[049 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[04a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[04b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[04c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums +[04d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +[04e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +[04f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +[050 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +[051 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +[052 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +[053 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +[054 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +[055 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +[056 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +[057 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +[058 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +[059 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +[05a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[05b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[05c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[05d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[05e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[05f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[060 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel testchainid +[061 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[062 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[063 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[064 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[065 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[066 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[067 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[068 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[069 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[06a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[06b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[06c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[06d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[06e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[06f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[070 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[071 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[072 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[073 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[074 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[075 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[076 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[077 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[078 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Consortiums +[079 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues -> DEBU Initializing protos for *config.ConsortiumProtos +[07a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.BeginValueProposals.Allocate.NewConsortiumConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +[07b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[07c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[07d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[07e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[07f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[080 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[081 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[082 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[083 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[084 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[085 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[086 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[087 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[088 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS -----END CERTIFICATE----- -[089 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +[089 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl -----END CERTIFICATE----- -[08a 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +[08a 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl -----END CERTIFICATE----- -[08b 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[08c 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[08d 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[08e 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[08f 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL +[08b 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[08c 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[08d 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[08e 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[08f 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== -----END CERTIFICATE----- -[090 12-19 06:47:31.68 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[090 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[091 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[091 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[092 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[093 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[094 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[095 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[096 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[097 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[098 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[099 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[09a 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[09b 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[09c 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[09d 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -[09e 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[09f 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -[0a0 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0a1 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -[0a2 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0a3 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -[0a4 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0a5 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -[0a6 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0a7 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -[0a8 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[0a9 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -[0aa 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[0ab 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -[0ac 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[0ad 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -[0ae 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[0af 12-19 06:47:31.69 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -[0b0 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[0b1 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -[0b2 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[0b3 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -[0b4 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0b5 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[0b6 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0b7 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[0b8 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0b9 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[0ba 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[0bb 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[0bc 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[0bd 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[0be 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0bf 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel -[0c0 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation -[0c1 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -[0c2 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation -[0c3 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -[0c4 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation -[0c5 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -[0c6 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation -[0c7 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -[0c8 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation -[0c9 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -[0ca 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation -[0cb 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -[0cc 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0cd 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[0ce 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[0cf 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[0d0 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[0d1 12-19 06:47:31.70 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[0d2 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0d3 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[0d4 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[0d5 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[0d6 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[0d7 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[0d8 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[0d9 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[0da 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[0db 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[0dc 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -[0dd 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[0de 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -[0df 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[0e0 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[0e1 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[0e2 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[0e3 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[0e4 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[0e5 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[0e6 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[0e7 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[0e8 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -[0e9 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0ea 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -[0eb 12-19 06:47:31.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo -[0ec 12-19 06:47:31.71 UTC] [main] main -> INFO Beginning to serve requests -[0ed 12-19 06:47:34.50 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[0ee 12-19 06:47:34.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[0ef 12-19 06:47:34.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[0f0 12-19 06:47:34.51 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[0f1 12-19 06:47:34.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[0f2 12-19 06:47:34.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -[0f3 12-19 06:47:34.51 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel -[0f4 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[0f5 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[0f6 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[0f7 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[0f8 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...41646D696E7310021A0641646D696E73 -[0f9 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: C27384AFD545FC24B520C7B68B73517A47F3B146FDA623F4F014FA00456A41D8 -[0fa 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[0fb 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[0fc 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[0fd 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[0fe 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[0ff 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[100 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[101 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[102 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[103 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[104 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[105 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[106 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[107 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[108 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[109 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[10a 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[10b 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[10c 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[10d 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[10e 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[10f 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[110 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[111 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[112 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[113 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[114 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[115 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[116 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[117 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[118 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[119 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[11a 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[11b 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[11c 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[11d 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[11e 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[11f 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[120 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[121 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[122 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[123 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[124 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[125 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[126 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[127 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[128 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[129 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[12a 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[12b 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[12c 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[12d 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[12e 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[12f 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[130 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[131 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[132 12-19 06:47:34.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[133 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[134 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[135 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[136 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[137 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[138 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[139 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[13a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -[13b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[13c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[13d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[13e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[13f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[140 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[141 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[142 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[143 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[144 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[145 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[146 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[147 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[148 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[149 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[14a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[14b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[14c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[14d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[14e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[14f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[150 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[151 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[152 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[153 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[154 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[155 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[156 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[157 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[158 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[159 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[15a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[15b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[15c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[15d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[15e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[15f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[160 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[161 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[162 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[163 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[164 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[165 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[166 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[167 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[168 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[169 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[16a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[16b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[16c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[16d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[16e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[16f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[170 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[171 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[172 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[173 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[174 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[175 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[176 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[177 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[178 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[179 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[17a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[17b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[17c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[17d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[17e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[17f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[180 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[181 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[182 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[183 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[184 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[185 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[186 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[187 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[188 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[189 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[18a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[18b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[18c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[18d 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[18e 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[18f 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[190 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[191 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[192 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[193 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[194 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[195 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -[196 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[197 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[198 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[199 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[19a 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[19b 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -[19c 12-19 06:47:34.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[19d 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -[19e 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[19f 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -[1a0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[1a1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[1a2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[1a3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[1a4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[1a5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[1a6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[1a7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[1a8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[1a9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[1aa 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[1ab 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[1ac 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[1ad 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[1ae 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181310 gate 1513666054541945100 evaluation starts -[1af 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 signed by 0 principal evaluation starts (used [false]) -[1b0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1b1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[1b2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[1b3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181310 principal evaluation fails -[1b4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181310 gate 1513666054541945100 evaluation fails -[1b5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420180020 gate 1513666054543313800 evaluation starts -[1b6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 signed by 0 principal evaluation starts (used [false]) -[1b7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1b8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[1b9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[1ba 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 principal matched by identity 0 -[1bb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -[1bc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -[1bd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420180020 principal evaluation succeeds for identity 0 -[1be 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420180020 gate 1513666054543313800 evaluation succeeds -[1bf 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1c0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1c1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1c2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1c3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[1c4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1c5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1c6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1c7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1c8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1c9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1ca 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1cb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1cc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1cd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1ce 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1cf 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[1d0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[1d1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[1d2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[1d3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[1d4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1d5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1d6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1d7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1d8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[1d9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[1da 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[1db 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[1dc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[1dd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[1de 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[1df 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[1e0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[1e1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[1e2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[1e3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[1e4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[1e5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1e6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1e7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[1e8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[1e9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[1ea 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[1eb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[1ec 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[1ed 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[1ee 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1ef 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1f0 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[1f1 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1f2 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1f3 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1f4 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[1f5 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[1f6 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[1f7 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1f8 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1f9 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[1fa 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1fb 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[1fc 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1fd 12-19 06:47:34.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[1fe 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[1ff 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[200 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[201 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[202 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[203 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[204 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[205 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[206 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[207 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[208 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[209 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[20a 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[20b 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[20c 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[20d 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[20e 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[20f 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[210 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[211 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[212 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[213 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[214 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[215 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[216 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[217 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[218 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[219 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[21a 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[21b 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[21c 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[21d 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...488780820C3C3E8C22D6CCFEDD500E43 -[21e 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 4D29DAA95535E27FF83012D2B8931B3E58C4633CF65F8CF740E61EC9D41A7415 -[21f 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[220 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[221 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[222 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[223 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB3060A1708041A060886ECE2D10522...0650462399B80ECCE0163527164AE827 -[224 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: CAC37FD6AB7214856C82CF23F6090E90335BA221CB72910BD06BD73C16956C04 -[225 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -[226 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[227 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666054558468200 evaluation starts -[228 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 signed by 0 principal evaluation starts (used [false]) -[229 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -[22a 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[22b 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[22c 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[22d 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 principal matched by identity 0 -[22e 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ca c3 7f d6 ab 72 14 85 6c 82 cf 23 f6 09 0e 90 |.....r..l..#....| -00000010 33 5b a2 21 cb 72 91 0b d0 6b d7 3c 16 95 6c 04 |3[.!.r...k.<..l.| -[22f 12-19 06:47:34.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 06 57 4c 7f 81 cf d0 37 e6 9f 79 f2 |0D. .WL....7..y.| -00000010 a3 60 5a 2a 8c 8c 00 7d ca 40 69 10 ce 25 1d 89 |.`Z*...}.@i..%..| -00000020 d8 d5 34 e7 02 20 41 83 ae b2 89 0d 1e 2b 31 10 |..4.. A......+1.| -00000030 38 dc 40 ea 37 a7 f2 34 b9 f1 d5 27 bd 5f e6 a7 |8.@.7..4...'._..| -00000040 54 c8 d3 c1 65 7c |T...e|| -[230 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 principal evaluation succeeds for identity 0 -[231 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666054558468200 evaluation succeeds -[232 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc4203c4c00 1 [0xc420180810]})]} -[233 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[234 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[235 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[236 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[237 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...07526561646572731A0641646D696E73 -[238 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 56F978AE51A3706CE37FF02F5D9BBB6B13CFAD0A8E79342EDABBBB5AD1A7E369 -[239 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[23a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[23b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[23c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[23d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[23e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[23f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[240 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[241 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[242 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[243 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[244 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[245 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[246 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[247 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[248 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[249 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[24a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[24b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[24c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[24d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[24e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[24f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[250 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[251 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[252 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[253 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[254 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[255 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[256 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[257 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[258 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[259 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[25a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[25b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[25c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[25d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[25e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[25f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[260 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[261 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[262 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[263 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[264 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[265 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[266 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[267 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[268 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[269 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[26a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[26b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[26c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[26d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[26e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[26f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[270 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[271 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[272 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[273 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[274 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[275 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[276 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[277 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[278 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[279 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -[27a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[27b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[27c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[27d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[27e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[27f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[280 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[281 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[282 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[283 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[284 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[285 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[286 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[287 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[288 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[289 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[28a 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[28b 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[28c 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[28d 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[28e 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[28f 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[290 12-19 06:47:34.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[291 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[292 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[293 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[294 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[295 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[296 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[297 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[298 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[299 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[29a 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[29b 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[29c 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[29d 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[29e 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[29f 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[2a0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[2a1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[2a2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[2a3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[2a4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[2a5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[2a6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[2a7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[2a8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[2a9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[2aa 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[2ab 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[2ac 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[2ad 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[2ae 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[2af 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[2b0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[2b1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[2b2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[2b3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[2b4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[2b5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[2b6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[2b7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[2b8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[2b9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[2ba 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[2bb 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[2bc 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[2bd 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[2be 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[2bf 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[2c0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[2c1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[2c2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[2c3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[2c4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[2c5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[2c6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[2c7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[2c8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[2c9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[2ca 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[2cb 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[2cc 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[2cd 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[2ce 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[2cf 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[2d0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[2d1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[2d2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[2d3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[2d4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[2d5 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[2d6 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -[2d7 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[2d8 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[2d9 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -[2da 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[2db 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[2dc 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -[2dd 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[2de 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -[2df 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[2e0 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[2e1 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[2e2 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[2e3 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[2e4 12-19 06:47:34.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[2e5 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[2e6 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[2e7 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[2e8 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[2e9 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[2ea 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[2eb 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[2ec 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[2ed 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201808e8 gate 1513666054580592700 evaluation starts -[2ee 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 signed by 0 principal evaluation starts (used [false]) -[2ef 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[2f0 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[2f1 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[2f2 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 principal matched by identity 0 -[2f3 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -[2f4 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -[2f5 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201808e8 principal evaluation succeeds for identity 0 -[2f6 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201808e8 gate 1513666054580592700 evaluation succeeds -[2f7 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2f8 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2f9 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2fa 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[2fb 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2fc 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2fd 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2fe 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2ff 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[300 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[301 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[302 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[303 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[304 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[305 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[306 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[307 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[308 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[309 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[30a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[30b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[30c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[30d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[30e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[30f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[310 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[311 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[312 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[313 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[314 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[315 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[316 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[317 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[318 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[319 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[31a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[31b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[31c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[31d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[31e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[31f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[320 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[321 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[322 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[323 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[324 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[325 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[326 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[327 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[328 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[329 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[32a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[32b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[32c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[32d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[32e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[32f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[330 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[331 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[332 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[333 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[334 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[335 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[336 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[337 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[338 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[339 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[33a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[33b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[33c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[33d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[33e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[33f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[340 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[341 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[342 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[343 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[344 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[345 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[346 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[347 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[348 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[349 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[34a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[34b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[34c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[34d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[34e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[34f 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[350 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[351 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[352 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[353 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[354 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[355 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[356 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[357 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[358 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[359 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[35a 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[35b 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[35c 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[35d 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[35e 12-19 06:47:34.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[35f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[360 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[361 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[362 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[363 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[364 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[365 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[366 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[367 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[368 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[369 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[36a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[36b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[36c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[36d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[36e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[36f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[370 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[371 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[372 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[373 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[374 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[375 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[376 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[377 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[378 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[379 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[37a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[37b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[37c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[37d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[37e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[37f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[380 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[381 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[382 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[383 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181038 gate 1513666054592200600 evaluation starts -[384 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 signed by 0 principal evaluation starts (used [false]) -[385 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[386 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[387 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[388 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 principal matched by identity 0 -[389 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -[38a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -[38b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420181038 principal evaluation succeeds for identity 0 -[38c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420181038 gate 1513666054592200600 evaluation succeeds -[38d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[38e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[38f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[390 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[391 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[392 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[393 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[394 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[395 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[396 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[397 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[398 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[399 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[39a 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[39b 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[39c 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[39d 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[39e 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[39f 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3a0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[3a1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[3a2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[3a3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[3a4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[3a5 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[3a6 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[3a7 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[3a8 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[3a9 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[3aa 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[3ab 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[3ac 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[3ad 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[3ae 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[3af 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[3b0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[3b1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[3b2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[3b3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3b4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3b5 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[3b6 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[3b7 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[3b8 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[3b9 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[3ba 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[3bb 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[3bc 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3bd 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3be 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3bf 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3c0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3c1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3c2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[3c3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[3c4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[3c5 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3c6 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3c7 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3c8 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3c9 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3ca 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3cb 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[3cc 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[3cd 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[3ce 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[3cf 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3d0 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[3d1 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[3d2 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[3d3 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[3d4 12-19 06:47:34.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[3d5 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[3d6 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[3d7 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3d8 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[3d9 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[3da 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[3db 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[3dc 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[3dd 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[3de 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3df 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[3e0 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[3e1 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[3e2 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[3e3 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[3e4 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[3e5 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[3e6 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[3e7 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3e8 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[3e9 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3ea 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[3eb 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3ec 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[3ed 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[3ee 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[3ef 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[3f0 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[3f1 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3f2 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[3f3 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3f4 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[3f5 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3f6 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[3f7 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[3f8 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[3f9 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[3fa 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[3fb 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[3fc 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[3fd 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[3fe 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[3ff 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[400 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[401 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[402 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[403 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[404 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[405 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[406 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[407 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[408 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[409 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[40a 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[40b 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[40c 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[40d 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[40e 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[40f 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[410 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[411 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[412 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[413 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[414 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[415 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[416 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[417 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[418 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[419 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[41a 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[41b 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[41c 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[41d 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[41e 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[41f 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[420 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[421 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[422 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[423 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[424 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[425 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[426 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[427 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[428 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[429 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[42a 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[42b 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[42c 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[42d 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[42e 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[42f 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[430 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[431 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[432 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[433 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[434 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[435 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[436 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[437 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[438 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[439 12-19 06:47:34.60 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[43a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[43b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[43c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[43d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[43e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[43f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[440 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[441 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[442 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[443 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[444 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[445 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[446 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[447 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[448 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[449 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[44a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[44b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[44c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[44d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[44e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[44f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[450 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[451 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[452 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[453 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[454 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[455 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[456 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[457 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[458 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[459 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[45a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[45b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[45c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[45d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[45e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[45f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[460 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[461 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[462 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[463 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[464 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[465 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[466 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[467 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[468 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[469 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[46a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[46b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[46c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[46d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[46e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[46f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[470 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[471 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[472 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[473 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[474 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[475 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[476 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[477 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[478 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[479 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[47a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[47b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[47c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[47d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[47e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[47f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[480 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[481 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[482 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[483 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[484 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[485 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[486 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[487 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[488 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[489 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[48a 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[48b 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[48c 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[48d 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[48e 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[48f 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[490 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[491 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[492 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[493 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[494 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[495 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[496 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[497 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[498 12-19 06:47:34.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[499 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[49a 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[49b 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[49c 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[49d 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[49e 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[49f 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[4a0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[4a1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[4a2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[4a3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[4a4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[4a5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4a6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[4a7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4a8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[4a9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4aa 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[4ab 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4ac 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4ad 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4ae 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4af 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4b0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[4b1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4b2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[4b3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4b4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[4b5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4b6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[4b7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4b8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[4b9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4ba 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[4bb 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4bc 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4bd 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4be 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4bf 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4c0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4c1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[4c2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[4c3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4c4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[4c5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[4c6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[4c7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4c8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[4c9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4ca 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[4cb 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[4cc 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[4cd 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[4ce 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[4cf 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[4d0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[4d1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4d2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[4d3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[4d4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[4d5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[4d6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[4d7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[4d8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[4d9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[4da 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[4db 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[4dc 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[4dd 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4de 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[4df 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[4e0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[4e1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4e2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[4e3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4e4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[4e5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4e6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[4e7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[4e8 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[4e9 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[4ea 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[4eb 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[4ec 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[4ed 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[4ee 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[4ef 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[4f0 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[4f1 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[4f2 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[4f3 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -[4f4 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[4f5 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666054629374200 evaluation starts -[4f6 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) -[4f7 12-19 06:47:34.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -[4f8 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[4f9 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[4fb 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[4fa 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found -[4fd 12-19 06:47:34.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[4fe 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[4ff 12-19 06:47:34.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[4fc 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 -[500 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ca c3 7f d6 ab 72 14 85 6c 82 cf 23 f6 09 0e 90 |.....r..l..#....| -00000010 33 5b a2 21 cb 72 91 0b d0 6b d7 3c 16 95 6c 04 |3[.!.r...k.<..l.| -[501 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 06 57 4c 7f 81 cf d0 37 e6 9f 79 f2 |0D. .WL....7..y.| -00000010 a3 60 5a 2a 8c 8c 00 7d ca 40 69 10 ce 25 1d 89 |.`Z*...}.@i..%..| -00000020 d8 d5 34 e7 02 20 41 83 ae b2 89 0d 1e 2b 31 10 |..4.. A......+1.| -00000030 38 dc 40 ea 37 a7 f2 34 b9 f1 d5 27 bd 5f e6 a7 |8.@.7..4...'._..| -00000040 54 c8 d3 c1 65 7c |T...e|| -[502 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 -[503 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666054629374200 evaluation succeeds -[504 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc4203c4c00 1 [0xc420180810]})]} -[505 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[506 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[507 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[508 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[509 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060886ECE2D10522...07577269746572731A0641646D696E73 -[50a 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: CCABEC314FE7E03ED4250D36FB58506B29B63E29F31B8BD28DEC0EA1E512068F -[50b 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[50c 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[50d 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[50e 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[50f 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[510 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[511 12-19 06:47:34.63 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[512 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[514 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[513 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[515 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[516 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[517 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[518 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[519 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[51a 12-19 06:47:34.63 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[51b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[51c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[51d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[51e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[51f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[520 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[521 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[522 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[523 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[524 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[525 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[526 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[527 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[528 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[529 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[52a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[52b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[52c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[52d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[52e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[52f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[530 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[531 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[532 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[533 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[534 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[535 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[536 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[537 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[538 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[539 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[53a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[53b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[53c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[53d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[53e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[53f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application -[540 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[541 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[542 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[543 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[544 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[545 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[546 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[547 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[548 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[549 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[54a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[54b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[54c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[54d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[54e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[54f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[550 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[551 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[552 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[553 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[554 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[555 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[556 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[557 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[558 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[559 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[55a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[55b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[55c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[55d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[55e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[55f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[560 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[561 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[562 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[563 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[564 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[565 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[566 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[567 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[568 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[569 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[56a 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[56b 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[56c 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[56d 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[56e 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[56f 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[570 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[571 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[572 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[573 12-19 06:47:34.64 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[574 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[575 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[576 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[577 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[578 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[579 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[57a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[57b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[57c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[57d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[57e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[57f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[580 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[581 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[582 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[583 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[584 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[585 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[586 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[587 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[588 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[589 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[58a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[58b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[58c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[58d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[58e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[58f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[590 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[591 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[592 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[593 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -[594 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[595 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[596 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[597 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[598 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[599 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[59a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[59b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[59c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[59d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[59e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[59f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[5a0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[5a1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[5a2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[5a3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[5a4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[5a5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[5a6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[5a7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[5a8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[5a9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[5aa 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[5ab 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[5ac 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[5ad 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[5ae 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins -[5af 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[5b0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[5b1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers -[5b2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers -[5b3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[5b4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[5b5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[5b6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[5b7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[5b8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[5b9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[5ba 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[5bb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[5bc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[5bd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[5be 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[5bf 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[5c0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[5c1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[5c2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267a8 gate 1513666054654790700 evaluation starts -[5c3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 signed by 0 principal evaluation starts (used [false]) -[5c4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[5c5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[5c6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[5c7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267a8 principal evaluation fails -[5c8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267a8 gate 1513666054654790700 evaluation fails -[5c9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267b8 gate 1513666054655398600 evaluation starts -[5ca 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 signed by 0 principal evaluation starts (used [false]) -[5cb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[5cc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[5cd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[5ce 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 principal matched by identity 0 -[5cf 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -[5d0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -[5d1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200267b8 principal evaluation succeeds for identity 0 -[5d2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200267b8 gate 1513666054655398600 evaluation succeeds -[5d3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5d4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5d5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5d6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5d7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5d8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5d9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5da 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5db 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5dc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5dd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5de 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5df 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5e0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5e1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5e2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[5e3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5e4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5e5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5e6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[5e7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[5e8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[5e9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[5ea 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[5eb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[5ec 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[5ed 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[5ee 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[5ef 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[5f0 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[5f1 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[5f2 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[5f3 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[5f4 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[5f5 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[5f6 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[5f7 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[5f8 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[5f9 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[5fa 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5fb 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[5fc 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[5fd 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[5fe 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[5ff 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[600 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[601 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[602 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[603 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[604 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[605 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[606 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[607 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[608 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[609 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[60a 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[60b 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[60c 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[60d 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[60e 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[60f 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[610 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[611 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[612 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[613 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[614 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[615 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[616 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[617 12-19 06:47:34.65 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[618 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[619 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[61a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[61b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[61c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[61d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[61e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[61f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[620 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[621 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[622 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[623 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[624 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[625 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[626 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[627 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[628 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[629 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[62a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[62b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[62c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[62d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[62e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[62f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[630 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[631 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[632 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[633 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[634 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[635 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[636 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[637 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[638 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[639 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[63a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[63b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[63c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[63d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[63e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[63f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[640 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[641 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[642 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[643 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[644 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[645 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[646 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[647 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[648 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[649 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[64a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[64b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[64c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[64d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[64e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[64f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[650 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[651 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[652 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[653 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[654 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[655 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[656 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[657 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[658 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[659 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[65a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[65b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[65c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[65d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[65e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation -[65f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261d8 gate 1513666054668332200 evaluation starts -[660 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 signed by 0 principal evaluation starts (used [false]) -[661 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[662 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[663 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[664 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261d8 principal evaluation fails -[665 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261d8 gate 1513666054668332200 evaluation fails -[666 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261e8 gate 1513666054669054300 evaluation starts -[667 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 signed by 0 principal evaluation starts (used [false]) -[668 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[669 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[66a 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[66b 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 principal matched by identity 0 -[66c 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 df a3 9d 0c 9b e1 48 b6 b3 b2 56 fe b4 d0 46 0c |......H...V...F.| -00000010 88 27 ed a7 d0 a5 b9 04 c9 5b 2f f1 f0 3b 57 14 |.'.......[/..;W.| -[66d 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fd 7d 6e 2d 80 d6 c5 cb 19 34 1f |0E.!..}n-.....4.| -00000010 3f a0 c4 42 a7 2a 01 fa 24 61 5b a5 3e 1c f5 8b |?..B.*..$a[.>...| -00000020 dc 8e 93 99 ad 02 20 71 f0 e1 2f f8 85 57 cb 58 |...... q../..W.X| -00000030 04 e6 58 df d1 f8 91 46 40 74 13 9d a0 1f 7f fe |..X....F@t......| -00000040 8c 45 c3 63 ec 6f 72 |.E.c.or| -[66e 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200261e8 principal evaluation succeeds for identity 0 -[66f 12-19 06:47:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200261e8 gate 1513666054669054300 evaluation succeeds -[670 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[671 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[672 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[673 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[674 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[675 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[676 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[677 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[678 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[679 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[67a 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[67b 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[67c 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[67d 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[67e 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[67f 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[680 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[681 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[682 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[683 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[684 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[685 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[686 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[687 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[688 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[689 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[68a 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[68b 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[68c 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[68d 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[68e 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[68f 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[690 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[691 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[692 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[693 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[694 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[695 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[696 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[697 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[698 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[699 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[69a 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[69b 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[69c 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[69d 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[69e 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[69f 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[6a0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6a1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[6a2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6a3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[6a4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6a5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[6a6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[6a7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[6a8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[6a9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6aa 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[6ab 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6ac 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[6ad 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6ae 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[6af 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[6b0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[6b1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[6b2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6b3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[6b4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[6b5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[6b6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[6b7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[6b8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[6b9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[6ba 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6bb 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[6bc 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[6bd 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[6be 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[6bf 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[6c0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[6c1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[6c2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6c3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[6c4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[6c5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[6c6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[6c7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[6c8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[6c9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[6ca 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6cb 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[6cc 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6cd 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[6ce 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6cf 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[6d0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6d1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6d2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6d3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6d4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6d5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[6d6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6d7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[6d8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6d9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[6da 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6db 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[6dc 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6dd 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[6de 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6df 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[6e0 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6e1 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[6e2 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6e3 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[6e4 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6e5 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[6e6 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[6e7 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[6e8 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[6e9 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[6ea 12-19 06:47:34.67 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[6eb 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[6ec 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[6ed 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[6ee 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6ef 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[6f0 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[6f1 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[6f2 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6f3 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[6f4 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[6f5 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[6f6 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[6f7 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[6f8 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[6f9 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[6fa 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[6fb 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[6fc 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[6fd 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[6fe 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[6ff 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[700 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[701 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[702 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[703 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[704 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[705 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[706 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[707 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[708 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[709 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[70a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[70b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[70c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[70d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[70e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[70f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[710 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[711 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[712 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[713 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[714 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[715 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[716 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[717 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[718 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[719 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[71a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[71b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[71c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[71d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[71e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[71f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[720 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[721 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[722 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[723 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[724 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[725 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[726 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[727 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[728 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[729 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[72a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[72b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[72c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[72d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[72e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[72f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[730 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[731 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[732 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[733 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[734 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[735 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[736 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[737 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[738 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[739 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[73a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[73b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[73c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[73d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[73e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[73f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[740 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[741 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[742 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[743 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[744 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[745 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[746 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[747 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[748 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[749 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[74a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[74b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[74c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[74d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[74e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[74f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[750 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[751 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[752 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[753 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[754 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[755 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[756 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[757 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[758 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[759 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[75a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[75b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[75c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[75d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[75e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[75f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[760 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[761 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[762 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[763 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[764 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[765 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[766 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[767 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[768 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[769 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[76a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[76b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[76c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[76d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[76e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[76f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[770 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[771 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[772 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[773 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[774 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[775 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[776 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[777 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[778 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[779 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[77a 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[77b 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[77c 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[77d 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[77e 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[77f 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[780 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[781 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[782 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[783 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[784 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[785 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[786 12-19 06:47:34.68 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[787 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[788 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[789 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[78a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[78b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[78c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[78d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[78e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[78f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[790 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[791 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[792 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[793 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[794 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[795 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[796 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[797 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[798 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[799 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[79a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[79b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[79c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[79d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[79e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[79f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[7a0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[7a1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[7a2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[7a3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[7a4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[7a5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[7a6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[7a7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[7a8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[7a9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[7aa 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[7ab 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[7ac 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[7ad 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[7ae 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[7af 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[7b0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[7b1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[7b2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[7b3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[7b4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[7b5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[7b6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[7b7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[7b8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[7b9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[7ba 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[7bb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[7bc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[7bd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[7be 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[7bf 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[7c0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[7c1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[7c2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[7c3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[7c4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[7c5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[7c6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[7c7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[7c8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[7c9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[7ca 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[7cb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[7cc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[7cd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[7ce 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[7cf 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[7d0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[7d1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[7d2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[7d3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[7d4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[7d5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[7d6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -[7d7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[7d8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[7d9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9082], Going to peek [8] bytes -[7da 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[7db 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[7dc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[7dd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[7de 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[7df 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[7e0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[7e1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[7e2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[7e3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[7e4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[7e5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[7e6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[7e7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[7e8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[7e9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[7ea 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[7eb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[7ec 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[7ed 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[7ee 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[7ef 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[7f0 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[7f1 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[7f2 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[7f3 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[7f4 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[7f5 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[7f6 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[7f7 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[7f8 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[7f9 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[7fa 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[7fb 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[7fc 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[7fd 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[7fe 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[7ff 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[800 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[801 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[802 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[803 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[804 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[805 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[806 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[807 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[808 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[809 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[80a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[80b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[80c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[80d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[80e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[80f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[810 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[811 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[812 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[813 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[814 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[815 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[816 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[817 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[818 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[819 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[81a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[81b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[81c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[81d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[81e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[81f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[820 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[821 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[822 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[823 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[824 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[825 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[826 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[827 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[828 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[829 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[82a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[82b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[82c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[82d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[82e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[82f 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[830 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[831 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[832 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[833 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[834 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[835 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[836 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[837 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[838 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[839 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[83a 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[83b 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[83c 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[83d 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[83e 12-19 06:47:34.69 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[83f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[840 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[841 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[842 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[843 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[844 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[845 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[846 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[847 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[848 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[849 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[84a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[84b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[84c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[84d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[84e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[84f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[850 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[851 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[852 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[853 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[854 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[855 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[856 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[857 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[858 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[859 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[85a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[85b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[85c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[85d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[85e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[85f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[860 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[861 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[862 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[863 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[864 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[865 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[866 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[867 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[868 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[869 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[86a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[86b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[86c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[86d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[86e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[86f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[870 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[871 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[872 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[873 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[874 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[875 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[876 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[877 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[878 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[879 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[87a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[87b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[87c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[87d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[87e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[87f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[880 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[881 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[882 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[883 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[884 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[885 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[886 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[887 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[888 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[889 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[88a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[88b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[88c 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[88d 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[88e 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[88f 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[890 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[891 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[892 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[893 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[894 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[895 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[896 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[897 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[898 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[899 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[89a 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -[89b 12-19 06:47:34.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -[89c 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -[89d 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[89e 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[89f 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[8a0 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[8a1 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[8a2 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[8a3 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420228920)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[8a4 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[8a5 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -txId= locPointer=offset=38, bytesLength=11892 -] -[8a6 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -[8a7 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[8a8 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[8a9 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11935], Going to peek [8] bytes -[8aa 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[8ab 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -[8ac 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel -[8ad 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42080eee0 chain:0xc42080f3a0 cutter:0xc420813720 filters:0xc42080ef40 signer:0x128b4a8 lastConfig:0 lastConfigSeq:0} -[8ae 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[8af 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8b0 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b1 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8b2 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b3 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4BD21A7E5EEE8F87E9799744D56E9E5F -[8b4 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 3BF16D3A5CDF5CEA4D2F5CEF61B9777F8C6149C69472519DBC7469567B9DB2F3 -[8b5 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8b6 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b7 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[8b8 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8b9 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8ba 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4BD21A7E5EEE8F87E9799744D56E9E5F -[8bb 12-19 06:47:34.71 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: FA74043482B5E294A077402DD77DCCCFEA730292694AB976FD5196AD4FD48366 -[8bc 12-19 06:47:34.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc6, 0xc2, 0xc, 0xbf, 0x66, 0x4, 0xa3, 0x62, 0xdd, 0xac, 0xe5, 0xb, 0xc7, 0x86, 0x41, 0x70, 0x7, 0xe, 0x7, 0xeb, 0xe9, 0x29, 0x39, 0x81, 0xd2, 0x5b, 0xe2, 0xb8, 0xfe, 0x99, 0x20, 0x5d} txOffsets= -txId= locPointer=offset=70, bytesLength=12792 -] -[8bd 12-19 06:47:34.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23690], isChainEmpty=[false], lastBlockNumber=[1] -[8be 12-19 06:47:34.72 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 -[8bf 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[8c0 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264c0 gate 1513666054841481900 evaluation starts -[8c1 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 signed by 0 principal evaluation starts (used [false]) -[8c2 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8c3 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[8c4 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[8c5 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264c0 principal evaluation fails -[8c6 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264c0 gate 1513666054841481900 evaluation fails -[8c7 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1513666054842452600 evaluation starts -[8c8 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 signed by 0 principal evaluation starts (used [false]) -[8c9 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8ca 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[8cb 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[8cc 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[8cd 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal matched by identity 0 -[8ce 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 85 32 db d4 c8 97 8f 20 72 94 b0 57 ec 8f bf 2e |.2..... r..W....| -00000010 bd 5a 71 29 b5 4f 14 8b 1d 2f 04 f6 84 10 d6 4e |.Zq).O.../.....N| -[8cf 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e0 f3 a8 2e 38 19 32 85 b6 15 15 |0E.!.....8.2....| -00000010 b7 5d 5b 95 b6 5e 00 bd 9d 22 c3 e1 54 54 1b 4b |.][..^..."..TT.K| -00000020 01 5f 7b 7a 47 02 20 6e f9 9e 44 44 2b 0d bf ee |._{zG. n..DD+...| -00000030 43 d6 ba b0 a9 04 1c 0a 7d 86 af 67 be 72 7e d1 |C.......}..g.r~.| -00000040 94 af 91 4a fe 65 99 |...J.e.| -[8d0 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200264d0 principal evaluation succeeds for identity 0 -[8d1 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200264d0 gate 1513666054842452600 evaluation succeeds -[8d2 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42024d440 1 [0xc420026260]}) %!s(*policies.implicitMetaPolicy=&{0xc420b822e0 1 [0xc420026308 0xc420026378]})]} -[8d3 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420136880) start: > stop: > -[8d4 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[8d5 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[8d6 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11935], Going to peek [8] bytes -[8d7 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[8d8 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420136880) -[8d9 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420136880), waiting for new SeekInfo -[8da 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[8db 12-19 06:47:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[8dc 12-19 06:47:34.84 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[8dd 12-19 06:47:35.85 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[8de 12-19 06:47:35.85 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[8df 12-19 06:47:35.85 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[8e0 12-19 06:47:35.86 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[8e1 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[8e2 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -[8e3 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel -[8e4 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[8e5 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[8e6 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[8e7 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[8e8 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[8e9 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[8ea 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[8eb 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[8ec 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[8ed 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[8ee 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[8ef 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[8f0 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[8f1 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[8f2 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[8f3 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[8f4 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026768 gate 1513666055868315700 evaluation starts -[8f5 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 signed by 0 principal evaluation starts (used [false]) -[8f6 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[8f7 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[8f8 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[8f9 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 principal matched by identity 0 -[8fa 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -[8fb 12-19 06:47:35.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -00000040 fe 63 df 3b 7b a2 |.c.;{.| -[8fc 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026768 principal evaluation succeeds for identity 0 -[8fd 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026768 gate 1513666055868315700 evaluation succeeds -[8fe 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[8ff 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[900 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[901 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[902 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[903 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[904 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[905 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[906 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[907 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[908 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[909 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[90a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[90b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[90c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[90d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[90e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[90f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[910 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[911 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[912 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[913 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[914 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[915 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[916 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[917 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[918 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[919 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[91a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[91b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[91c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[91d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[91e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[91f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[920 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[921 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[922 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[923 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[924 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[925 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[926 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[927 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[928 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[929 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[92a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[92b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[92c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[92d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[92e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[92f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[930 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[931 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[932 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[933 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[934 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[935 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[936 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[937 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[938 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[939 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[93a 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[93b 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[93c 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[93d 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[93e 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[93f 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[940 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[941 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[942 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[943 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[944 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[945 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[946 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[947 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[948 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[949 12-19 06:47:35.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[94a 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[94b 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[94c 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[94d 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[94e 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[94f 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[950 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[951 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[952 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[953 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[954 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[955 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[956 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[957 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[958 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[959 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[95a 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[95b 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[95c 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A060887ECE2D10522...D5C69887BD2C463FDC67D1F2BBB07A50 -[95d 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 492914C3D01D20C05FB31CFEC982EBA48233FB1A452A6E8D915998D066D97DAD -[95e 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG -[95f 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[960 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026b30 gate 1513666055885244600 evaluation starts -[961 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 signed by 0 principal evaluation starts (used [false]) -[962 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -[963 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[964 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[965 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[966 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 principal matched by identity 0 -[967 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 29 14 c3 d0 1d 20 c0 5f b3 1c fe c9 82 eb a4 |I).... ._.......| -00000010 82 33 fb 1a 45 2a 6e 8d 91 59 98 d0 66 d9 7d ad |.3..E*n..Y..f.}.| -[968 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 44 c2 24 45 1b a5 cc c4 c7 71 |0E.!..D.$E.....q| -00000010 cb c1 0a 86 38 d0 17 e1 16 eb 0c 34 d2 4d 1b 46 |....8......4.M.F| -00000020 af e3 9d 71 19 02 20 74 0a 08 cc 21 69 ef 36 46 |...q.. t...!i.6F| -00000030 66 7c 55 e8 cd 0c 25 6d 76 9d 00 8a 58 00 1d b8 |f|U...%mv...X...| -00000040 be 95 f7 ef e5 c0 48 |......H| -[969 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026b30 principal evaluation succeeds for identity 0 -[96a 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026b30 gate 1513666055885244600 evaluation succeeds -[96b 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42024d540 1 [0xc420026210]}) %!s(*policies.implicitMetaPolicy=&{0xc420b821e0 1 [0xc4200262b8 0xc4200263a0]})]} -[96c 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[96d 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[96e 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[96f 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[970 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[971 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[972 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[973 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[974 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[975 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[976 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[977 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[978 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[979 12-19 06:47:35.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[97a 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[97b 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[97c 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666055890349100 evaluation starts -[97d 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 signed by 0 principal evaluation starts (used [false]) -[97e 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[97f 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[980 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[981 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal matched by identity 0 -[982 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -[983 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -00000040 fe 63 df 3b 7b a2 |.c.;{.| -[984 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal evaluation succeeds for identity 0 -[985 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666055890349100 evaluation succeeds -[986 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[987 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[988 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[989 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[98a 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[98b 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[98c 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[98d 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[98e 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[98f 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[990 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[991 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[992 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[993 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[994 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[995 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[996 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[997 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[998 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[999 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[99a 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[99b 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[99c 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[99d 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[99e 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[99f 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[9a0 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[9a1 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[9a2 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[9a3 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[9a4 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[9a5 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[9a6 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[9a7 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[9a8 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[9a9 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[9aa 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[9ab 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[9ac 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[9ad 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[9ae 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[9af 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[9b0 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[9b1 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[9b2 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[9b3 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[9b4 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[9b5 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[9b6 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[9b7 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[9b8 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[9b9 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[9ba 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[9bb 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[9bc 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[9bd 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[9be 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[9bf 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[9c0 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[9c1 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[9c2 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[9c3 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[9c4 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[9c5 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[9c6 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[9c7 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[9c8 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[9c9 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[9ca 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[9cb 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[9cc 12-19 06:47:35.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[9cd 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[9ce 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[9cf 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[9d0 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[9d1 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[9d2 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[9d3 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[9d4 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[9d5 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[9d6 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[9d7 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[9d8 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[9d9 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[9da 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[9db 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[9dc 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[9dd 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[9de 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[9df 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[9e0 12-19 06:47:35.90 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 -[9e1 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[9e2 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666055905456400 evaluation starts -[9e3 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) -[9e4 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -[9e5 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[9e6 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[9e7 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[9e8 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 -[9e9 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 49 29 14 c3 d0 1d 20 c0 5f b3 1c fe c9 82 eb a4 |I).... ._.......| -00000010 82 33 fb 1a 45 2a 6e 8d 91 59 98 d0 66 d9 7d ad |.3..E*n..Y..f.}.| -[9ea 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 44 c2 24 45 1b a5 cc c4 c7 71 |0E.!..D.$E.....q| -00000010 cb c1 0a 86 38 d0 17 e1 16 eb 0c 34 d2 4d 1b 46 |....8......4.M.F| -00000020 af e3 9d 71 19 02 20 74 0a 08 cc 21 69 ef 36 46 |...q.. t...!i.6F| -00000030 66 7c 55 e8 cd 0c 25 6d 76 9d 00 8a 58 00 1d b8 |f|U...%mv...X...| -00000040 be 95 f7 ef e5 c0 48 |......H| -[9eb 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 -[9ec 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666055905456400 evaluation succeeds -[9ed 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42024d540 1 [0xc420026210]}) %!s(*policies.implicitMetaPolicy=&{0xc420b821e0 1 [0xc4200262b8 0xc4200263a0]})]} -[9ee 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[9ef 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[9f0 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[9f1 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[9f2 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[9f3 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[9f4 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[9f5 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[9f6 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[9f7 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[9f8 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[9f9 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[9fa 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[9fb 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[9fc 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[9fd 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[9fe 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268f0 gate 1513666055908242100 evaluation starts -[9ff 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 signed by 0 principal evaluation starts (used [false]) -[a00 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[a01 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[a02 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[a03 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 principal matched by identity 0 -[a04 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -[a05 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -00000040 fe 63 df 3b 7b a2 |.c.;{.| -[a06 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200268f0 principal evaluation succeeds for identity 0 -[a07 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200268f0 gate 1513666055908242100 evaluation succeeds -[a08 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[a09 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[a0a 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[a0b 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[a0c 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[a0d 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[a0e 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[a0f 12-19 06:47:35.90 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[a10 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[a11 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[a12 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[a13 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[a14 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[a15 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[a16 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[a17 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[a18 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[a19 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[a1a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[a1b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[a1c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[a1d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[a1e 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[a1f 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[a20 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[a21 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[a22 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[a23 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[a24 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[a25 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[a26 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[a27 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[a28 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[a29 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[a2a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[a2b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[a2c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[a2d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[a2e 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[a2f 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[a30 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[a31 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[a32 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[a33 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[a34 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[a35 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[a36 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[a37 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[a38 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[a39 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[a3a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[a3b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[a3c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[a3d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[a3e 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[a3f 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[a40 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[a41 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[a42 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[a43 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[a44 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[a45 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[a46 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[a47 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[a48 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[a49 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[a4a 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[a4b 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[a4d 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[a4e 12-19 06:47:35.92 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a4f 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[a50 12-19 06:47:35.92 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[a4c 12-19 06:47:35.91 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[a51 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[a52 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[a53 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[a54 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[a55 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[a56 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[a57 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[a58 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[a59 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[a5a 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[a5b 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[a5c 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[a5d 12-19 06:47:35.92 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[a5e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[a5f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[a60 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[a61 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[a62 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[a63 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[a64 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[a65 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[a66 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -[a67 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[a68 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[a69 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11935], Going to peek [8] bytes -[a6a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[a6b 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[a6c 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[a6d 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[a6e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[a6f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[a70 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[a71 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[a72 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[a73 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[a74 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[a75 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[a76 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[a77 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[a78 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[a79 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[a7a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[a7b 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[a7c 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[a7d 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[a7e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[a7f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[a80 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[a81 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[a82 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[a83 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[a84 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[a85 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[a86 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[a87 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[a88 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[a89 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[a8a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[a8b 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[a8c 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[a8d 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[a8e 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[a8f 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[a90 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[a91 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[a92 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[a93 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[a94 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[a95 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[a96 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[a97 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[a98 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[a99 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[a9a 12-19 06:47:35.93 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[a9b 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[a9c 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[a9d 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[a9e 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[a9f 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[aa0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513666055940271300 evaluation starts -[aa1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 signed by 0 principal evaluation starts (used [false]) -[aa2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[aa3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[aa4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[aa5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal matched by identity 0 -[aa6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 76 c6 e2 1b b1 d0 2d 31 42 56 52 e5 8b df d9 b5 |v.....-1BVR.....| -00000010 28 0f 36 51 f5 7f 6d eb 2f 9e b8 06 30 16 20 66 |(.6Q..m./...0. f| -[aa7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 97 d5 49 79 ec 75 26 c3 69 02 8b |0D. "..Iy.u&.i..| -00000010 f2 82 3c a9 c6 27 8a c5 1d 18 dd 99 05 0c 71 e9 |..<..'........q.| -00000020 21 12 ce 60 02 20 58 79 0f 17 2a 68 97 4d 24 fc |!..`. Xy..*h.M$.| -00000030 e5 a0 c2 84 fa e3 27 b7 cc 2d c4 a4 81 a2 cb 52 |......'..-.....R| -00000040 fe 63 df 3b 7b a2 |.c.;{.| -[aa8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a8 principal evaluation succeeds for identity 0 -[aa9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a8 gate 1513666055940271300 evaluation succeeds -[aaa 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[aab 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[aac 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[aad 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[aae 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[aaf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ab0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ab1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[ab2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[ab3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[ab4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ab5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ab6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ab7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ab8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ab9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[aba 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[abb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[abc 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[abd 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[abe 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[abf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[ac0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[ac1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[ac2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[ac3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[ac4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[ac5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[ac6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[ac7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[ac8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[ac9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[aca 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[acb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[acc 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[acd 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[ace 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[acf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[ad0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ad1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[ad2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[ad3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[ad4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[ad5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[ad6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[ad7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[ad8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[ad9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ada 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[adb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[adc 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[add 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ade 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[adf 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[ae0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[ae1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[ae2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ae3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[ae4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[ae5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[ae6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ae7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[ae8 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[ae9 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[aea 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[aeb 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[aec 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[aed 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[aee 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[aef 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[af0 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[af1 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[af2 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[af3 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[af4 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[af5 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[af6 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[af7 12-19 06:47:35.94 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[af8 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[af9 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[afa 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[afb 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[afc 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[afd 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[afe 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[aff 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[b00 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[b01 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[b02 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[b03 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[b04 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[b05 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[b06 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[b07 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[b08 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[b09 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[b0a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[b0b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[b0c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[b0d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[b0e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[b0f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[b10 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[b11 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[b12 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[b13 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[b14 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[b15 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[b16 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[b17 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[b18 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[b19 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[b1a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[b1b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[b1c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[b1d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[b1e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[b1f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[b20 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[b21 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[b22 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[b23 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[b24 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[b25 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[b26 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[b27 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[b28 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[b29 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[b2a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[b2b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[b2c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[b2d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[b2e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[b2f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[b30 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[b31 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[b32 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[b33 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[b34 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[b35 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[b36 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[b37 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[b38 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[b39 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[b3a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[b3b 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[b3c 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[b3d 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[b3e 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[b3f 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[b40 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[b41 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[b42 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[b43 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[b44 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[b45 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[b46 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[b47 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[b48 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[b49 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[b4a 12-19 06:47:35.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[b4b 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[b4c 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[b4d 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[b4e 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[b4f 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[b50 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[b51 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[b52 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:0 lastConfigSeq:1} -[b53 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[b54 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b55 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b56 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b57 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b58 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4DCBEAEE94F07A7867FE7102CF2F8BF6 -[b59 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: F0F1FA52A3E97E1C3F613978AE3EE3CA0C8C7C36D7CC2DBF388068E19508DC46 -[b5a 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 -[b5b 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[b5c 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b5d 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[b5e 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[b5f 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[b60 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...4DCBEAEE94F07A7867FE7102CF2F8BF6 -[b61 12-19 06:47:35.96 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: FED852962A84DFB1ADFA0E4A82C47F0BFFF595D7D24D9BA2A58CE4DB044F8D74 -[b62 12-19 06:47:35.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -txId= locPointer=offset=70, bytesLength=11913 -] -[b63 12-19 06:47:35.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] -[b64 12-19 06:47:35.97 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 -[b65 12-19 06:47:37.99 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b66 12-19 06:47:37.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[b67 12-19 06:47:37.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[b68 12-19 06:47:38.00 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[b69 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[b6a 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE -[b6b 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel -[b6c 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[b6d 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[b6e 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[b6f 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[b70 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[b71 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[b72 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[b73 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[b74 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[b75 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[b76 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[b77 12-19 06:47:38.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[b78 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[b79 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[b7a 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[b7b 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[b7c 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180950 gate 1513666058010440300 evaluation starts -[b7d 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 signed by 0 principal evaluation starts (used [false]) -[b7e 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[b7f 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[b80 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[b81 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 principal matched by identity 0 -[b82 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -[b83 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -00000040 9f b4 9c 43 9e 03 |...C..| -[b84 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180950 principal evaluation succeeds for identity 0 -[b85 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180950 gate 1513666058010440300 evaluation succeeds -[b86 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b87 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b88 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b89 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b8a 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b8b 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[b8c 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b8d 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b8e 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b8f 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b90 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[b91 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[b92 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[b93 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b94 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b95 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b96 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b97 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b98 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b99 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel -[b9a 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[b9b 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[b9c 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[b9d 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[b9e 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[b9f 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[ba0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[ba1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[ba2 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[ba3 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[ba4 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[ba5 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[ba6 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[ba7 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[ba8 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[ba9 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[baa 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[bab 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[bac 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[bad 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bae 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[baf 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[bb0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[bb1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[bb2 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[bb3 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[bb4 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[bb5 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[bb6 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bb7 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[bb8 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[bb9 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[bba 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bbb 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[bbc 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[bbd 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[bbe 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[bbf 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bc0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[bc1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[bc2 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[bc3 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bc4 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[bc5 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[bc6 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[bc7 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[bc8 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[bc9 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[bca 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[bcb 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[bcc 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[bcd 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[bce 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[bcf 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[bd0 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[bd1 12-19 06:47:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[bd2 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[bd3 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[bd4 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[bd5 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[bd6 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[bd7 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[bd8 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[bd9 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[bda 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[bdb 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[bdc 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[bdd 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[bde 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[bdf 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[be0 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[be1 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[be2 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[be3 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[be4 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A06088AECE2D10522...77B46BCF871A9C4C840923EDE7FBE2B8 -[be5 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: D57A1DBF412779CCBEBFD90833A46A8D41EEEA3CEC133A69F3DF5E547350B0C1 -[be6 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG -[be7 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[be8 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180d40 gate 1513666058025177300 evaluation starts -[be9 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 signed by 0 principal evaluation starts (used [false]) -[bea 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -[beb 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[bec 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[bed 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[bee 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 principal matched by identity 0 -[bef 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d5 7a 1d bf 41 27 79 cc be bf d9 08 33 a4 6a 8d |.z..A'y.....3.j.| -00000010 41 ee ea 3c ec 13 3a 69 f3 df 5e 54 73 50 b0 c1 |A..<..:i..^TsP..| -[bf0 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 13 85 be 7a b9 95 72 d5 a2 b1 17 1a |0D. ...z..r.....| -00000010 b5 97 03 be 58 2c a4 88 1e 85 41 c0 a4 aa ff ba |....X,....A.....| -00000020 40 e4 04 2c 02 20 27 ce e7 ee 31 28 c9 ca 11 89 |@..,. '...1(....| -00000030 af 17 85 db 9d 27 36 49 cd bc 6b b7 f2 ac d8 c4 |.....'6I..k.....| -00000040 20 c2 10 b2 54 29 | ...T)| -[bf1 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180d40 principal evaluation succeeds for identity 0 -[bf2 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180d40 gate 1513666058025177300 evaluation succeeds -[bf3 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42011ee80 1 [0xc420026420]}) %!s(*policies.implicitMetaPolicy=&{0xc42011fac0 1 [0xc420026500 0xc4200265f0]})]} -[bf4 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[bf5 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[bf6 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[bf7 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[bf8 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[bf9 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[bfa 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[bfb 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[bfc 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[bfd 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[bfe 12-19 06:47:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[bff 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[c00 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[c01 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[c02 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[c03 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[c04 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666058035187900 evaluation starts -[c05 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 signed by 0 principal evaluation starts (used [false]) -[c06 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[c07 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[c08 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[c09 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal matched by identity 0 -[c0a 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -[c0b 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -00000040 9f b4 9c 43 9e 03 |...C..| -[c0c 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4201803a0 principal evaluation succeeds for identity 0 -[c0d 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4201803a0 gate 1513666058035187900 evaluation succeeds -[c0e 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c0f 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c10 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c11 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[c12 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c13 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c14 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c15 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c16 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c17 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c18 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[c19 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[c1a 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[c1b 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c1c 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c1d 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c1e 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c1f 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c20 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c21 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[c22 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[c23 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[c24 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[c25 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[c26 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[c27 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[c28 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[c29 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[c2a 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[c2b 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[c2c 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[c2d 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[c2e 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[c2f 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[c30 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[c31 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[c32 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[c33 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[c34 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[c35 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c36 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[c37 12-19 06:47:38.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[c38 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[c39 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[c3a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[c3b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[c3c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[c3d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[c3e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c3f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[c40 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[c41 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[c42 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c43 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[c44 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[c45 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[c46 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[c47 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c48 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[c49 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[c4a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[c4b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c4c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[c4d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[c4e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[c4f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[c50 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[c51 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[c52 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[c53 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[c54 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[c55 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[c56 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[c57 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[c58 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[c59 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[c5a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[c5b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[c5c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[c5d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[c5e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[c5f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[c60 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[c61 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[c62 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[c63 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[c64 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[c65 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[c66 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[c67 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[c68 12-19 06:47:38.04 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 -[c69 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[c6a 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666058048606100 evaluation starts -[c6b 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) -[c6c 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f674177494241674952414b61386b496d346f313857595439717949497a544a6777436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456b4f713533517035434a7a53562f35686d496a46743061393656654e6a32364d4a64584a686d4d6a46482f61477653690a6b4e4262444d6a4f4b53463264643331784f525a343342356d476557616e6264654a4a6879714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416773794854682f6373444549376d685765625341374a533768556b39390a307849343478426c7162487852546377436759494b6f5a497a6a304541774944527741775241496741793430654442735134542b392b50494b543535556673550a6556322f6b6773592f615365546a6b617254774349415a364a626e474d4b3437696e376c454941354b43556566307573423271356f5a62616d50356e776f69360a2d2d2d2d2d454e44202d2d2d2d2d0a -[c6d 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi -kNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99 -0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU -eV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6 ------END CERTIFICATE----- -[c6e 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[c6f 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[c70 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 -[c71 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d5 7a 1d bf 41 27 79 cc be bf d9 08 33 a4 6a 8d |.z..A'y.....3.j.| -00000010 41 ee ea 3c ec 13 3a 69 f3 df 5e 54 73 50 b0 c1 |A..<..:i..^TsP..| -[c72 12-19 06:47:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 13 85 be 7a b9 95 72 d5 a2 b1 17 1a |0D. ...z..r.....| -00000010 b5 97 03 be 58 2c a4 88 1e 85 41 c0 a4 aa ff ba |....X,....A.....| -00000020 40 e4 04 2c 02 20 27 ce e7 ee 31 28 c9 ca 11 89 |@..,. '...1(....| -00000030 af 17 85 db 9d 27 36 49 cd bc 6b b7 f2 ac d8 c4 |.....'6I..k.....| -00000040 20 c2 10 b2 54 29 | ...T)| -[c73 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 -[c74 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1513666058048606100 evaluation succeeds -[c75 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42011ee80 1 [0xc420026420]}) %!s(*policies.implicitMetaPolicy=&{0xc42011fac0 1 [0xc420026500 0xc4200265f0]})]} -[c76 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[c77 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[c78 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[c79 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[c7a 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[c7b 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[c7c 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[c7d 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[c7e 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[c7f 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[c80 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[c81 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[c82 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[c83 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[c84 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[c85 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[c86 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026910 gate 1513666058051796600 evaluation starts -[c87 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 signed by 0 principal evaluation starts (used [false]) -[c88 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[c89 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[c8a 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[c8b 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 principal matched by identity 0 -[c8c 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -[c8d 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -00000040 9f b4 9c 43 9e 03 |...C..| -[c8e 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026910 principal evaluation succeeds for identity 0 -[c8f 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026910 gate 1513666058051796600 evaluation succeeds -[c90 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c91 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c92 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c93 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[c94 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[c95 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[c96 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c97 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c98 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c99 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c9a 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c9b 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[c9c 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[c9d 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[c9e 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[c9f 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ca0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ca1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ca2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ca3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[ca4 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[ca5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[ca6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[ca7 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[ca8 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[ca9 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[caa 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[cab 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[cac 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[cad 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[cae 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[caf 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[cb0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[cb1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[cb2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[cb3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[cb4 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[cb5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[cb6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[cb7 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[cb8 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[cb9 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[cba 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[cbb 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[cbc 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[cbd 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[cbe 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[cbf 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[cc0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[cc1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[cc3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[cc4 12-19 06:47:38.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[cc2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[cc5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[cc6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[cc7 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[cc8 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[cc9 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[cca 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ccb 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[ccc 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[ccd 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[cce 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[ccf 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[cd0 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[cd1 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[cd2 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[cd3 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[cd4 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[cd5 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[cd6 12-19 06:47:38.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[cd7 12-19 06:47:38.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[cd8 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[cd9 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[cda 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[cdb 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[cdc 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[cdd 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[cde 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[cdf 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[ce0 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[ce1 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[ce2 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[ce3 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[ce4 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[ce5 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[ce6 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[ce7 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[ce8 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[ce9 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[cea 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[ceb 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[cec 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[ced 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[cee 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch -[cef 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -[cf0 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -[cf1 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13734], Going to peek [8] bytes -[cf2 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -[cf3 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[cf4 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[cf5 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[cf6 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[cf7 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[cf8 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[cf9 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[cfa 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[cfb 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[cfc 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[cfd 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[cfe 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[cff 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[d00 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[d01 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[d02 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[d03 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[d04 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[d05 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[d06 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[d07 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[d08 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[d09 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[d0a 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[d0b 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[d0c 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[d0d 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[d0e 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[d0f 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[d10 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[d11 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[d12 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[d13 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[d14 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[d15 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[d16 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[d17 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[d18 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[d19 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[d1a 12-19 06:47:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[d1b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[d1c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[d1d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[d1e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[d1f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[d20 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[d21 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[d22 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[d23 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[d24 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[d25 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[d26 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[d27 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[d28 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation -[d29 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180008 gate 1513666058075536600 evaluation starts -[d2a 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 signed by 0 principal evaluation starts (used [false]) -[d2b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[d2c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[d2d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[d2e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 principal matched by identity 0 -[d2f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 05 87 69 ef a0 fb 66 fb 48 10 c4 67 50 74 45 a8 |..i...f.H..gPtE.| -00000010 b3 a9 61 ec e8 d1 a2 73 98 71 57 ac f5 62 a5 26 |..a....s.qW..b.&| -[d30 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 09 40 b2 32 b3 28 d9 be 74 a3 fd |0D. `.@.2.(..t..| -00000010 54 8f 20 e9 b9 5b b6 c5 3f 1f 5f 24 51 7d 10 7c |T. ..[..?._$Q}.|| -00000020 38 2a ec 9c 02 20 00 fe 38 d6 4f ca 51 b5 e4 e7 |8*... ..8.O.Q...| -00000030 46 36 d0 43 69 a2 1d 12 01 63 0a 26 ed f0 05 62 |F6.Ci....c.&...b| -00000040 9f b4 9c 43 9e 03 |...C..| -[d31 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420180008 principal evaluation succeeds for identity 0 -[d32 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420180008 gate 1513666058075536600 evaluation succeeds -[d33 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d34 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d35 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d36 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[d37 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d38 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d39 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d3a 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[d3b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[d3c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[d3d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d3e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d3f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d40 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d41 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d42 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d43 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[d44 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[d45 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[d46 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[d47 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[d48 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[d49 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[d4a 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[d4b 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[d4c 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel -[d4d 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel -[d4e 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel -[d4f 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[d50 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[d51 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[d52 12-19 06:47:38.07 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[d53 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[d54 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[d55 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer -[d56 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer -[d57 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer -[d58 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer -[d59 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[d5a 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d5b 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg -[d5c 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg -[d5d 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg -[d5e 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[d5f 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application -[d60 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application -[d61 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application -[d62 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[d63 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d64 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[d65 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d66 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[d67 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d68 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP -[d69 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP -[d6a 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP -[d6b 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[d6c 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d6d 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[d6e 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d6f 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[d70 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d71 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP -[d72 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP -[d73 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP -[d74 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[d75 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d76 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP -[d77 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdWgAwIBAgIQel2MA2RPXX87T/gIipLNMjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTIxNTA3NTYwMloXDTI3MTIxMzA3NTYwMlowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFAdAOOMoLEn2PibDffsnGk7YFoC -jL4FWosR3TtV3zpSv+CHcp7Js5zymZkMakch1hF67Dw30aiNUpCnHrapRPmjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEILMh04f3LAxCO5oVnm0gOyUu4VJPfdMSOOMQZamx8UU3MAoG -CCqGSM49BAMCA0gAMEUCIQD21+zaQbZ9JYBxP+DK7/DDek2AD/1XBzfunVYwUCbB -TwIgUwGP0AzAX2nK7SRxOiZVNZSozcxfy7DZY9Td4TCMQXc= ------END CERTIFICATE----- -[d78 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[d79 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[d7a 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[d7b 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[d7c 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[d7d 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d7e 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP -[d7f 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAOQEd30wHX59gqGpNeBdPWYwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BF/8U+yswabFIdjgWzNCg81VZ/WpVf8dkTamKutMd068uvbVBwWW0hXJA4qoTqNT -wrhdBooe0sXOlzZTWPMJdMSjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIKrjkHSu1EPgIOoQOA/W -d9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIE0vKps3ppMe5d/S -+e58Fvc9cJUQ2fbw9adeJi6b+euSAiB/xHeO1sAvVWbdVfxb+aDfOi2EiNYortNM -IEhjT+WlcQ== ------END CERTIFICATE----- -[d80 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[d81 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== ------END CERTIFICATE----- -[d82 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[d83 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[d84 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[d85 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d86 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP -[d87 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMGVUUcTo4P5FJw4BXpdAmUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAZBNt8tRhNdmjt9sksS3KiuYbZKtgYDI4958cOdxbQ4tujnyAjG4iSoJkPiQfb7 -rb1whrnweR/e8AiW88alQuyjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIM4O6D2OZvvcc0+wyw+h -65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQCylPeYHJbIYmGO -vDhs5hnkLOKMCcCHcGQae5goWRAvCAIgHBx+dtZnVWtuLGNC4xsBf4TfE1HMQrpD -XXreRTw6jXg= ------END CERTIFICATE----- -[d88 12-19 06:47:38.08 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[d89 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[d8a 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[d8b 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) -[d8c 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps -[d8d 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[d8e 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer -[d8f 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[d90 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer -[d91 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[d92 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer -[d93 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[d94 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[d95 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[d96 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[d97 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[d98 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application -[d99 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[d9a 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application -[d9b 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[d9c 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application -[d9d 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[d9e 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application -[d9f 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[da0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application -[da1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[da2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application -[da3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[da4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[da5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[da6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[da7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[da8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[da9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation -[daa 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -[dab 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation -[dac 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -[dad 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation -[dae 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -[daf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[db0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel -[db1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[db2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel -[db3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[db4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel -[db5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation -[db6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel -[db7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[db8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel -[db9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation -[dba 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -[dbb 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation -[dbc 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -[dbd 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation -[dbe 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -[dbf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation -[dc0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel -[dc1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[dc2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel -[dc3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation -[dc4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -[dc5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation -[dc6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -[dc7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation -[dc8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -[dc9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[dca 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation -[dcb 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[dcc 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation -[dcd 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[dce 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation -[dcf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation -[dd0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' -[dd1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation -[dd2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' -[dd3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation -[dd4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[dd5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation -[dd6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[dd7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation -[dd8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[dd9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation -[dda 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[ddb 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:1 lastConfigSeq:2} -[ddc 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[ddd 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[dde 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[ddf 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[de0 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[de1 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...87F2E29AC80A9959F02A535DC0293FDF -[de2 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 35A078185D89A0BE943C61A7C605557D3FDDDC2AEF2216DE23BC33DE1FDFD64E -[de3 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 -[de4 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[de5 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[de6 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[de7 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[de8 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[de9 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...87F2E29AC80A9959F02A535DC0293FDF -[dea 12-19 06:47:38.09 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 15037B8F2F30DA463B26A438CB41BE4B90ACEE176F47C31F4B5DBB25AFA90681 -[deb 12-19 06:47:38.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -txId= locPointer=offset=70, bytesLength=11971 -] -[dec 12-19 06:47:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39460], isChainEmpty=[false], lastBlockNumber=[2] -[ded 12-19 06:47:38.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 -[dee 12-19 06:47:41.14 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[def 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[df0 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[df1 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[df2 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1513666061149971000 evaluation starts -[df3 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) -[df4 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951626e724a6b2f64763242314c495a716d77464b484244414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444661467730794e7a45794d544d774e7a55324d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414544356654676643787433577041594c6451545354454f594c357363653774752f0a3563536e6a59696b702b585563684147494e39395a65623149623755436c335a2f32617a4531512f4c7759395463764c6d342f766c364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416771754f51644b3755512b41670a3668413444395a3331795054714e396665687a6b59676f30564559536e454977436759494b6f5a497a6a304541774944534141775251496841505574776a36670a6848764e6e51434f6a56735549455074734d686962346c646b5670643962695134497752416941716a703479306d785a6b4e3433773574373561322b796667610a506a4e4d474331664d522f644666673478513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[df5 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[092 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[093 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/common/config] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[094 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[095 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[096 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[097 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[098 01-12 22:56:34.66 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[099 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[09a 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[09b 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/msp] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[09c 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[09d 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[09e 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[09f 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[0a0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0a1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[0a2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[0a3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[0a4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[0a5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[0a6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0a7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +[0a8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0a9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +[0aa 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0ab 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +[0ac 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0ad 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +[0ae 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0af 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +[0b0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0b1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +[0b2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[0b3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +[0b4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[0b5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +[0b6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[0b7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +[0b8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[0b9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +[0ba 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[0bb 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +[0bc 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[0bd 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +[0be 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[0bf 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[0c0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[0c1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[0c2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0c3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[0c4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0c5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[0c6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0c7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[0c8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[0c9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[0ca 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[0cb 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[0cc 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Writers for evaluation +[0cd 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +[0ce 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[0cf 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/Admins to Channel +[0d0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Writers for evaluation +[0d1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +[0d2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Admins for evaluation +[0d3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +[0d4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org2MSP/Readers for evaluation +[0d5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +[0d6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Admins for evaluation +[0d7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +[0d8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy SampleConsortium/Org1MSP/Readers for evaluation +[0d9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +[0da 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +[0db 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[0dc 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[0dd 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[0de 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[0df 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +[0e0 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[0e1 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[0e2 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[0e3 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[0e4 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[0e5 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/policies] main.initializeMultiChainManager.NewManagerImpl.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[0e6 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[0e7 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[0e8 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +[0e9 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.initializeMultiChainManager.NewManagerImpl.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[0ea 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl.newChainSupport -> DEBU [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +[0eb 01-12 22:56:34.67 UTC] [github.com/hyperledger/fabric/orderer/multichain] main.initializeMultiChainManager.NewManagerImpl -> INFO Starting with system channel testchainid and orderer type solo +[0ec 01-12 22:56:34.67 UTC] [main] main -> INFO Beginning to serve requests +[0ed 01-12 22:56:37.78 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[0ee 01-12 22:56:37.78 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[0ef 01-12 22:56:37.78 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[0f0 01-12 22:56:37.79 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[0f1 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[0f2 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +[0f3 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel creation request for channel businesschannel +[0f4 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[0f5 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[0f6 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[0f7 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[0f8 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A5FAE4D20522...07526561646572731A0641646D696E73 +[0f9 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 2512206BC06D343D4FBBE97510E481C9D53E54584200435F555C643BB30060F4 +[0fa 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[0fb 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[0fc 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[0fd 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[0fe 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[0ff 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[100 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[101 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[102 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[103 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[104 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[105 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[106 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[107 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[108 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[109 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[10a 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[10b 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[10c 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[10d 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[10e 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[10f 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[110 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[111 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[112 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[113 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[114 01-12 22:56:37.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[115 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[116 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[117 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[118 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[119 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[11a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[11b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[11c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[11d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[11e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[11f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[120 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[121 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[122 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[123 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[124 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[125 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[126 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[127 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[128 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[129 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[12a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[12b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[12c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[12d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[12e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[12f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[130 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[131 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[132 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[133 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[134 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[135 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[136 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[137 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[138 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[139 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[13a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +[13b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[13c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[13d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[13e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[13f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[140 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[141 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[142 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[143 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[144 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[145 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[146 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[147 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[148 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[149 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[14a 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[14b 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[14c 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[14d 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[14e 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[14f 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[150 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[151 01-12 22:56:37.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[152 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[153 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[154 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[155 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[156 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[157 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[158 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[159 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[15a 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[15b 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[15c 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[15d 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[15e 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[15f 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[160 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[161 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[162 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[163 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[164 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[165 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[166 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[167 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[168 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[169 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[16a 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[16b 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[16c 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[16d 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[16e 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[16f 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[170 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[171 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[172 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[173 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[174 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[175 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[176 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[177 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[178 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[179 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[17a 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[17b 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[17c 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[17d 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[17e 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[17f 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[180 01-12 22:56:37.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[181 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[182 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[183 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[184 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[185 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[186 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[187 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[188 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[189 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[18a 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[18b 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[18c 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[18d 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +[18e 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[18f 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[190 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[191 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[192 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[193 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[194 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[195 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[196 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[197 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[198 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[199 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[19a 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[19b 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +[19c 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[19d 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +[19e 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[19f 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.NewChannelConfig.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +[1a0 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1a1 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1a2 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1a3 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1a4 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1a5 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1a6 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1a7 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1a8 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1a9 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1aa 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1ab 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1ac 01-12 22:56:37.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1ad 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[1ae 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017d238 gate 1515797797831256948 evaluation starts +[1af 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 signed by 0 principal evaluation starts (used [false]) +[1b0 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[1b1 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[1b2 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[1b3 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 principal matched by identity 0 +[1b4 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +[1b5 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +00000040 88 95 6d d3 74 2c 02 |..m.t,.| +[1b6 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017d238 principal evaluation succeeds for identity 0 +[1b7 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017d238 gate 1515797797831256948 evaluation succeeds +[1b8 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1b9 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1ba 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1bb 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1bc 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1bd 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[1be 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1bf 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1c0 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c1 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c2 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c3 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c4 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1c5 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c6 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1c7 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1c8 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[1c9 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[1ca 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[1cb 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[1cc 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[1cd 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1ce 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1cf 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1d0 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1d1 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[1d2 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[1d3 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[1d4 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[1d5 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[1d6 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[1d7 01-12 22:56:37.83 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[1d8 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[1d9 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[1da 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[1db 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[1dc 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[1dd 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[1de 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1df 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1e0 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[1e1 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[1e2 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[1e3 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[1e4 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[1e5 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[1e6 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[1e7 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1e8 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1e9 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[1ea 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1eb 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1ec 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1ed 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[1ee 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[1ef 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[1f0 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1f1 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1f2 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[1f3 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1f4 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[1f5 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1f6 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[1f7 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[1f8 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[1f9 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[1fa 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1fb 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[1fc 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[1fd 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[1fe 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[1ff 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[200 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[201 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[202 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[203 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[204 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[205 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[206 01-12 22:56:37.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[207 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[208 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[209 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[20a 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[20b 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[20c 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[20d 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[20e 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[20f 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[210 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[211 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[212 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[213 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[214 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[215 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[216 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A5FAE4D20522...A2667F95CE58E3F3354DF83B1ABA5E95 +[217 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 8318C17289CA5CD40B416699E4D21C66C0E551246D8D9350C33FED81D4990345 +[218 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[219 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[21a 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[21b 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[21c 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB3060A1708041A0608A5FAE4D20522...C0AE1306F50929FF618B4B5E68D4020D +[21d 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.newChannelConfig.proposeNewChannelToSystemChannel.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 4536B3B19680140FDD43DA6736C960A89C366D442F429DEA314B84A25C7BC944 +[21e 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +[21f 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[220 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cb80 gate 1515797797855267836 evaluation starts +[221 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 signed by 0 principal evaluation starts (used [false]) +[222 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +[223 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +-----END CERTIFICATE----- +[224 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[225 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[226 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 principal matched by identity 0 +[227 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 36 b3 b1 96 80 14 0f dd 43 da 67 36 c9 60 a8 |E6.......C.g6.`.| +00000010 9c 36 6d 44 2f 42 9d ea 31 4b 84 a2 5c 7b c9 44 |.6mD/B..1K..\{.D| +[228 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9f 5b b3 92 38 90 64 31 a5 58 2e |0E.!..[..8.d1.X.| +00000010 1a b5 5a 27 e7 21 f4 8a 58 5c ac 5f d9 56 4e 5d |..Z'.!..X\._.VN]| +00000020 a1 51 78 fe e4 02 20 0c 47 a0 82 40 76 1a 05 e7 |.Qx... .G..@v...| +00000030 c2 8d b6 c7 15 59 74 1d a4 49 0d e8 5c 86 8a b4 |.....Yt..I..\...| +00000040 e7 a4 a6 5f 6e 98 10 |..._n..| +[229 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cb80 principal evaluation succeeds for identity 0 +[22a 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cb80 gate 1515797797855267836 evaluation succeeds +[22b 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420397fa0 1 [0xc42017c700]})]} +[22c 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[22d 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[22e 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[22f 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[230 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A5FAE4D20522...07577269746572731A0641646D696E73 +[231 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: CE2867E845CF2CE5B5DBDABF0472093C8DC35E209745785B1B524BFD9FF2C201 +[232 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[233 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[234 01-12 22:56:37.85 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[235 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[236 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[237 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[238 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[239 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[23a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[23b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[23c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[23d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[23e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[23f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[240 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[241 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[242 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[243 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[244 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[245 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[246 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[247 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[248 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[249 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[24a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[24b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[24c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[24d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[24e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[24f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[250 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[251 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[252 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[253 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[254 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[255 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[256 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[257 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[258 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[259 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[25a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[25b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[25c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[25d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[25e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[25f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[260 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[261 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[262 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[263 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[264 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[265 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[266 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[267 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[268 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[269 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[26a 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[26b 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[26c 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[26d 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[26e 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[26f 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[270 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[271 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[272 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +[273 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[274 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[275 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[276 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[277 01-12 22:56:37.86 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[278 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[279 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[27a 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[27b 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[27c 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[27d 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[27e 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[27f 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[280 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[281 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[282 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[283 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[284 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[285 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[286 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[287 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[288 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[289 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[28a 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[28b 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[28c 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[28d 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[28e 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[28f 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[290 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[291 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[292 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[293 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[294 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[295 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[296 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[297 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[298 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[299 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[29a 01-12 22:56:37.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[29b 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[29c 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[29d 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[29e 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[29f 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[2a0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2a1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[2a2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2a3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[2a4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[2a5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2a6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[2a7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[2a8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2a9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[2aa 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2ab 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[2ac 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2ad 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[2ae 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2af 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[2b0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2b1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[2b2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2b3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[2b4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2b5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2b6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[2b7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[2b8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[2b9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[2ba 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[2bb 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[2bc 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[2bd 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[2be 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[2bf 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[2c0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[2c1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[2c2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[2c3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[2c4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[2c5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +[2c6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[2c7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[2c8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[2c9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[2ca 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[2cb 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[2cc 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[2cd 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[2ce 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[2cf 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[2d0 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[2d1 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[2d2 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[2d3 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +[2d4 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[2d5 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +[2d6 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[2d7 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +[2d8 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[2d9 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[2da 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[2db 01-12 22:56:37.88 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[2dc 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[2dd 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[2de 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[2df 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[2e0 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[2e1 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[2e2 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[2e3 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[2e4 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[2e5 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[2e6 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017dd40 gate 1515797797893333894 evaluation starts +[2e7 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 signed by 0 principal evaluation starts (used [false]) +[2e8 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[2e9 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[2ea 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[2eb 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 principal matched by identity 0 +[2ec 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +[2ed 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +00000040 88 95 6d d3 74 2c 02 |..m.t,.| +[2ee 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017dd40 principal evaluation succeeds for identity 0 +[2ef 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017dd40 gate 1515797797893333894 evaluation succeeds +[2f0 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2f1 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2f2 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2f3 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2f4 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2f5 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2f6 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[2f7 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2f8 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2f9 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2fa 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2fb 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2fc 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2fd 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2fe 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2ff 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[300 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[301 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[302 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[303 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[304 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[305 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[306 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[307 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[308 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[309 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[30a 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[30b 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[30c 01-12 22:56:37.89 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[30d 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[30e 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[30f 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[310 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[311 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[312 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[313 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[314 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[315 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[316 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[317 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[318 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[319 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[31a 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[31b 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[31c 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[31d 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[31e 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[31f 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[320 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[321 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[322 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[323 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[324 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[325 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[326 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[327 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[328 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[329 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[32a 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[32b 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[32c 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[32d 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[32e 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[32f 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[330 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[331 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[332 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[333 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[334 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[335 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[336 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[337 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[338 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[339 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[33a 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[33b 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[33c 01-12 22:56:37.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[33d 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[33e 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[33f 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[340 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[341 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[342 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[343 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[344 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[345 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[346 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[347 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[348 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[349 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[34a 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[34b 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[34c 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[34d 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[34e 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[34f 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[350 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[351 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[352 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[353 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[354 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[355 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[356 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[357 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[358 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[359 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[35a 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[35b 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[35c 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[35d 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[35e 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[35f 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[360 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[361 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[362 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[363 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[364 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[365 01-12 22:56:37.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[366 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[367 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[368 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[369 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[36a 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[36b 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[36c 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[36d 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[36e 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[36f 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[370 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[371 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[372 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[373 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[374 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[375 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[376 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[377 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[378 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[379 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[37a 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[37b 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[37c 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797797928531986 evaluation starts +[37d 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 signed by 0 principal evaluation starts (used [false]) +[37e 01-12 22:56:37.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[37f 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[380 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[381 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal matched by identity 0 +[382 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +[383 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +00000040 88 95 6d d3 74 2c 02 |..m.t,.| +[384 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal evaluation succeeds for identity 0 +[385 01-12 22:56:37.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797797928531986 evaluation succeeds +[386 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[387 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[388 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[389 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[38a 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[38b 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[38c 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[38d 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[38e 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[38f 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[390 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[391 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[392 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[393 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[394 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[395 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[396 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[397 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[398 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[399 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[39a 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[39b 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[39c 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[39d 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[39e 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[39f 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[3a0 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[3a1 01-12 22:56:37.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[3a2 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[3a3 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[3a4 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[3a5 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[3a6 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3a7 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3a8 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3a9 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3aa 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3ab 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3ac 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[3ad 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[3ae 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[3af 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3b0 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3b1 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3b2 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3b3 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3b4 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3b5 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[3b6 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[3b7 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[3b8 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[3b9 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3ba 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3bb 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3bc 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3bd 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3be 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[3bf 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[3c0 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[3c1 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[3c2 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3c3 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3c4 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[3c5 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[3c6 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[3c7 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[3c8 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[3c9 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[3ca 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[3cb 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[3cc 01-12 22:56:37.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[3cd 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[3ce 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[3cf 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[3d0 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[3d1 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[3d2 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[3d3 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[3d4 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[3d5 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[3d6 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[3d7 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[3d8 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[3d9 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[3da 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[3db 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[3dc 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[3dd 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[3de 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[3df 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[3e0 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3e1 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[3e2 01-12 22:56:37.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[3e3 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[3e4 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3e5 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[3e6 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3e7 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[3e8 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[3e9 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[3ea 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3eb 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[3ec 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[3ed 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[3ee 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[3ef 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[3f0 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[3f1 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[3f2 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3f3 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[3f4 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[3f5 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[3f6 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3f7 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[3f8 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[3f9 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[3fa 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[3fb 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[3fc 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[3fd 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[3fe 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[3ff 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[400 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[401 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[402 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[403 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[404 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[405 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[406 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[407 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[408 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[409 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[40a 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[40b 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[40c 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[40d 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[40e 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[40f 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[410 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[411 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[412 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[413 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[414 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[415 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[416 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[417 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[418 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[419 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[41a 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[41b 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[41c 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[41d 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[41e 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[41f 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[420 01-12 22:56:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[421 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[422 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[423 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[424 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[425 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[426 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[427 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[428 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[429 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[42a 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[42b 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[42c 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[42d 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[42e 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[42f 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[430 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[431 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[432 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[433 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[434 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[435 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[436 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[437 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[438 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[439 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[43a 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[43b 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[43c 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[43d 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[43e 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[43f 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[440 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[441 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[442 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[443 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[444 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[445 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[446 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[447 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[448 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[449 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[44a 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[44b 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[44c 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[44d 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[44e 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[44f 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[450 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[451 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[452 01-12 22:56:37.98 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[453 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[454 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[455 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[456 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[457 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[458 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[459 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[45a 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[45b 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[45c 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[45d 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[45e 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[45f 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[460 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[461 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[462 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[463 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[464 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[465 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[466 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[467 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[468 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[469 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[46a 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[46b 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[46c 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[46d 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[46e 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[46f 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[470 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[471 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[472 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[473 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[474 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[475 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[476 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[477 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[478 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[479 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[47a 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[47b 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[47c 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[47d 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[47e 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[47f 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[480 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[481 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[482 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[483 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[484 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[485 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[486 01-12 22:56:37.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[487 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[488 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[489 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[48a 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[48b 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[48c 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[48d 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[48e 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[48f 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[490 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[491 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[492 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[493 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[494 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[495 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[496 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[497 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[498 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[499 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[49a 01-12 22:56:38.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[49b 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[49c 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[49d 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[49e 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[49f 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[4a0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4a1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[4a2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4a3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[4a4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4a5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4a6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4a7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4a8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4a9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[4aa 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4ab 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[4ac 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4ad 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[4ae 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4af 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[4b0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4b1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[4b2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4b3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[4b4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4b5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4b6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4b7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4b8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4b9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4ba 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4bb 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[4bc 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[4bd 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[4be 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[4bf 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[4c0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4c1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[4c2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4c3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[4c4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[4c5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[4c6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[4c7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[4c8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[4c9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[4ca 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[4cb 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[4cc 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4cd 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[4ce 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[4cf 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[4d0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[4d1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[4d2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4d3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[4d4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[4d5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[4d6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[4d7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[4d8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[4d9 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[4da 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4db 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[4dc 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4dd 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[4de 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4df 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[4e0 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[4e1 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[4e2 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[4e3 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[4e4 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[4e5 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[4e6 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[4e7 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[4e8 01-12 22:56:38.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[4e9 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[4ea 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[4eb 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[4ec 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +[4ed 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[4ee 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1515797798021079289 evaluation starts +[4ef 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 signed by 0 principal evaluation starts (used [false]) +[4f0 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +[4f1 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +-----END CERTIFICATE----- +[4f2 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[4f3 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[4f4 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal matched by identity 0 +[4f5 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 36 b3 b1 96 80 14 0f dd 43 da 67 36 c9 60 a8 |E6.......C.g6.`.| +00000010 9c 36 6d 44 2f 42 9d ea 31 4b 84 a2 5c 7b c9 44 |.6mD/B..1K..\{.D| +[4f6 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9f 5b b3 92 38 90 64 31 a5 58 2e |0E.!..[..8.d1.X.| +00000010 1a b5 5a 27 e7 21 f4 8a 58 5c ac 5f d9 56 4e 5d |..Z'.!..X\._.VN]| +00000020 a1 51 78 fe e4 02 20 0c 47 a0 82 40 76 1a 05 e7 |.Qx... .G..@v...| +00000030 c2 8d b6 c7 15 59 74 1d a4 49 0d e8 5c 86 8a b4 |.....Yt..I..\...| +00000040 e7 a4 a6 5f 6e 98 10 |..._n..| +[4f7 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026020 principal evaluation succeeds for identity 0 +[4f8 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026020 gate 1515797798021079289 evaluation succeeds +[4f9 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420397fa0 1 [0xc42017c700]})]} +[4fa 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[4fb 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[4fc 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[4fd 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[4fe 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A6FAE4D20522...41646D696E7310021A0641646D696E73 +[4ff 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: D2C8C8A7D1B6FA0B17209741E3DA480B62B7DE2CFBDB23E4A197C07487970372 +[500 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[501 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[502 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[503 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[504 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[505 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[506 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[507 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[508 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[509 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[50a 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[50b 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[50c 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[50d 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[50e 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[50f 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[510 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[511 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[512 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[513 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[514 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[515 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[516 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[517 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[518 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[519 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[51a 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[51b 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[51c 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[51d 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[51e 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[51f 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[520 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[521 01-12 22:56:38.02 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[522 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[523 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[524 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[525 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[526 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[527 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[528 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[529 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[52a 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[52b 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[52c 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[52d 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[52e 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[52f 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[530 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[531 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[532 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[533 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[534 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[535 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[536 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[537 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[538 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[539 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[53a 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[53b 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[53c 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[53e 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[53f 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[540 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[541 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy ChannelCreationPolicy for Application +[542 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[543 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[544 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[545 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[546 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[547 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[548 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[549 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[54b 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[54c 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[53d 01-12 22:56:38.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Rejecting deliver because channel businesschannel not found +[54d 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[54e 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[54f 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[551 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[552 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[553 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[554 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[555 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[556 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[557 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[558 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[559 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[55a 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[55b 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[55c 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[55d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[55e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[55f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[560 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[561 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[562 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[563 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[564 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[565 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[566 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[567 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[568 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[569 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[56a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[56b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[56c 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[56d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[56e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[56f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[570 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[571 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[572 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[573 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[574 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[575 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[576 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[577 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[578 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[579 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[57a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[57b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[57c 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[57d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[57e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[57f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[580 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[581 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[582 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[583 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[584 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[585 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[586 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[587 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[588 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[589 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[58a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[58b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[58c 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[58d 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[58e 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[58f 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[590 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[591 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[592 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[593 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[594 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[595 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[596 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +[597 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[598 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[599 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[59a 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[59b 01-12 22:56:38.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[59c 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[59d 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[59e 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[59f 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[5a0 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[5a1 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[5a2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[5a3 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[5a4 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in /Application/Readers +[5a5 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in /Application/Writers +[5a6 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[5a7 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[5a8 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.NewChannelConfig.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in /Application/Admins +[5a9 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[5aa 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[5ab 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[5ac 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[5ad 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[5ae 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[5af 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[5b0 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[5b1 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[5b2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[5b3 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[5b4 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[5b5 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[5b6 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[5b7 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200263b8 gate 1515797798063909763 evaluation starts +[5b8 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 signed by 0 principal evaluation starts (used [false]) +[5b9 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[5ba 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[5bb 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[5bc 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 principal matched by identity 0 +[5bd 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +[5be 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +00000040 88 95 6d d3 74 2c 02 |..m.t,.| +[550 01-12 22:56:38.04 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[54a 01-12 22:56:38.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[5c0 01-12 22:56:38.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[5c1 01-12 22:56:38.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[5c2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[5c3 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[5bf 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200263b8 principal evaluation succeeds for identity 0 +[5c4 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200263b8 gate 1515797798063909763 evaluation succeeds +[5c5 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5c6 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5c7 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5c8 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5c9 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5ca 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5cb 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5cc 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5cd 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5ce 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5cf 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d0 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d1 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d2 01-12 22:56:38.06 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d3 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[5d4 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d5 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5d6 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5d7 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5d8 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[5d9 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[5da 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[5db 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[5dc 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[5dd 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[5de 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[5df 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[5e0 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[5e1 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[5e2 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[5e3 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[5e4 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[5e5 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5e6 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5e7 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[5e8 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5e9 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5ea 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5eb 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[5ec 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[5ed 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[5ee 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5ef 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5f0 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[5f1 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5f2 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[5f3 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5f4 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[5f5 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[5f6 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[5f7 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[5f8 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[5f9 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[5fa 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[5fb 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[5fc 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[5fd 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[5fe 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[5ff 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[600 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[601 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[602 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[603 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[604 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[605 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[606 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[607 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[608 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[609 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[60a 01-12 22:56:38.07 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[60b 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[60c 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[60d 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[60e 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[60f 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[610 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[611 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[612 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[613 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[614 01-12 22:56:38.08 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[615 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[616 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[617 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[618 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[619 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[61a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[61b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[61c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[61d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[61e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[61f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[620 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[621 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[622 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[623 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[624 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[625 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[626 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[627 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[628 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[629 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[62a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[62b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[62c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[62d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[62e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[62f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[630 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[631 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[632 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[633 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[634 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[635 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[636 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[637 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[638 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[639 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[63a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[63b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[63c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[63d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[63e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[63f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[640 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[641 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[642 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[643 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[644 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[645 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[646 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[647 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[648 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[649 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[64a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[64b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[64c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[64d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[64e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[64f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[650 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy ChannelCreationPolicy for evaluation +[651 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797798107378318 evaluation starts +[652 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 signed by 0 principal evaluation starts (used [false]) +[653 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[654 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[655 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[656 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal matched by identity 0 +[657 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 9a a7 ff 6a d0 b9 97 62 06 f5 93 b3 9e 1b ea 05 |...j...b........| +00000010 ae 34 c8 35 13 36 04 7a 8b a1 82 36 c1 d8 13 de |.4.5.6.z...6....| +[658 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8c 13 83 57 9f 65 61 c2 bd 0b bf |0E.!....W.ea....| +00000010 d5 93 48 66 f1 df bc 8b 0f 13 4a bc 63 f8 a9 10 |..Hf......J.c...| +00000020 60 2d fe 59 4b 02 20 6a 4e 5a 50 a0 47 d6 78 04 |`-.YK. jNZP.G.x.| +00000030 53 70 6b a1 b1 19 64 51 b5 b1 78 3f df d1 85 d6 |Spk...dQ..x?....| +00000040 88 95 6d d3 74 2c 02 |..m.t,.| +[659 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42017cf28 principal evaluation succeeds for identity 0 +[65a 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42017cf28 gate 1515797798107378318 evaluation succeeds +[65b 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[65c 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[65d 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[65e 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[65f 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[660 01-12 22:56:38.10 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[661 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[662 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[663 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[664 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[665 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[666 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[667 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[668 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[669 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[66a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[66b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[66c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[66d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[66e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[66f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[670 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[671 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[672 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[673 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[674 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[675 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[676 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[677 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[678 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[679 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[67a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[67b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[67c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[67d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[67e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[67f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[680 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[681 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[682 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[683 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[684 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[685 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[686 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[687 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[688 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[689 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[68a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[68b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[68c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[68d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[68e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[68f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[690 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[691 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[692 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[693 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[694 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[695 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[696 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[697 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[698 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[699 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[69a 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[69b 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[69c 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[69d 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[69e 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[69f 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[6a0 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[6a1 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[6a2 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[6a3 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[6a4 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[6a5 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6a6 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[6a7 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[6a8 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[6a9 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[6aa 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[6ab 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[6ac 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[6ad 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6ae 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[6af 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[6b0 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[6b1 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[6b2 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[6b3 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[6b4 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[6b5 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6b6 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[6b7 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6b8 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[6b9 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6ba 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[6bb 01-12 22:56:38.11 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6bc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6bd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6be 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6bf 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6c0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[6c1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6c2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[6c3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6c4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[6c5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6c6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[6c7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6c8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[6c9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6ca 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[6cb 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6cc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6cd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6ce 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6cf 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6d0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6d1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[6d2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[6d3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[6d4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[6d5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[6d6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[6d7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6d8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[6d9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[6da 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[6db 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6dc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[6dd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6de 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[6df 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[6e0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[6e1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[6e2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[6e3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6e4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[6e5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6e6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[6e7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[6e8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[6e9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[6ea 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[6eb 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[6ec 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[6ed 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[6ee 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[6ef 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[6f0 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[6f1 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6f2 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[6f3 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6f4 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[6f5 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6f6 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[6f7 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[6f8 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[6f9 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[6fa 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[6fb 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[6fc 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[6fd 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[6fe 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[6ff 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[700 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[701 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[702 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.authorize.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[703 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[704 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[705 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[706 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[707 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[708 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[709 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[70a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[70b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[70c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[70d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[70e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[70f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[710 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[711 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[712 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[713 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[714 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[715 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[716 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[717 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[718 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[719 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[71a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[71b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[71c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[71d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[71e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[71f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[720 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[721 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[722 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[723 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[724 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[725 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[726 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[727 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[728 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[729 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[72a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[72b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[72c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[72d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[72e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[72f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[730 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[731 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[732 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[733 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[734 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[735 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[736 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[737 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[738 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[739 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[73a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[73b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[73c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[73d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[73e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[73f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[740 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[741 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[742 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[743 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[744 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[745 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[746 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[747 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[748 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[749 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[74a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[74b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[74c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[74d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[74e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[74f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[750 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[751 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[752 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[753 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[754 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[755 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[756 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[757 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[758 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[759 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[75a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[75b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[75c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[75d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[75e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[75f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[760 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[761 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[762 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[763 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[764 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[765 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[766 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[767 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[768 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[769 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[76a 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[76b 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[76c 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[76d 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[76e 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[76f 01-12 22:56:38.12 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[770 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[771 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[772 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[773 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[774 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[775 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[776 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[777 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[778 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[779 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[77a 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[77b 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[77c 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[77d 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[77e 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[77f 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[780 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[781 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[782 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[783 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[784 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[785 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[786 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[787 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[788 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[789 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[78a 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[78b 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[78c 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[78d 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[78e 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[78f 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[790 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[791 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[792 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[793 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[794 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[795 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[796 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[797 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[798 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[799 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[79a 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[79b 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[79c 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[79d 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[79e 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[79f 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[7a0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[7a1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[7a2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[7a3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[7a4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[7a5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[7a6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[7a7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[7a8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[7a9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[7aa 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[7ab 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[7ac 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[7ad 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[7ae 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[7af 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[7b0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[7b1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[7b2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[7b3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[7b4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[7b5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[7b6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[7b7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[7b8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[7b9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[7ba 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[7bb 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[7bc 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[7bd 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[7be 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[7bf 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[7c0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.authorizeAndInspect.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[7c1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +[7c2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[7c3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[7c4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9074], Going to peek [8] bytes +[7c5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9072], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[7c6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[7c7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[7c8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[7c9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[7ca 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[7cb 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[7cc 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[7cd 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[7ce 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[7cf 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[7d0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[7d1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[7d2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[7d3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[7d4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[7d5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[7d6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[7d7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[7d8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[7d9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[7da 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[7db 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[7dc 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[7dd 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[7de 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[7df 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[7e0 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[7e1 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[7e2 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[7e3 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[7e4 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[7e5 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[7e6 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[7e7 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[7e8 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[7e9 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[7ea 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[7eb 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[7ec 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[7ed 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[7ee 01-12 22:56:38.13 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[7ef 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[7f0 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[7f1 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[7f2 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[7f3 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[7f4 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[7f5 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[7f6 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[7f7 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[7f8 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[7f9 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[7fa 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[7fb 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[7fc 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[7fd 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[7fe 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[7ff 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[800 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[801 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[802 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[803 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[804 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[805 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[806 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[807 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[808 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[809 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[80a 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[80b 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[80c 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[80d 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[80e 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[80f 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[810 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[811 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[812 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[813 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[814 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[815 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[816 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[817 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[818 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[819 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[81a 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[81b 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[81c 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[81d 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[81e 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[81f 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[820 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[821 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[822 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[823 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[824 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[825 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[826 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[827 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[828 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[829 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[82a 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[82b 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[82c 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[82d 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[82e 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[82f 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[830 01-12 22:56:38.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[831 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[832 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[833 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[834 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[835 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[836 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[837 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[838 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[839 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[83a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[83b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[83c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[83d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[83e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[83f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[840 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[841 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[842 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[843 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[844 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[845 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[846 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[847 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[848 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[849 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[84a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[84b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[84c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[84d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[84e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[84f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[850 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[851 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[852 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[853 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[854 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[855 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[856 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[857 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[858 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[859 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[85a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[85b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[85c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[85d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[85e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[85f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[860 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[861 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[862 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[863 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[864 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[865 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[866 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[867 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[868 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[869 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[86a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[86b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[86c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[86d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[86e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[86f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[870 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[871 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[872 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[873 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[874 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[875 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[876 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[877 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[878 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[879 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[87a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[87b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[87c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[87d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[87e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[87f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[880 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[881 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[882 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[883 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.newChain.newLedgerResources.NewManagerImpl.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[884 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[885 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +[886 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +[887 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +[888 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[889 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[88a 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[88b 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[88c 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[88d 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[88e 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42017b160)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[88f 01-12 22:56:38.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[890 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +txId= locPointer=offset=38, bytesLength=11883 +] +[891 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11926], isChainEmpty=[false], lastBlockNumber=[0] +[892 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[893 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[894 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11926], Going to peek [8] bytes +[895 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Commit.newChain.newChainSupport.GetBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11924], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[896 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain.newChainSupport -> DEBU [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +[897 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.Commit.newChain -> INFO Created and starting new chain businesschannel +[898 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42080ee40 chain:0xc42080f300 cutter:0xc420811720 filters:0xc42080eea0 signer:0x128b4a8 lastConfig:0 lastConfigSeq:0} +[899 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[89a 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[89b 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[89c 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[89d 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[89e 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...D11DFA43757CF5E5EC344628383D6110 +[89f 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 518472013E1241C4D53E06DBA6280CC8808767CECD76866B1041CD6421893EFF +[8a0 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[8a1 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8a2 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +[8a3 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[8a4 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8a5 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...D11DFA43757CF5E5EC344628383D6110 +[8a6 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 51BB7D10EC392DA3FF6956AC3F3D2F0C48B6C017C33C41868C1DCC9733FBF584 +[8a7 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xf5, 0xa1, 0x43, 0x1d, 0x4a, 0xa, 0x12, 0x77, 0x5b, 0x91, 0x7f, 0x23, 0x64, 0xf4, 0x99, 0x4a, 0x24, 0x34, 0xaa, 0xf5, 0x65, 0x92, 0x22, 0x72, 0xfa, 0xeb, 0xdb, 0x71, 0x82, 0x6a, 0x4d, 0xed} txOffsets= +txId= locPointer=offset=70, bytesLength=12784 +] +[8a8 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23675], isChainEmpty=[false], lastBlockNumber=[1] +[8a9 01-12 22:56:38.16 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: testchainid] Wrote block 1 +[8aa 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[8ab 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cae8 gate 1515797798268296319 evaluation starts +[8ac 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 signed by 0 principal evaluation starts (used [false]) +[8ad 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8ae 01-12 22:56:38.26 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[8af 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[8b0 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cae8 principal evaluation fails +[8b1 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cae8 gate 1515797798268296319 evaluation fails +[8b2 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017caf8 gate 1515797798271294319 evaluation starts +[8b3 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 signed by 0 principal evaluation starts (used [false]) +[8b4 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8b5 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[8b6 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[8b7 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[8b8 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 principal matched by identity 0 +[8b9 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 d1 ca 90 85 9e 34 0f bf 61 56 b9 09 b2 b5 8c 8f |.....4..aV......| +00000010 87 dd ae d3 a0 1e 6e 0b e9 bd 00 75 80 05 9c 54 |......n....u...T| +[8ba 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 57 c1 ca 53 e0 d0 cd 6f 62 91 a2 e9 |0D. W..S...ob...| +00000010 6c 16 20 33 26 96 22 78 d6 55 62 c9 0f 8a ae 86 |l. 3&."x.Ub.....| +00000020 5c 6c ca 54 02 20 3e dd 13 8a 49 4c 2f 91 c6 28 |\l.T. >...IL/..(| +00000030 13 6e 55 d6 06 59 c8 73 ba 68 d2 d7 e4 8c 5d b5 |.nU..Y.s.h....].| +00000040 bf 33 87 c0 40 02 |.3..@.| +[8bb 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017caf8 principal evaluation succeeds for identity 0 +[8bc 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017caf8 gate 1515797798271294319 evaluation succeeds +[8bd 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420aee640 1 [0xc42017c4e8]}) %!s(*policies.implicitMetaPolicy=&{0xc420aeff00 1 [0xc42017c720 0xc42017c9c8]})]} +[8be 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420887b80) start: > stop: > +[8bf 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[8c0 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[8c1 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11926], Going to peek [8] bytes +[8c2 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11924], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[8c3 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420887b80) +[8c4 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420887b80), waiting for new SeekInfo +[8c5 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[8c6 01-12 22:56:38.27 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[8c7 01-12 22:56:38.27 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[8c8 01-12 22:56:39.50 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[8c9 01-12 22:56:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[8ca 01-12 22:56:39.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[8cb 01-12 22:56:39.51 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[8cc 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[8cd 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +[8ce 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +[8cf 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[8d0 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[8d1 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[8d2 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[8d3 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[8d4 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[8d5 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[8d6 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[8d7 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[8d8 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[8d9 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[8da 01-12 22:56:39.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[8db 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[8dc 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[8dd 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[8de 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[8df 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cda0 gate 1515797799521244031 evaluation starts +[8e0 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 signed by 0 principal evaluation starts (used [false]) +[8e1 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[8e2 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[8e3 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[8e4 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 principal matched by identity 0 +[8e5 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +[8e6 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +00000040 80 21 fd 56 14 8f |.!.V..| +[8e7 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cda0 principal evaluation succeeds for identity 0 +[8e8 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cda0 gate 1515797799521244031 evaluation succeeds +[8e9 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8ea 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8eb 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8ec 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[8ed 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8ee 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8ef 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8f0 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[8f1 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[8f2 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[8f3 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8f4 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8f5 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8f6 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8f7 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8f8 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8f9 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[8fa 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[8fb 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[8fc 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[8fd 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[8fe 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[8ff 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[900 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[901 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[902 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[903 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[904 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[905 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[906 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[907 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[908 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[909 01-12 22:56:39.52 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[90a 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[90b 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[90c 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[90d 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[90e 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[90f 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[910 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[911 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[912 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[913 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[914 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[915 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[916 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[917 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[918 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[919 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[91a 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[91b 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[91c 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[91d 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[91e 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[91f 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[920 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[921 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[922 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[923 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[924 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[925 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[926 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[927 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[928 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[929 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[92a 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[92b 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[92c 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[92d 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[92e 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[92f 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[930 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[931 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[932 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[933 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[934 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[935 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[936 01-12 22:56:39.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[937 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[938 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[939 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[93a 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[93b 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[93c 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[93d 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[93e 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[93f 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[940 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[941 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[942 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[943 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[944 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[945 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[946 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[947 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A7FAE4D20522...F6697CBA4AAD120D3832202CE96294DC +[948 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 65DAE87FAC1A749F8CA8148A37A982A40562C0FCF5C0F044E9B2E7E5F00AF5BC +[949 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +[94a 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[94b 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017d170 gate 1515797799546570962 evaluation starts +[94c 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 signed by 0 principal evaluation starts (used [false]) +[94d 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +[94e 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +-----END CERTIFICATE----- +[94f 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[950 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[951 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 principal matched by identity 0 +[952 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 65 da e8 7f ac 1a 74 9f 8c a8 14 8a 37 a9 82 a4 |e.....t.....7...| +00000010 05 62 c0 fc f5 c0 f0 44 e9 b2 e7 e5 f0 0a f5 bc |.b.....D........| +[953 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 89 8d ff 98 a6 f2 5d a9 a4 07 36 |0E.!.......]...6| +00000010 94 a1 8c e0 df 8d 25 12 b2 94 0d 61 11 1e 9d 04 |......%....a....| +00000020 71 13 d9 de 2b 02 20 26 5f a1 28 bd 0a 82 6c 19 |q...+. &_.(...l.| +00000030 f6 d4 39 3c cc a5 72 7b 47 18 91 01 ed 0d 25 b8 |..9<..r{G.....%.| +00000040 bc 5f ef 86 3d 01 cf |._..=..| +[954 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017d170 principal evaluation succeeds for identity 0 +[955 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017d170 gate 1515797799546570962 evaluation succeeds +[956 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420aee740 1 [0xc42017c510]}) %!s(*policies.implicitMetaPolicy=&{0xc420aefe00 1 [0xc42017c818 0xc42017c920]})]} +[957 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[958 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[959 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[95a 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[95b 01-12 22:56:39.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[95c 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[95d 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[95e 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[95f 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[960 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[961 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[962 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[963 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[964 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[965 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[966 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[967 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017d750 gate 1515797799552095498 evaluation starts +[968 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 signed by 0 principal evaluation starts (used [false]) +[969 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[96a 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[96b 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[96c 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 principal matched by identity 0 +[96d 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +[96e 01-12 22:56:39.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +00000040 80 21 fd 56 14 8f |.!.V..| +[96f 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017d750 principal evaluation succeeds for identity 0 +[970 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017d750 gate 1515797799552095498 evaluation succeeds +[971 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[972 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[973 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[974 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[975 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[976 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[977 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[978 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[979 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[97a 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[97b 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[97c 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[97d 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[97e 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[97f 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[980 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[981 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[982 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[983 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[984 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[985 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[986 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[987 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[988 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[989 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[98a 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[98b 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[98c 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[98d 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[98e 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[98f 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[990 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[991 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[992 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[993 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[994 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[995 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[996 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[997 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[998 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[999 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[99a 01-12 22:56:39.56 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[99b 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[99c 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[99d 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[99e 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[99f 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9a0 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[9a1 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[9a2 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[9a3 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[9a4 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[9a5 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[9a6 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[9a7 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[9a8 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[9a9 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[9aa 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[9ab 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[9ac 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[9ad 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[9ae 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[9af 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[9b0 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[9b1 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[9b2 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[9b3 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[9b4 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[9b5 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[9b6 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[9b7 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[9b8 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[9b9 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[9ba 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[9bb 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[9bc 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[9bd 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[9be 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[9bf 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[9c0 01-12 22:56:39.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[9c1 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[9c2 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[9c3 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[9c4 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[9c5 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[9c6 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[9c7 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[9c8 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[9c9 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[9ca 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[9cb 01-12 22:56:39.58 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 +[9cc 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[9cd 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797799584878198 evaluation starts +[9ce 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) +[9cf 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +[9d0 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +-----END CERTIFICATE----- +[9d1 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[9d2 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[9d3 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal matched by identity 0 +[9d4 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 65 da e8 7f ac 1a 74 9f 8c a8 14 8a 37 a9 82 a4 |e.....t.....7...| +00000010 05 62 c0 fc f5 c0 f0 44 e9 b2 e7 e5 f0 0a f5 bc |.b.....D........| +[9d5 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 89 8d ff 98 a6 f2 5d a9 a4 07 36 |0E.!.......]...6| +00000010 94 a1 8c e0 df 8d 25 12 b2 94 0d 61 11 1e 9d 04 |......%....a....| +00000020 71 13 d9 de 2b 02 20 26 5f a1 28 bd 0a 82 6c 19 |q...+. &_.(...l.| +00000030 f6 d4 39 3c cc a5 72 7b 47 18 91 01 ed 0d 25 b8 |..9<..r{G.....%.| +00000040 bc 5f ef 86 3d 01 cf |._..=..| +[9d6 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation succeeds for identity 0 +[9d7 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797799584878198 evaluation succeeds +[9d8 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420aee740 1 [0xc42017c510]}) %!s(*policies.implicitMetaPolicy=&{0xc420aefe00 1 [0xc42017c818 0xc42017c920]})]} +[9d9 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[9da 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[9db 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[9dc 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[9dd 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[9de 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[9df 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[9e0 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[9e1 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[9e2 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[9e3 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[9e4 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[9e5 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[9e6 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[9e7 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[9e8 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[9e9 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026630 gate 1515797799588823525 evaluation starts +[9ea 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 signed by 0 principal evaluation starts (used [false]) +[9eb 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[9ec 01-12 22:56:39.58 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[9ed 01-12 22:56:39.59 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[9ee 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[9ef 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[9f1 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 principal matched by identity 0 +[9f2 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +[9f3 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +00000040 80 21 fd 56 14 8f |.!.V..| +[9f4 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026630 principal evaluation succeeds for identity 0 +[9f5 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026630 gate 1515797799588823525 evaluation succeeds +[9f0 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[9f7 01-12 22:56:39.59 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9f6 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[9f8 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[9f9 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[9fa 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[9fb 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[9fc 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[9fd 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[9fe 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[9ff 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[a00 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[a01 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a02 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a03 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a04 01-12 22:56:39.59 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a05 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a06 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a07 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a08 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a09 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a0a 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[a0b 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[a0c 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[a0d 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[a0e 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[a0f 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[a10 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[a11 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[a12 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[a13 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[a14 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[a15 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[a16 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[a17 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a18 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a19 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[a1a 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[a1b 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a1c 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a1d 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[a1e 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[a1f 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[a20 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a21 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a22 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[a23 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[a24 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a25 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a26 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[a27 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[a28 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[a29 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[a2a 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[a2b 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[a2c 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[a2d 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[a2e 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[a2f 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[a30 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[a31 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[a32 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[a33 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[a34 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[a35 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[a36 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[a37 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[a38 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[a39 01-12 22:56:39.60 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[a3a 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[a3b 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[a3c 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[a3d 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[a3e 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[a3f 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[a40 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[a41 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[a42 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[a43 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[a44 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[a45 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[a46 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[a47 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[a48 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[a49 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[a4a 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[a4b 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[a4c 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[a4d 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[a4e 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[a4f 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[a50 01-12 22:56:39.61 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[a51 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +[a52 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] +[a53 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[a54 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[11926], Going to peek [8] bytes +[a55 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11924], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[a56 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[a57 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[a58 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[a59 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[a5a 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[a5b 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[a5c 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[a5d 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[a5e 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[a5f 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[a60 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[a61 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[a62 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[a63 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[a64 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[a65 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[a66 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[a67 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[a68 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[a69 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[a6a 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[a6b 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[a6c 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[a6d 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[a6e 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[a6f 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[a70 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[a71 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[a72 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[a73 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[a74 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[a75 01-12 22:56:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[a76 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[a77 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[a78 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[a79 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[a7a 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[a7b 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[a7c 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[a7d 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[a7e 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[a7f 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[a80 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[a81 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[a82 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[a83 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[a84 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[a85 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[a86 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[a87 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[a88 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[a89 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[a8a 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[a8b 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c940 gate 1515797799635437406 evaluation starts +[a8c 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 signed by 0 principal evaluation starts (used [false]) +[a8d 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[a8e 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[a8f 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[a90 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 principal matched by identity 0 +[a91 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 cf 6a 77 25 a2 5e f4 db 01 38 91 7a e6 19 6d ee |.jw%.^...8.z..m.| +00000010 8c 8d 52 ac 04 24 d4 85 f4 53 92 e1 d2 dc 0e d9 |..R..$...S......| +[a92 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7f e3 5d 57 44 c4 4e ee 34 99 89 ae |0D. ..]WD.N.4...| +00000010 ab b6 48 ae 4c fb 41 4e ae c4 a1 97 66 e2 0b 27 |..H.L.AN....f..'| +00000020 42 30 eb 31 02 20 21 0e eb 88 f6 60 a8 5e 5f e6 |B0.1. !....`.^_.| +00000030 f0 6d a1 e8 39 a0 8b ca 14 a7 d1 8c a9 de 11 f2 |.m..9...........| +00000040 80 21 fd 56 14 8f |.!.V..| +[a93 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c940 principal evaluation succeeds for identity 0 +[a94 01-12 22:56:39.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c940 gate 1515797799635437406 evaluation succeeds +[a95 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a96 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a97 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a98 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[a99 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[a9a 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[a9b 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[a9c 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[a9d 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[a9e 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[a9f 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[aa0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[aa1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[aa2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[aa3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[aa4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[aa5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[aa6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[aa7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[aa8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[aa9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[aaa 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[aab 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[aac 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[aad 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[aae 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[aaf 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[ab0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[ab1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[ab2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[ab3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[ab4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[ab5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[ab6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[ab7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[ab8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[ab9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[aba 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[abb 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[abc 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[abd 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[abe 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[abf 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[ac0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[ac1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[ac2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[ac3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[ac4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ac5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ac6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[ac7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[ac8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ac9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[aca 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[acb 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[acc 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[acd 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ace 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[acf 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[ad0 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[ad1 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ad2 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ad3 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[ad4 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[ad5 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[ad6 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[ad7 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[ad8 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[ad9 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[ada 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[adb 01-12 22:56:39.64 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[adc 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[add 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[ade 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[adf 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[ae0 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[ae1 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[ae2 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[ae3 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[ae4 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[ae5 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[ae6 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[ae7 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[ae8 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[ae9 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[aea 01-12 22:56:39.65 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[aeb 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[aec 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[aed 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[aee 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[aef 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[af0 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[af1 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[af2 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[af3 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[af4 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[af5 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[af6 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[af7 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[af8 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[af9 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[afa 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[afb 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[afc 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[afd 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[afe 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[aff 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b00 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[b01 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b02 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[b03 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b04 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[b05 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b06 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b07 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b08 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b09 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b0a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b0b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[b0c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[b0d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b0e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[b0f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b10 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[b11 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b12 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[b13 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[b14 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[b15 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[b16 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[b17 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[b18 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[b19 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[b1a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[b1b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[b1c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[b1d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[b1e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[b1f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b20 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[b21 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[b22 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[b23 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[b24 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[b25 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[b26 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[b27 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[b28 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[b29 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b2a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[b2b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b2c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[b2d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b2e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[b2f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b30 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[b31 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[b32 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[b33 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[b34 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[b35 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[b36 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[b37 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[b38 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[b39 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[b3a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[b3b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[b3c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[b3d 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:0 lastConfigSeq:1} +[b3e 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[b3f 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[b40 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b41 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[b42 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b43 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...3C430D9C0B181A5D657348A7F8683A8A +[b44 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: BF5A24880359122A4534C9144E39B842D56EC7D5FC6ED4BCD39477F02DF4AB4C +[b45 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +[b46 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[b47 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b48 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +[b49 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[b4a 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[b4b 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...3C430D9C0B181A5D657348A7F8683A8A +[b4c 01-12 22:56:39.66 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: F44817E4FB8BBBC0CB1D57258EDED75E7F7C16439EBDB8365D4AA4389741E762 +[b4d 01-12 22:56:39.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +txId= locPointer=offset=70, bytesLength=11906 +] +[b4e 01-12 22:56:39.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25653], isChainEmpty=[false], lastBlockNumber=[1] +[b4f 01-12 22:56:39.67 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 1 +[b50 01-12 22:56:41.75 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[b51 01-12 22:56:41.75 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[b52 01-12 22:56:41.75 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[b53 01-12 22:56:41.76 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[b54 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[b55 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Preprocessing CONFIG_UPDATE +[b56 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/orderer/configupdate] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process -> DEBU Processing channel reconfiguration request for channel businesschannel +[b57 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[b58 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[b59 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[b5a 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[b5b 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[b5c 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[b5d 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[b5e 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[b5f 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[b60 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[b61 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[b62 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[b63 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[b64 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[b65 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[b66 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[b67 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a0 gate 1515797801768627877 evaluation starts +[b68 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 signed by 0 principal evaluation starts (used [false]) +[b69 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[b6a 01-12 22:56:41.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[b6b 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[b6c 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 principal matched by identity 0 +[b6d 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +[b6e 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +00000040 2e 5c 5c ed e8 4b |.\\..K| +[b6f 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc4200262a0 principal evaluation succeeds for identity 0 +[b70 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc4200262a0 gate 1515797801768627877 evaluation succeeds +[b71 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b72 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b73 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b74 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[b75 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b76 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b77 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b78 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b79 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b7a 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b7b 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[b7c 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[b7d 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[b7e 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b7f 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b80 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b81 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b82 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b83 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b84 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig -> DEBU Beginning new config for channel businesschannel +[b85 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[b86 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[b87 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[b88 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[b89 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[b8a 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[b8b 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[b8c 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[b8d 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[b8e 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[b8f 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[b90 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[b91 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[b92 01-12 22:56:41.77 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[b93 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[b94 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[b95 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[b96 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[b97 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[b98 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[b99 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[b9a 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[b9b 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[b9c 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[b9d 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[b9e 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[b9f 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ba0 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[ba1 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[ba2 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[ba3 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[ba4 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[ba5 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[ba6 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[ba7 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[ba8 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[ba9 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[baa 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[bab 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[bac 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[bad 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[bae 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[baf 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[bb0 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[bb1 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[bb2 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[bb3 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[bb4 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[bb5 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[bb6 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[bb7 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[bb8 01-12 22:56:41.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[bb9 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[bba 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[bbb 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[bbc 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[bbd 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[bbe 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[bbf 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[bc0 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[bc1 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[bc2 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[bc3 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[bc4 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[bc5 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[bc6 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[bc7 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[bc8 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[bc9 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[bca 01-12 22:56:41.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[bcb 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[bcc 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[bcd 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[bce 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[bcf 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608A9FAE4D20522...B58958F67DD3719BF0253B0DD550A384 +[bd0 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Process.Process.existingChannelConfig.CreateSignedEnvelope.Sign.Sign -> DEBU Sign: digest: 08BAE8EF1533085E86E400A8ECA81A1C4AD34B405CC57B2E5796C364B95B5F6A +[bd1 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type CONFIG +[bd2 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[bd3 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026680 gate 1515797801802065050 evaluation starts +[bd4 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 signed by 0 principal evaluation starts (used [false]) +[bd5 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +[bd6 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +-----END CERTIFICATE----- +[bd7 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[bd8 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[bd9 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 principal matched by identity 0 +[bda 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 08 ba e8 ef 15 33 08 5e 86 e4 00 a8 ec a8 1a 1c |.....3.^........| +00000010 4a d3 4b 40 5c c5 7b 2e 57 96 c3 64 b9 5b 5f 6a |J.K@\.{.W..d.[_j| +[bdb 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 15 9d e7 70 26 67 c6 c9 80 0d |0E.!.....p&g....| +00000010 7b 45 78 51 53 28 80 ed 2a 1a b1 34 73 6d 3a c7 |{ExQS(..*..4sm:.| +00000020 9a af 31 d8 bd 02 20 2b 04 41 b2 fe 08 20 1d 17 |..1... +.A... ..| +00000030 69 36 13 09 e0 56 45 ca 7e 20 c0 3a 4c 55 46 fa |i6...VE.~ .:LUF.| +00000040 ab 1e 07 31 a2 ef 7f |...1...| +[bdc 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026680 principal evaluation succeeds for identity 0 +[bdd 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026680 gate 1515797801802065050 evaluation succeeds +[bde 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420339180 1 [0xc42017cae0]}) %!s(*policies.implicitMetaPolicy=&{0xc420339e40 1 [0xc42017cb80 0xc42017cbf8]})]} +[bdf 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[be0 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[be1 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[be2 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[be3 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[be4 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[be5 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[be6 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[be7 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[be8 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[be9 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[bea 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[beb 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[bec 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[bed 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[bee 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[bef 01-12 22:56:41.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026070 gate 1515797801809956702 evaluation starts +[bf0 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 signed by 0 principal evaluation starts (used [false]) +[bf1 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[bf2 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[bf3 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[bf4 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 principal matched by identity 0 +[bf5 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +[bf6 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +00000040 2e 5c 5c ed e8 4b |.\\..K| +[bf7 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc420026070 principal evaluation succeeds for identity 0 +[bf8 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc420026070 gate 1515797801809956702 evaluation succeeds +[bf9 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[bfa 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[bfb 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[bfc 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[bfd 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[bfe 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[bff 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c00 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c01 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c02 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c03 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[c04 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[c05 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[c06 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c07 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c08 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c09 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c0a 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c0b 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c0c 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[c0d 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[c0e 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[c0f 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[c10 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[c11 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[c12 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[c13 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[c14 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[c15 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[c16 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[c17 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[c18 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[c19 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[c1a 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[c1b 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[c1c 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[c1d 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[c1e 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[c1f 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c20 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c21 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[c22 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[c23 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[c24 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[c25 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[c26 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[c27 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[c28 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c29 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c2a 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[c2b 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[c2c 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c2d 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c2e 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[c2f 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[c30 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[c31 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c32 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c33 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[c34 01-12 22:56:41.81 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[c35 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[c36 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c37 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[c38 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[c39 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[c3a 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[c3b 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c3c 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[c3d 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[c3e 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[c3f 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[c40 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[c41 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[c42 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[c43 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c44 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[c45 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[c46 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[c47 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[c48 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[c49 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[c4a 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/common/config] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[c4b 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c4c 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[c4d 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[c4e 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[c4f 01-12 22:56:41.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[c50 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[c51 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[c52 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[c53 01-12 22:56:41.83 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 +[c54 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[c55 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c020 gate 1515797801831635757 evaluation starts +[c56 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 signed by 0 principal evaluation starts (used [false]) +[c57 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749515578786c643252387573496e6b53315273736e51697a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f54457a4e546b774f466f58445449334d5449794e7a457a4e546b774f466f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414154417a4e46366a59674b70364c4a3744784356702f4a2b666b73515843307a4e504c496c744d42752f416d5a2b567742767a0a562b77707a496e656b764f785247616f55447057636b3663644f564971593739492f436c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344326e616f424e4e547575554578497a4174532b305a77357a54513951570a334d69497074644d52782f496554414b42676771686b6a4f5051514441674e494144424641694541366f474c4546584a76336c2f4a6877532b31582f6d316f490a75414c5944664471626e515046395a393647414349446e4c575456506141476257514850565063624a6a756967504a785876706158436c464c674e4a4e564a310a2d2d2d2d2d454e44202d2d2d2d2d0a +[c58 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz +V+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW +3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI +uALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1 +-----END CERTIFICATE----- +[c59 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[c5a 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity +[c5b 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 principal matched by identity 0 +[c5c 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 08 ba e8 ef 15 33 08 5e 86 e4 00 a8 ec a8 1a 1c |.....3.^........| +00000010 4a d3 4b 40 5c c5 7b 2e 57 96 c3 64 b9 5b 5f 6a |J.K@\.{.W..d.[_j| +[c5d 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 15 9d e7 70 26 67 c6 c9 80 0d |0E.!.....p&g....| +00000010 7b 45 78 51 53 28 80 ed 2a 1a b1 34 73 6d 3a c7 |{ExQS(..*..4sm:.| +00000020 9a af 31 d8 bd 02 20 2b 04 41 b2 fe 08 20 1d 17 |..1... +.A... ..| +00000030 69 36 13 09 e0 56 45 ca 7e 20 c0 3a 4c 55 46 fa |i6...VE.~ .:LUF.| +00000040 ab 1e 07 31 a2 ef 7f |...1...| +[c5e 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c020 principal evaluation succeeds for identity 0 +[c5f 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c020 gate 1515797801831635757 evaluation succeeds +[c60 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420339180 1 [0xc42017cae0]}) %!s(*policies.implicitMetaPolicy=&{0xc420339e40 1 [0xc42017cb80 0xc42017cbf8]})]} +[c61 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[c62 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[c63 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[c64 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[c65 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[c66 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[c67 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[c68 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[c69 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[c6a 01-12 22:56:41.83 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[c6b 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[c6c 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[c6d 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[c6e 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[c6f 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[c71 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[c73 01-12 22:56:41.84 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[c70 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[c74 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cfc8 gate 1515797801845954295 evaluation starts +[c75 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 signed by 0 principal evaluation starts (used [false]) +[c72 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[c76 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[c77 01-12 22:56:41.84 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[c78 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[c79 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[c7a 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 principal matched by identity 0 +[c7b 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +[c7c 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +00000040 2e 5c 5c ed e8 4b |.\\..K| +[c7d 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017cfc8 principal evaluation succeeds for identity 0 +[c7e 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Validate.Validate.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017cfc8 gate 1515797801845954295 evaluation succeeds +[c7f 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c80 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c81 01-12 22:56:41.84 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c82 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[c83 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c84 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c85 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c86 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c87 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c88 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c89 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[c8a 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[c8b 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[c8c 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c8d 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c8e 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c8f 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c90 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c91 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c92 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/configtx] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[c93 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[c94 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[c95 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[c96 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[c97 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[c98 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[c99 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[c9a 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[c9b 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[c9c 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[c9d 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[c9e 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[c9f 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[ca0 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[ca1 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[ca2 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[ca3 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[ca4 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[ca5 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[ca6 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ca7 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[ca8 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[ca9 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[caa 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[cab 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[cac 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[cad 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[cae 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[caf 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cb0 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[cb1 01-12 22:56:41.85 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[cb2 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cb3 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cb4 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[cb5 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[cb6 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[cb7 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cb8 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cb9 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[cba 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[cbb 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[cbc 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cbd 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[cbe 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[cbf 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[cc0 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[cc1 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[cc2 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[cc3 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[cc4 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[cc5 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[cc6 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[cc7 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[cc8 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[cc9 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[cca 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[ccb 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[ccc 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[ccd 01-12 22:56:41.86 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[cce 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[ccf 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[cd0 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/config] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[cd1 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[cd2 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[cd3 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[cd4 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[cd5 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[cd6 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[cd7 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[cd8 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Validate.Validate.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[cd9 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Found message which requested to be isolated, cutting into its own batch +[cda 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[cdb 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +[cdc 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13727], Going to peek [8] bytes +[cdd 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +[cde 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[cdf 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[ce0 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[ce1 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[ce2 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[ce3 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[ce4 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[ce5 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[ce6 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[ce7 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[ce8 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[ce9 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[cea 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[ceb 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[cec 01-12 22:56:41.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[ced 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[cee 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[cef 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[cf0 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[cf1 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[cf2 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[cf3 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[cf4 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[cf5 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[cf6 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[cf7 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[cf8 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[cf9 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[cfa 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[cfb 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[cfc 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[cfd 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[cfe 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[cff 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[d00 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[d01 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[d02 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[d03 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[d04 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[d05 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[d06 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[d07 01-12 22:56:41.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[d08 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[d09 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[d0a 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[d0b 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[d0c 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[d0d 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[d0e 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[d0f 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[d10 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[d11 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[d12 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[d13 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.policyForItem.GetPolicy -> DEBU Returning policy Admins for evaluation +[d14 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c608 gate 1515797801895017051 evaluation starts +[d15 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 signed by 0 principal evaluation starts (used [false]) +[d16 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[d17 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[d18 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[d19 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 principal matched by identity 0 +[d1a 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ae 23 97 f1 6d 2b da 9c 66 c8 54 6c d3 0f 21 35 |.#..m+..f.Tl..!5| +00000010 9f a7 06 ca b9 6f ee 32 56 7a 6b a3 45 8f cf 5f |.....o.2Vzk.E.._| +[d1b 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 64 31 56 18 df 6e 64 d9 64 d0 90 82 |0D. d1V..nd.d...| +00000010 79 fc 7e 17 f2 fd 42 7c 65 2a fd 75 52 5a c4 ff |y.~...B|e*.uRZ..| +00000020 b2 31 2c 71 02 20 30 82 61 e4 04 dc 14 56 d6 af |.1,q. 0.a....V..| +00000030 0f ff e2 06 82 96 d5 b3 dc ea 36 3e 05 e2 07 f5 |..........6>....| +00000040 2e 5c 5c ed e8 4b |.\\..K| +[d1c 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1.func2 -> DEBU 0xc42017c608 principal evaluation succeeds for identity 0 +[d1d 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteBlock.Commit.Apply.Apply.prepareApply.authorizeUpdate.verifyDeltaSet.Evaluate.func1 -> DEBU 0xc42017c608 gate 1515797801895017051 evaluation succeeds +[d1e 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d1f 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d20 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d21 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[d22 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[d23 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[d24 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d25 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d26 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d27 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d28 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d29 01-12 22:56:41.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d2a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[d2b 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d2c 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d2d 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d2e 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[d2f 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[d30 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[d31 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[d32 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[d33 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[d34 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[d35 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[d36 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[d37 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Channel +[d38 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Channel +[d39 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Channel +[d3a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[d3b 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[d3c 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[d3d 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[d3e 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[d3f 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[d40 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy BlockValidation for Orderer +[d41 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Orderer +[d42 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Orderer +[d43 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Orderer +[d44 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d45 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d46 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for OrdererOrg +[d47 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for OrdererOrg +[d48 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for OrdererOrg +[d49 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[d4a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Application +[d4b 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Application +[d4c 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Application +[d4d 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d4e 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d4f 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[d50 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d51 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d52 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d53 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org2MSP +[d54 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org2MSP +[d55 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org2MSP +[d56 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d57 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d58 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[d59 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[d5a 01-12 22:56:41.90 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[d5b 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[d5c 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Writers for Org1MSP +[d5d 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Admins for Org1MSP +[d5e 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.ProposePolicy -> DEBU Proposed new policy Readers for Org1MSP +[d5f 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[d60 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d61 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance OrdererMSP +[d62 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAPHanhstgs0x6LMeTk4iO28wCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDhaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARreLxR4R0VSdF5V2uwE9siIe8p +mTq0mHsIRDEYUY66ItbWCLmwo7wo/qxL+UZWFr0u/u2W2zf3m7RAsUsk78Mjo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW3MiIptdMRx/IeTAK +BggqhkjOPQQDAgNIADBFAiEA3gqPtJ1I5gSx2BhgQ63a1Gz/psng/OPH+MKx3qfn +iyECIGOy9IM3MTf1yD+Euw3gTVFRiy8BkQClDc01kTAwfSWS +-----END CERTIFICATE----- +[d63 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[d64 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQWc2g2QVsPKHH5oMSx4jbMDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEkRuSNKclN9CyqZxG+lgDF2I/0kTeBxfKdcH7EBmXPJ2J3XlX8WGq +8Wj00pfsGQ2LtMZJKP7ztkXBgZOseczKOaNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9p2qATTU7rlBMSMwLUvtGcOc00PUFtzI +iKbXTEcfyHkwCgYIKoZIzj0EAwIDRwAwRAIgHnRtEG8c7DgEV+JZz0IRDeoAFClg +FqXcdKp0XzH4v/UCIAh7qdX/M8vtBWNbigjYkDaVLm+hLSERPvEqw/NPEZIl +-----END CERTIFICATE----- +[d65 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[d66 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[d67 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[d68 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d69 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org2MSP +[d6a 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAPaAD1HMc9i93cwzxG8xRfMwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BLw5B8gZ6XSl2xt5W+89AZgzhEEVFYFh4CZ388azodi4yNr8B5bu4JTL5j8FnSHm +S7WnvBZt611sTnH3c5IW10OjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIA1uMKrBIdLX+Mi8Dxz1 +UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIDm6mV7XPsRAcwcE +qCwr3hb9Wdi1R35jXzORlI6e7s5jAiAeMgrVN/j3S9k41k5wiV3Sr7g8sx3ySJh3 +RTCauNNt1A== +-----END CERTIFICATE----- +[d6b 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[d6c 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== +-----END CERTIFICATE----- +[d6d 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity +[d6e 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[d6f 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/common/config] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[d70 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance +[d71 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup -> DEBU Setting up MSP instance Org1MSP +[d72 01-12 22:56:41.91 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQXNUfbZA7yLudaGOnKbLKsjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDdaFw0yNzEyMjcxMzU5MDda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +PwNM/jykuErJdoPmQ9pXsg0RGEWRF+VwuBXts3ou2WjN8sdEj8MOSN/33yvj+FKd +V9LDWhr16nJ6Vmb3hjDkxaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg8m12d0CL5fUhSVVsJaqk +wfd7UBE5JpzbSNxRj77pvQ4wCgYIKoZIzj0EAwIDRwAwRAIgdbtpDy9ukhM0RFVt +l1I24skGUfaxq7rfAaLVXWVblVMCIGxMW/CAnGAN6bna8+tOL4BRpkFUtuc1l4/Y +ymzPpM2K +-----END CERTIFICATE----- +[d73 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[d74 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[d75 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP.ProposeMSP.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity +[d76 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU Setting up the MSP manager (3 msps) +[d77 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.Commit.Apply.Apply.prepareApply.processConfig.preCommit.PreCommit.PreCommit.Setup -> DEBU MSP manager setup complete, setup 3 msps +[d78 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[d79 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Admins to Orderer +[d7a 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[d7b 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Readers to Orderer +[d7c 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[d7d 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy OrdererOrg/Writers to Orderer +[d7e 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[d7f 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[d80 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[d81 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[d82 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[d83 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Readers to Application +[d84 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[d85 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Writers to Application +[d86 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[d87 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org1MSP/Admins to Application +[d88 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[d89 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Readers to Application +[d8a 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[d8b 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Writers to Application +[d8c 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[d8d 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals -> DEBU In commit adding relative sub-policy Org2MSP/Admins to Application +[d8e 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[d8f 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[d90 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[d91 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[d92 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[d93 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit...commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[d94 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[d95 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Readers to Channel +[d96 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[d97 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Writers to Channel +[d98 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[d99 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/Admins to Channel +[d9a 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Admins for evaluation +[d9b 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +[d9c 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Readers for evaluation +[d9d 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +[d9e 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy OrdererOrg/Writers for evaluation +[d9f 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +[da0 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy BlockValidation for evaluation +[da1 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Orderer/BlockValidation to Channel +[da2 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Admins for evaluation +[da3 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +[da4 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Readers for evaluation +[da5 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +[da6 01-12 22:56:41.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Admins for evaluation +[da7 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +[da8 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Admins for evaluation +[da9 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Admins to Channel +[daa 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[dab 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Writers to Channel +[dac 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Writers for evaluation +[dad 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +[dae 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org2MSP/Writers for evaluation +[daf 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +[db0 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[db1 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Readers to Channel +[db2 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Org1MSP/Readers for evaluation +[db3 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +[db4 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[db5 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Admins for evaluation +[db6 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[db7 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Readers for evaluation +[db8 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[db9 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.initialize.GetPolicy -> DEBU Returning policy Writers for evaluation +[dba 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Readers for evaluation +[dbb 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Readers' +[dbc 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Writers for evaluation +[dbd 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Writers' +[dbe 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Readers for evaluation +[dbf 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[dc0 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Writers for evaluation +[dc1 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[dc2 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Application/Admins for evaluation +[dc3 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[dc4 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals.GetPolicy -> DEBU Returning policy Orderer/BlockValidation for evaluation +[dc5 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteBlock.Commit.Apply.Apply.commit.commit.CommitProposals -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[dc6 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:1 lastConfigSeq:2} +[dc7 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[dc8 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[dc9 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[dca 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[dcb 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[dcc 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...8DE3C765068E7C18EC5465E981104700 +[dcd 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 35DFE80A100C517F8E59F3A5D12B543FB4D1D16D7D126F3A61EC6D9EEAB7E209 +[dce 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +[dcf 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[dd0 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[dd1 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[dd2 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[dd3 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[dd4 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...8DE3C765068E7C18EC5465E981104700 +[dd5 01-12 22:56:41.93 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 7FCC78B07B9A73C7F7214FED8D35F23211BE1F171940C520D0CC2BE13306D9AA +[dd6 01-12 22:56:42.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= +txId= locPointer=offset=70, bytesLength=11963 +] +[dd7 01-12 22:56:42.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39435], isChainEmpty=[false], lastBlockNumber=[2] +[dd8 01-12 22:56:42.07 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 2 +[dd9 01-12 22:56:44.62 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[dda 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[ddb 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[ddc 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[ddd 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797804627001475 evaluation starts +[dde 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 signed by 0 principal evaluation starts (used [false]) +[ddf 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414b357470314d636d416a39717542613834624d69313477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142476b4578542b39774646704b353272336e5737735a6955796a6733687855750a4c374959583339476e6c2b54314d784a7235525050426a364c4931466a526b5a386d466473384d6f77654777624c76744678744a7554756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d4555434951434b624567650a7263536831376b2f316b74674a30524e736a705764797650722b702f37417a74592f744d6b4149675669485847452f37315a3638636c4a3962756c61393948690a42627765694e62794a543978325553492f32593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[de0 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +BbweiNbyJT9x2USI/2Y= +-----END CERTIFICATE----- +[de1 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[de2 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation fails +[de3 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1515797804627001475 evaluation fails +[de4 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026058 gate 1515797804628269341 evaluation starts +[de5 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 signed by 0 principal evaluation starts (used [false]) +[de6 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414b357470314d636d416a39717542613834624d69313477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142476b4578542b39774646704b353272336e5737735a6955796a6733687855750a4c374959583339476e6c2b54314d784a7235525050426a364c4931466a526b5a386d466473384d6f77654777624c76744678744a7554756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d4555434951434b624567650a7263536831376b2f316b74674a30524e736a705764797650722b702f37417a74592f744d6b4149675669485847452f37315a3638636c4a3962756c61393948690a42627765694e62794a543978325553492f32593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[de7 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +BbweiNbyJT9x2USI/2Y= +-----END CERTIFICATE----- +[de8 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[de9 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026058 principal evaluation fails +[dea 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026058 gate 1515797804628269341 evaluation fails +[deb 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026078 gate 1515797804629360095 evaluation starts +[dec 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 signed by 0 principal evaluation starts (used [false]) +[ded 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414b357470314d636d416a39717542613834624d69313477436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142476b4578542b39774646704b353272336e5737735a6955796a6733687855750a4c374959583339476e6c2b54314d784a7235525050426a364c4931466a526b5a386d466473384d6f77654777624c76744678744a7554756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d4555434951434b624567650a7263536831376b2f316b74674a30524e736a705764797650722b702f37417a74592f744d6b4149675669485847452f37315a3638636c4a3962756c61393948690a42627765694e62794a543978325553492f32593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[dee 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +BbweiNbyJT9x2USI/2Y= +-----END CERTIFICATE----- +[def 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[df0 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[df1 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 principal matched by identity 0 +[df2 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 66 47 df 3e 0a e3 dd 55 7c 94 03 02 84 c5 1c 52 |fG.>...U|......R| +00000010 2a da b9 c9 24 0b 55 3f ee 40 4d 9f 1e 74 29 3e |*...$.U?.@M..t)>| +[df3 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 96 cf b4 81 29 27 c7 29 41 20 96 |0E.!.....)'.)A .| +00000010 df c6 63 fc 54 7d e6 73 57 c3 9a ab 95 8e 68 47 |..c.T}.sW.....hG| +00000020 d0 2b 7b 0b d9 02 20 3b 29 42 a2 57 5f e6 e9 e9 |.+{... ;)B.W_...| +00000030 4e 54 31 07 ae 8f ac 0c 0f 6a 71 ea 0e fa b0 a5 |NT1......jq.....| +00000040 d1 7d a6 97 3f be 11 |.}..?..| +[df4 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026078 principal evaluation succeeds for identity 0 +[df5 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026078 gate 1515797804629360095 evaluation succeeds +[df6 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e4860 1 [0xc42017c8d8]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5760 1 [0xc42017c9f0 0xc42017ccb8]})]} +[df7 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420343d80) start: > stop: > +[df8 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[df9 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +[dfa 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27509], Going to peek [8] bytes +[dfb 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +[dfc 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +[dfd 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[dfe 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +[dff 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +[e00 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +[e01 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +[e02 01-12 22:56:45.02 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e03 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[e04 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[e05 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[e06 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e0 gate 1515797805022430062 evaluation starts +[e07 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 signed by 0 principal evaluation starts (used [false]) +[e08 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b67417749424167495162384a6e6771797a6c51774a554867514545537a4c6a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741456b76304458585a74474171577431647855476a584d65653538666b6d6d524f710a65386c4279557449526558615569787433545073497766766b695346684d376f4174563858567038724237324272726d6e504543614b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414f5048353330340a596852635534466e7961457145516e2b422f6e2b48676939496168654c3935536b357a444169414243536d546363755535516a4954507641394f72594670434f0a6f61475a54643154326b664779382f4172673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e09 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -PjNMGC1fMR/dFfg4xQ== +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +oaGZTd1T2kfGy8/Arg== -----END CERTIFICATE----- -[df6 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[df7 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[df8 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal matched by identity 0 -[df9 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 27 ce 2e 41 fd a8 71 62 63 9c 54 33 2b 18 03 |.'..A..qbc.T3+..| -00000010 0a 75 71 c6 54 91 75 c1 64 91 d7 55 12 06 59 8e |.uq.T.u.d..U..Y.| -[dfa 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ef 64 69 a0 b7 eb 1e 9b a1 73 b3 |0E.!..di......s.| -00000010 4f a4 2f f1 e8 2f e3 63 91 bd 2c 6b 0f 33 b4 b3 |O./../.c..,k.3..| -00000020 72 ea b1 dd 83 02 20 17 7d fd 87 70 79 32 f5 e5 |r..... .}..py2..| -00000030 05 7a 2f d2 c5 56 8d 0f d4 0f ef 8e 5b 42 68 79 |.z/..V......[Bhy| -00000040 bc 15 32 53 e3 8a 51 |..2S..Q| -[dfb 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026028 principal evaluation succeeds for identity 0 -[dfc 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026028 gate 1513666061149971000 evaluation succeeds -[dfd 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[dfe 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4202aa700) start: > stop: > -[dff 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -[e00 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -[e01 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27525], Going to peek [8] bytes -[e02 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -[e03 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -[e04 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[e05 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -[e06 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -[e07 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -[e08 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -[e09 12-19 06:47:41.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[e0a 12-19 06:47:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[e0b 12-19 06:47:41.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[e0c 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[e0d 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a08 gate 1513666061465044800 evaluation starts -[e0e 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 signed by 0 principal evaluation starts (used [false]) -[e0f 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e4b744164454a5a464f566646662f6f4245505a696777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c724e4b2f37344f63696c714c31327133577338753333517455384a7a6b310a736c304a4575647848504370445162645a576566755969674e6e4e6f2b4633646e2f4e3859374a707a53545352354d7633636b304855696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514450324357430a4447654f764367325655343345524d43394c2b5546787a42326a6b52447a49716d6a4a3167414967623568525a39474e524256362f6d474930465157662b34450a4a39377177656f344746646364354a694f32733d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e10 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -J97qweo4GFdcd5JiO2s= +[e0a 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[e0b 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e0 principal evaluation fails +[e0c 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e0 gate 1515797805022430062 evaluation fails +[e0d 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f0 gate 1515797805025662645 evaluation starts +[e0e 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 signed by 0 principal evaluation starts (used [false]) +[e0f 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b67417749424167495162384a6e6771797a6c51774a554867514545537a4c6a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741456b76304458585a74474171577431647855476a584d65653538666b6d6d524f710a65386c4279557449526558615569787433545073497766766b695346684d376f4174563858567038724237324272726d6e504543614b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414f5048353330340a596852635534466e7961457145516e2b422f6e2b48676939496168654c3935536b357a444169414243536d546363755535516a4954507641394f72594670434f0a6f61475a54643154326b664779382f4172673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e10 01-12 22:56:45.02 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQb8JngqyzlQwJUHgQEESzLjAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkv0DXXZtGAqWt1dxUGjXMee58fkmmROq +e8lByUtIReXaUixt3TPsIwfvkiSFhM7oAtV8XVp8rB72BrrmnPECaKNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAOPH5304 +YhRcU4FnyaEqEQn+B/n+Hgi9IaheL95Sk5zDAiABCSmTccuU5QjITPvA9OrYFpCO +oaGZTd1T2kfGy8/Arg== -----END CERTIFICATE----- -[e11 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[e12 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a08 principal evaluation fails -[e13 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a08 gate 1513666061465044800 evaluation fails -[e14 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a18 gate 1513666061465881300 evaluation starts -[e15 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 signed by 0 principal evaluation starts (used [false]) -[e16 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e4b744164454a5a464f566646662f6f4245505a696777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424c724e4b2f37344f63696c714c31327133577338753333517455384a7a6b310a736c304a4575647848504370445162645a576566755969674e6e4e6f2b4633646e2f4e3859374a707a53545352354d7633636b304855696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514450324357430a4447654f764367325655343345524d43394c2b5546787a42326a6b52447a49716d6a4a3167414967623568525a39474e524256362f6d474930465157662b34450a4a39377177656f344746646364354a694f32733d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e17 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANKtAdEJZFOVfFf/oBEPZigwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABLrNK/74OcilqL12q3Ws8u33QtU8Jzk1 -sl0JEudxHPCpDQbdZWefuYigNnNo+F3dn/N8Y7JpzSTSR5Mv3ck0HUijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDP2CWC -DGeOvCg2VU43ERMC9L+UFxzB2jkRDzIqmjJ1gAIgb5hRZ9GNRBV6/mGI0FQWf+4E -J97qweo4GFdcd5JiO2s= +[e11 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[e12 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[e13 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 principal matched by identity 0 +[e14 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7f 44 69 bf 66 c8 b4 e2 ee 34 57 f2 9e 90 be 38 |.Di.f....4W....8| +00000010 99 2b 27 24 86 f7 91 84 66 f8 4b 80 d1 bf 02 95 |.+'$....f.K.....| +[e15 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 14 15 54 2f 8d 1f bd 36 77 9f 85 0e |0D. ..T/...6w...| +00000010 e2 56 a4 18 1b 13 a0 70 b4 3b a5 41 7a f3 d1 7c |.V.....p.;.Az..|| +00000020 33 3b 85 ed 02 20 25 54 00 40 e7 29 79 94 02 e0 |3;... %T.@.)y...| +00000030 8c cb 88 06 9b 30 db 34 88 5e 35 55 3d b5 a9 b5 |.....0.4.^5U=...| +00000040 59 1a 4d 59 f1 16 |Y.MY..| +[e16 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f0 principal evaluation succeeds for identity 0 +[e17 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f0 gate 1515797805025662645 evaluation succeeds +[e18 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e4860 1 [0xc42017c8d8]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5760 1 [0xc42017c9f0 0xc42017ccb8]})]} +[e19 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4202fa4a0) start: > stop: > +[e1a 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[e1b 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +[e1c 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27509], Going to peek [8] bytes +[e1d 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +[e1e 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202fa4a0) +[e1f 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[e20 01-12 22:56:45.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +[e21 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +[e22 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +[e23 01-12 22:56:45.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202fa4a0) +[e24 01-12 22:56:45.18 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e25 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop +[e26 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message +[e27 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation +[e28 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026150 gate 1515797805182522675 evaluation starts +[e29 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 signed by 0 principal evaluation starts (used [false]) +[e2a 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951466e626749425538777867493345702f7144676e7044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d533576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457a6d6533395465643962516b5a51534d4d3241344f686b6a55422b347a7836320a2b67486776554e72544d586568464b7344567a55354769654e733573726f59564273517243376a38464f70646833477a6643373139364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414d646c6d7947450a4f4c337672566874636433532f365759526c646179513745534d59726e586a6e5653757341694132736a54316d5a72544b4958497a4c307a3565626b415743410a4557774e414b726e54653761734d515335773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e2b 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 ++gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +EWwNAKrnTe7asMQS5w== -----END CERTIFICATE----- -[e18 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[e19 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[e1a 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 principal matched by identity 0 -[e1b 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 ca 3f 52 26 1d b8 ad b0 3e 15 b0 3e 48 dc 0b ab |.?R&....>..>H...| -00000010 3e d7 e3 3b e5 26 57 9e d0 ee 48 d7 e1 92 96 0c |>..;.&W...H.....| -[e1c 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb 35 5a 6e d7 41 95 dc f1 e5 d7 |0E.!..5Zn.A.....| -00000010 ff dd 89 7b 2b f5 d7 54 ad be d0 2e 14 15 dd 8f |...{+..T........| -00000020 0c a2 a3 94 a2 02 20 7b 01 50 81 eb 2a c4 cc 19 |...... {.P..*...| -00000030 9e f3 40 22 39 5d 3b ec 07 ba dd 95 ac 3a bf 68 |..@"9];......:.h| -00000040 d6 a9 c5 70 02 b7 37 |...p..7| -[e1d 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a18 principal evaluation succeeds for identity 0 -[e1e 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a18 gate 1513666061465881300 evaluation succeeds -[e1f 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[e20 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42017ef40) start: > stop: > -[e21 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -[e22 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -[e23 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27525], Going to peek [8] bytes -[e24 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -[e25 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -[e26 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[e27 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -[e28 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -[e29 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -[e2a 12-19 06:47:41.46 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -[e2b 12-19 06:47:41.61 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[e2c 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[e2d 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[e2e 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[e2f 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b0 gate 1513666061617334200 evaluation starts -[e30 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) -[e31 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b6873664a7174763942366f6e6345536a4e6f2b6e4577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142502b4b31505a6155324f2f482b347a7a6c54384554596170556c4b3455414a0a376d59495157545a752b734e6e2b526539497a374e2f3339305634565661593731656b78435955644975364d6c544e4d5556623548712b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413063414d45514349477445657466360a6d485755714e2f78484e6558703751335143554b4161544a3764485371504d626442664241694256627a3176434d61357873323769793334765a5465423541470a6b734d543346444b5a5a354378714c6d52413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e32 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -ksMT3FDKZZ5CxqLmRA== +[e2c 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[e2d 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026150 principal evaluation fails +[e2e 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026150 gate 1515797805182522675 evaluation fails +[e2f 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1515797805184772750 evaluation starts +[e30 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 signed by 0 principal evaluation starts (used [false]) +[e31 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341622b674177494241674951466e626749425538777867493345702f7144676e7044414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b784d7a55354d446861467730794e7a45794d6a63784d7a55354d4468610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d533576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741457a6d6533395465643962516b5a51534d4d3241344f686b6a55422b347a7836320a2b67486776554e72544d586568464b7344567a55354769654e733573726f59564273517243376a38464f70646833477a6643373139364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674457347771734568307466340a794c7750485056544e6769347532494e343246523165364478464a4d656d3877436759494b6f5a497a6a3045417749445341417752514968414d646c6d7947450a4f4c337672566874636433532f365759526c646179513745534d59726e586a6e5653757341694132736a54316d5a72544b4958497a4c307a3565626b415743410a4557774e414b726e54653761734d515335773d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e32 01-12 22:56:45.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQFnbgIBU8wxgI3Ep/qDgnpDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkxMzU5MDhaFw0yNzEyMjcxMzU5MDha +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzme39Ted9bQkZQSMM2A4OhkjUB+4zx62 ++gHgvUNrTMXehFKsDVzU5GieNs5sroYVBsQrC7j8FOpdh3GzfC7196NNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgDW4wqsEh0tf4 +yLwPHPVTNgi4u2IN42FR1e6DxFJMem8wCgYIKoZIzj0EAwIDSAAwRQIhAMdlmyGE +OL3vrVhtcd3S/6WYRldayQ7ESMYrnXjnVSusAiA2sjT1mZrTKIXIzL0z5ebkAWCA +EWwNAKrnTe7asMQS5w== -----END CERTIFICATE----- -[e33 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[e34 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260b0 principal evaluation fails -[e35 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260b0 gate 1513666061617334200 evaluation fails -[e36 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513666061619528000 evaluation starts -[e37 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 signed by 0 principal evaluation starts (used [false]) -[e38 12-19 06:47:41.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b6873664a7174763942366f6e6345536a4e6f2b6e4577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142502b4b31505a6155324f2f482b347a7a6c54384554596170556c4b3455414a0a376d59495157545a752b734e6e2b526539497a374e2f3339305634565661593731656b78435955644975364d6c544e4d5556623548712b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413063414d45514349477445657466360a6d485755714e2f78484e6558703751335143554b4161544a3764485371504d626442664241694256627a3176434d61357873323769793334765a5465423541470a6b734d543346444b5a5a354378714c6d52413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e39 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKhsfJqtv9B6oncESjNo+nEwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABP+K1PZaU2O/H+4zzlT8ETYapUlK4UAJ -7mYIQWTZu+sNn+Re9Iz7N/390V4VVaY71ekxCYUdIu6MlTNMUVb5Hq+jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0cAMEQCIGtEetf6 -mHWUqN/xHNeXp7Q3QCUKAaTJ7dHSqPMbdBfBAiBVbz1vCMa5xs27iy34vZTeB5AG -ksMT3FDKZZ5CxqLmRA== ------END CERTIFICATE----- -[e3a 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[e3b 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[e3c 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 principal matched by identity 0 -[e3d 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c0 ef 03 88 fc b7 f1 9e 23 3e 70 91 e1 0d f3 36 |........#>p....6| -00000010 27 b2 5c 90 32 4c f7 bd 3a fd 60 b8 0c 50 6b 85 |'.\.2L..:.`..Pk.| -[e3e 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 84 7b 1e be f0 85 d0 16 ee 7d 2b |0D. x.{.......}+| -00000010 41 95 5d 8c db d2 ac d8 ee 9c ce e0 4f bc 89 dd |A.].........O...| -00000020 b0 ad 52 5d 02 20 75 c9 7d bb de 45 b8 bb 95 88 |..R]. u.}..E....| -00000030 bf 76 60 fd 55 e5 fe 86 c9 e2 fb 9d 2f 47 00 a2 |.v`.U......./G..| -00000040 9d e2 0d f4 55 c8 |....U.| -[e3f 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d0 principal evaluation succeeds for identity 0 -[e40 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d0 gate 1513666061619528000 evaluation succeeds -[e41 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[e42 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420a7ab80) start: > stop: > -[e43 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -[e44 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -[e45 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27525], Going to peek [8] bytes -[e46 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -[e47 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a7ab80) -[e48 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[e49 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -[e4a 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -[e4b 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -[e4c 12-19 06:47:41.62 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a7ab80) -[e4d 12-19 06:47:42.66 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[e4e 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[e4f 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[e50 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[e51 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026220 gate 1513666079426040100 evaluation starts -[e52 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 signed by 0 principal evaluation starts (used [false]) -[e53 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e54 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[e33 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[e34 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[e35 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 principal matched by identity 0 +[e36 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 73 c2 67 fe 1a 4f 83 94 23 ed 02 41 5c 0e 7b fa |s.g..O..#..A\.{.| +00000010 8a c6 d3 35 de 7c 40 35 c2 f8 f3 e7 ac bb 72 f7 |...5.|@5......r.| +[e37 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b9 7d 81 2f 2d 87 05 f5 8c b4 af |0E.!..}./-......| +00000010 e1 63 69 41 51 90 86 2f 69 26 4e e1 6b f0 12 a4 |.ciAQ../i&N.k...| +00000020 e0 f1 51 29 38 02 20 3f df f3 69 f1 7a ce 8d 45 |..Q)8. ?..i.z..E| +00000030 bd dc ea 99 d7 76 5e 45 12 1a 4f b7 83 b7 d2 c0 |.....v^E..O.....| +00000040 02 6d 37 dc 49 dc 71 |.m7.I.q| +[e38 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 principal evaluation succeeds for identity 0 +[e39 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1515797805184772750 evaluation succeeds +[e3a 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e4860 1 [0xc42017c8d8]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5760 1 [0xc42017c9f0 0xc42017ccb8]})]} +[e3b 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc42090d900) start: > stop: > +[e3c 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] +[e3d 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11926] +[e3e 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27509], Going to peek [8] bytes +[e3f 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13725], placementInfo={fileNum=[0], startOffset=[11926], bytesOffset=[11928]} +[e40 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +[e41 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[e42 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +[e43 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +[e44 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +[e45 01-12 22:56:45.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +[e46 01-12 22:56:46.30 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[e47 01-12 22:56:46.30 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[e48 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[e49 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[e4a 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261c0 gate 1515797823128365663 evaluation starts +[e4b 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 signed by 0 principal evaluation starts (used [false]) +[e4c 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e4d 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[e55 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[e56 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026220 principal evaluation fails -[e57 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026220 gate 1513666079426040100 evaluation fails -[e58 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026230 gate 1513666079427004000 evaluation starts -[e59 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 signed by 0 principal evaluation starts (used [false]) -[e5a 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e5b 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[e4e 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[e4f 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261c0 principal evaluation fails +[e50 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261c0 gate 1515797823128365663 evaluation fails +[e51 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261d0 gate 1515797823131003044 evaluation starts +[e52 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 signed by 0 principal evaluation starts (used [false]) +[e53 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e54 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[e5c 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[e5d 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[e5e 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 principal matched by identity 0 -[e5f 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 80 17 9f 6f 2d e6 ab 01 97 5b 05 fc 5b 15 e6 |....o-....[..[..| -00000010 8b 03 89 07 11 8b 74 7b 5b a7 56 84 11 c6 5a c1 |......t{[.V...Z.| -[e60 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 65 d6 2a 89 07 41 4c c9 66 7c 4f |0D. Te.*..AL.f|O| -00000010 7b 90 b6 e9 ed be 07 48 cc 15 b7 32 11 df 79 30 |{......H...2..y0| -00000020 4c 3a 4f 8c 02 20 19 53 6e 33 d8 93 4b 17 3f f1 |L:O.. .Sn3..K.?.| -00000030 54 e5 a3 75 3c e3 4c 28 e0 50 76 ed cf d2 98 a0 |T..u<.L(.Pv.....| -00000040 18 71 0a ec 4f f6 |.q..O.| -[e61 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026230 principal evaluation succeeds for identity 0 -[e62 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026230 gate 1513666079427004000 evaluation succeeds -[e63 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[e64 12-19 06:47:59.42 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 -[e65 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[e66 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513666079429669800 evaluation starts -[e67 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 signed by 0 principal evaluation starts (used [false]) -[e68 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e69 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[e55 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[e56 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261d0 principal evaluation fails +[e57 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261d0 gate 1515797823131003044 evaluation fails +[e58 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1515797823133065712 evaluation starts +[e59 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 signed by 0 principal evaluation starts (used [false]) +[e5a 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e5b 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[e6a 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[e6b 12-19 06:47:59.43 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[e6c 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[e6d 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal evaluation fails -[e6e 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1513666079429669800 evaluation fails -[e6f 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513666079432401000 evaluation starts -[e70 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 signed by 0 principal evaluation starts (used [false]) -[e71 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[e72 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[e5c 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[e5d 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[e5e 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal matched by identity 0 +[e5f 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b 12 ac ab 3a 65 5c df e5 13 2b 8b ce e3 80 38 |k...:e\...+....8| +00000010 d9 1f 03 f0 e3 0a 38 a4 e5 dd 35 54 de 44 51 c0 |......8...5T.DQ.| +[e60 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 95 0c 2b 23 ad d6 d0 cc 5c a2 23 |0D. ...+#....\.#| +00000010 e2 97 39 f6 ae e1 2a 23 4d 0c 29 fe 4f 2b 5d 3f |..9...*#M.).O+]?| +00000020 d1 63 ea fd 02 20 1b c5 b4 c7 27 3b 0a c2 fc 8b |.c... ....';....| +00000030 54 09 34 ad f2 ed 20 c1 4f 3f 80 2a 22 cc a6 b1 |T.4... .O?.*"...| +00000040 ff f4 7f a4 86 45 |.....E| +[e61 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal evaluation succeeds for identity 0 +[e62 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1515797823133065712 evaluation succeeds +[e63 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[e65 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[e66 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdc0 gate 1515797823137063012 evaluation starts +[e64 01-12 22:57:03.13 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 +[e67 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 signed by 0 principal evaluation starts (used [false]) +[e68 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e69 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[e73 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[e74 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[e75 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal matched by identity 0 -[e76 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 be 80 17 9f 6f 2d e6 ab 01 97 5b 05 fc 5b 15 e6 |....o-....[..[..| -00000010 8b 03 89 07 11 8b 74 7b 5b a7 56 84 11 c6 5a c1 |......t{[.V...Z.| -[e77 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 54 65 d6 2a 89 07 41 4c c9 66 7c 4f |0D. Te.*..AL.f|O| -00000010 7b 90 b6 e9 ed be 07 48 cc 15 b7 32 11 df 79 30 |{......H...2..y0| -00000020 4c 3a 4f 8c 02 20 19 53 6e 33 d8 93 4b 17 3f f1 |L:O.. .Sn3..K.?.| -00000030 54 e5 a3 75 3c e3 4c 28 e0 50 76 ed cf d2 98 a0 |T..u<.L(.Pv.....| -00000040 18 71 0a ec 4f f6 |.q..O.| -[e78 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026258 principal evaluation succeeds for identity 0 -[e79 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026258 gate 1513666079432401000 evaluation succeeds -[e7a 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[e7b 12-19 06:47:59.43 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[e7c 12-19 06:47:59.54 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[e7d 12-19 06:47:59.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[e7e 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[e7f 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[e80 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -[e81 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13791], Going to peek [8] bytes -[e82 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -[e83 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -[e84 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[e85 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[e86 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e87 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[e88 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e89 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...A3C8103C7B8A79783523C6DC445E7D04 -[e8a 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 750F654325F3706CF48DA8AEDF34A0CD72FCAA3AE8CE3E3003A42F07003648E6 -[e8b 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[e8c 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e8d 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[e8e 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[e8f 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[e90 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...A3C8103C7B8A79783523C6DC445E7D04 -[e91 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 68DA4EBFE478BF4A2F8ACE49CED7DB7790B2BC0E1E10DCEBF08AFCC0288C4A57 -[e92 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 +[e6a 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[e6b 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdc0 principal evaluation fails +[e6c 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdc0 gate 1515797823137063012 evaluation fails +[e6d 01-12 22:57:03.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdd0 gate 1515797823139916585 evaluation starts +[e6e 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 signed by 0 principal evaluation starts (used [false]) +[e6f 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e70 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[e71 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[e72 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cdd0 principal evaluation fails +[e73 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cdd0 gate 1515797823139916585 evaluation fails +[e74 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cde0 gate 1515797823141205440 evaluation starts +[e75 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 signed by 0 principal evaluation starts (used [false]) +[e76 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[e77 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[e78 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[e79 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[e7b 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 principal matched by identity 0 +[e7c 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 6b 12 ac ab 3a 65 5c df e5 13 2b 8b ce e3 80 38 |k...:e\...+....8| +00000010 d9 1f 03 f0 e3 0a 38 a4 e5 dd 35 54 de 44 51 c0 |......8...5T.DQ.| +[e7d 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 95 0c 2b 23 ad d6 d0 cc 5c a2 23 |0D. ...+#....\.#| +00000010 e2 97 39 f6 ae e1 2a 23 4d 0c 29 fe 4f 2b 5d 3f |..9...*#M.).O+]?| +00000020 d1 63 ea fd 02 20 1b c5 b4 c7 27 3b 0a c2 fc 8b |.c... ....';....| +00000030 54 09 34 ad f2 ed 20 c1 4f 3f 80 2a 22 cc a6 b1 |T.4... .O?.*"...| +00000040 ff f4 7f a4 86 45 |.....E| +[e7e 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017cde0 principal evaluation succeeds for identity 0 +[e7f 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017cde0 gate 1515797823141205440 evaluation succeeds +[e80 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[e81 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[e7a 01-12 22:57:03.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[e82 01-12 22:57:03.14 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[e83 01-12 22:57:03.28 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[e84 01-12 22:57:03.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[e85 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[e86 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[e87 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25653] +[e88 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13782], Going to peek [8] bytes +[e89 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13780], placementInfo={fileNum=[0], startOffset=[25653], bytesOffset=[25655]} +[e8a 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[e8b 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[e8c 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[e8d 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e8e 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[e8f 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e90 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4882968F93E2D92E722C5C479223990A +[e91 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 514CED934B52A160AD9F8DFCA95DD2D87A6CA5F245D9734DD930D80705E7C7EB +[e92 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[e93 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e94 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[e95 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[e96 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[e97 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...4882968F93E2D92E722C5C479223990A +[e98 01-12 22:57:05.14 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 95F1E4CA95476773800574E7DB1A57E53275577DA2163F51B3AD6156A9AAFCF9 +[e99 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 ] -[e93 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44668], isChainEmpty=[false], lastBlockNumber=[3] -[e94 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 -[e95 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -[e96 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -[e97 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -[e98 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -[e99 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -[e9b 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -[e9c 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -[e9d 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -[e9e 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -[e9f 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -[e9a 12-19 06:48:01.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -[ea0 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -[ea1 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -[ea2 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -[ea3 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420a7ab80) -[ea4 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN [channel: businesschannel] Error sending to stream: rpc error: code = Internal desc = transport is closing -[ea5 12-19 06:48:01.45 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[ea6 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[ea7 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[ea8 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e8 gate 1513666095216668900 evaluation starts -[ea9 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 signed by 0 principal evaluation starts (used [false]) -[eaa 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[eab 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[e9a 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44642], isChainEmpty=[false], lastBlockNumber=[3] +[e9b 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 3 +[e9c 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[e9f 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +[e9d 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[ea1 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +[ea2 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[ea3 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +[ea4 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202fa4a0) +[ea5 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN [channel: businesschannel] Error sending to stream: rpc error: code = Internal desc = transport is closing +[ea6 01-12 22:57:05.15 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[e9e 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[ea7 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +[ea8 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[ea9 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +[eaa 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +[ea0 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[eab 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +[eac 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +[ead 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[eae 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[eaf 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026238 gate 1515797839281849979 evaluation starts +[eb0 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 signed by 0 principal evaluation starts (used [false]) +[eb1 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[eb2 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[eac 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[ead 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e8 principal evaluation fails -[eae 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e8 gate 1513666095216668900 evaluation fails -[eaf 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f8 gate 1513666095217543500 evaluation starts -[eb0 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 signed by 0 principal evaluation starts (used [false]) -[eb1 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[eb2 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[eb3 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[eb4 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026238 principal evaluation fails +[eb5 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026238 gate 1515797839281849979 evaluation fails +[eb6 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1515797839283780613 evaluation starts +[eb7 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 signed by 0 principal evaluation starts (used [false]) +[eb8 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[eb9 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[eb3 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[eb4 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f8 principal evaluation fails -[eb5 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f8 gate 1513666095217543500 evaluation fails -[eb6 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513666095218538700 evaluation starts -[eb7 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 signed by 0 principal evaluation starts (used [false]) -[eb8 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[eb9 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[eba 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[ebb 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[ebc 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal matched by identity 0 +[ebd 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 13 6a b4 8f eb 73 c6 c3 38 a4 72 a5 8e 3b ba |..j...s..8.r..;.| +00000010 04 6e e6 a4 07 54 0c 61 89 20 20 8d 85 98 68 01 |.n...T.a. ...h.| +[ebe 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 27 c1 22 e8 fe 15 a9 7b 92 5f 7b e1 |0D. '."....{._{.| +00000010 9a 8f 1f a9 6f 85 47 6d 4a 25 e2 5c f1 ac 67 70 |....o.GmJ%.\..gp| +00000020 27 b3 be 82 02 20 11 ed ba df 4f 35 aa ae bf b9 |'.... ....O5....| +00000030 c1 fb a3 82 ed 89 eb e6 8c 28 3f ad aa ab 43 4d |.........(?...CM| +00000040 c0 1f fc 07 20 63 |.... c| +[ebf 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026248 principal evaluation succeeds for identity 0 +[ec0 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026248 gate 1515797839283780613 evaluation succeeds +[ec1 01-12 22:57:19.28 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[ec2 01-12 22:57:19.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 +[ec3 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[ec4 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026050 gate 1515797839292746128 evaluation starts +[ec5 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 signed by 0 principal evaluation starts (used [false]) +[ec6 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ec7 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[eba 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[ebb 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[ebc 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 principal matched by identity 0 -[ebd 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 68 c0 cc 07 92 56 b0 26 8f 34 ab 65 65 0a b3 |Eh....V.&.4.ee..| -00000010 b4 8c 5a c6 6b 73 55 4e 50 9f ab 2e 75 ac de 6e |..Z.ksUNP...u..n| -[ebe 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 45 36 a8 0a da 86 f4 14 a1 5f dc a6 |0D. E6......._..| -00000010 db dd 29 30 d0 14 7d fb ab dd 40 18 0f c8 10 97 |..)0..}...@.....| -00000020 fa 55 ad b2 02 20 07 bc da 94 b5 af a9 64 e8 be |.U... .......d..| -00000030 3d 52 29 7c 30 f5 1c bf 84 04 31 88 c7 82 85 14 |=R)|0.....1.....| -00000040 de 82 ed 5a 30 29 |...Z0)| -[ebf 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026308 principal evaluation succeeds for identity 0 -[ec0 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026308 gate 1513666095218538700 evaluation succeeds -[ec1 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[ec2 12-19 06:48:15.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -[ec3 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[ec4 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026320 gate 1513666095220306700 evaluation starts -[ec5 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 signed by 0 principal evaluation starts (used [false]) -[ec6 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[ec7 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[ec9 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[eca 01-12 22:57:19.29 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[ec8 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[ecb 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026050 principal evaluation fails +[ecc 01-12 22:57:19.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026050 gate 1515797839292746128 evaluation fails +[ecd 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026070 gate 1515797839300206496 evaluation starts +[ece 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 signed by 0 principal evaluation starts (used [false]) +[ecf 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[ed0 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[ec8 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[ec9 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026320 principal evaluation fails -[eca 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026320 gate 1513666095220306700 evaluation fails -[ecb 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026330 gate 1513666095221761800 evaluation starts -[ecc 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 signed by 0 principal evaluation starts (used [false]) -[ecd 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[ece 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[ecf 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[ed0 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026330 principal evaluation fails -[ed1 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026330 gate 1513666095221761800 evaluation fails -[ed2 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026340 gate 1513666095222603800 evaluation starts -[ed3 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 signed by 0 principal evaluation starts (used [false]) -[ed4 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[ed5 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[ed6 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[ed7 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[ed8 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 principal matched by identity 0 -[ed9 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 45 68 c0 cc 07 92 56 b0 26 8f 34 ab 65 65 0a b3 |Eh....V.&.4.ee..| -00000010 b4 8c 5a c6 6b 73 55 4e 50 9f ab 2e 75 ac de 6e |..Z.ksUNP...u..n| -[eda 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 45 36 a8 0a da 86 f4 14 a1 5f dc a6 |0D. E6......._..| -00000010 db dd 29 30 d0 14 7d fb ab dd 40 18 0f c8 10 97 |..)0..}...@.....| -00000020 fa 55 ad b2 02 20 07 bc da 94 b5 af a9 64 e8 be |.U... .......d..| -00000030 3d 52 29 7c 30 f5 1c bf 84 04 31 88 c7 82 85 14 |=R)|0.....1.....| -00000040 de 82 ed 5a 30 29 |...Z0)| -[edb 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026340 principal evaluation succeeds for identity 0 -[edc 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026340 gate 1513666095222603800 evaluation succeeds -[edd 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[ede 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[edf 12-19 06:48:15.22 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[ee0 12-19 06:48:15.22 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[ee1 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[ee2 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -[ee3 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -[ee4 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5208], Going to peek [8] bytes -[ee5 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -[ee6 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -[ee7 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[ee8 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[ee9 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[eea 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[eeb 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[eec 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...31C8B5AF6C2E7329CCFE62CB628CBAC9 -[eed 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 6946513D8D3C41D65FAC40942E7D5B03EB4A5E42E085653AD0E6E1A0BFBD6348 -[eee 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[eef 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[ef0 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[ef1 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[ef2 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[ef3 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...31C8B5AF6C2E7329CCFE62CB628CBAC9 -[ef4 12-19 06:48:17.22 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 3C7278D75F9A422F818DA95F5A40B0AAB432CBC779A3D03853F6CF1112DC6912 -[ef5 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 +[ed1 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[ed2 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[ed3 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 principal matched by identity 0 +[ed4 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 13 6a b4 8f eb 73 c6 c3 38 a4 72 a5 8e 3b ba |..j...s..8.r..;.| +00000010 04 6e e6 a4 07 54 0c 61 89 20 20 8d 85 98 68 01 |.n...T.a. ...h.| +[ed5 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 27 c1 22 e8 fe 15 a9 7b 92 5f 7b e1 |0D. '."....{._{.| +00000010 9a 8f 1f a9 6f 85 47 6d 4a 25 e2 5c f1 ac 67 70 |....o.GmJ%.\..gp| +00000020 27 b3 be 82 02 20 11 ed ba df 4f 35 aa ae bf b9 |'.... ....O5....| +00000030 c1 fb a3 82 ed 89 eb e6 8c 28 3f ad aa ab 43 4d |.........(?...CM| +00000040 c0 1f fc 07 20 63 |.... c| +[ed6 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026070 principal evaluation succeeds for identity 0 +[ed7 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026070 gate 1515797839300206496 evaluation succeeds +[ed8 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[ed9 01-12 22:57:19.30 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[eda 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[edb 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] +[edc 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39435] +[edd 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[ede 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[39435], bytesOffset=[39437]} +[edf 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[ee0 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[ee1 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[ee2 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ee3 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[ee4 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ee5 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...1C4A895161D71C56FB47FD3554E03F88 +[ee6 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 35C878D6CFD4CB4A5856AAE6AB0834E9431B9D83E853AEB1F8A08180F7B768AD +[ee7 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[ee8 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[ee9 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[eea 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[eeb 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[eec 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...1C4A895161D71C56FB47FD3554E03F88 +[eed 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: D7D00C876954FA527D305945A8D55B450CCFFE7007FBDE248F5FA928AAD1FEBD +[eee 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 ] -[ef6 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49877], isChainEmpty=[false], lastBlockNumber=[4] -[ef7 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 -[ef8 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -[efa 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -[ef9 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -[efc 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5209], Going to peek [8] bytes -[efb 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -[efe 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -[efd 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5209], Going to peek [8] bytes -[f00 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -[f01 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -[eff 12-19 06:48:17.23 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -[f02 12-19 06:48:32.08 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[f03 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[f04 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[f05 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[f06 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026388 gate 1513666112107633000 evaluation starts -[f07 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 signed by 0 principal evaluation starts (used [false]) -[f08 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f09 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[eef 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49849], isChainEmpty=[false], lastBlockNumber=[4] +[ef0 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 4 +[ef1 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[ef2 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[ef3 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44642] +[ef5 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[ef6 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[44642], bytesOffset=[44644]} +[ef7 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +[ef4 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44642] +[ef8 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[ef9 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[44642], bytesOffset=[44644]} +[efa 01-12 22:57:21.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +[efb 01-12 22:57:36.02 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[efc 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[efd 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[efe 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[eff 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d8 gate 1515797856050737339 evaluation starts +[f00 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 signed by 0 principal evaluation starts (used [false]) +[f01 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f02 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[f0a 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[f0b 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026388 principal evaluation fails -[f0c 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026388 gate 1513666112107633000 evaluation fails -[f0d 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026398 gate 1513666112108221800 evaluation starts -[f0e 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 signed by 0 principal evaluation starts (used [false]) -[f0f 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f10 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[f03 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[f04 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260d8 principal evaluation fails +[f05 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260d8 gate 1515797856050737339 evaluation fails +[f06 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1515797856052466074 evaluation starts +[f07 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 signed by 0 principal evaluation starts (used [false]) +[f08 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f09 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[f11 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[f12 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[f13 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 principal matched by identity 0 -[f14 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a5 a4 a1 bb c4 d1 91 07 49 ee cc 2d f7 01 05 97 |........I..-....| -00000010 30 13 3a 79 86 b9 3f fd 2f 17 ec f6 6a 48 e2 68 |0.:y..?./...jH.h| -[f15 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e2 a1 6d 78 1d d6 b8 d5 64 a8 e5 |0E.!...mx....d..| -00000010 16 6c 25 8c 03 75 d0 da ce 82 a6 55 91 2b 6b 28 |.l%..u.....U.+k(| -00000020 28 2f 00 a4 6a 02 20 1a 0e 4a af 2e 67 a9 dd 99 |(/..j. ..J..g...| -00000030 f7 35 9f a2 ef 8d 5c 41 e5 36 36 d5 fa 4d 1f f1 |.5....\A.66..M..| -00000040 7c 16 d1 f0 86 36 51 ||....6Q| -[f16 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026398 principal evaluation succeeds for identity 0 -[f17 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026398 gate 1513666112108221800 evaluation succeeds -[f18 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[f19 12-19 06:48:32.10 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 -[f1a 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[f1b 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666112109545300 evaluation starts -[f1c 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 signed by 0 principal evaluation starts (used [false]) -[f1d 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f1e 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[f0a 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[f0b 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260e8 principal evaluation fails +[f0c 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260e8 gate 1515797856052466074 evaluation fails +[f0d 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1515797856054121146 evaluation starts +[f0e 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 signed by 0 principal evaluation starts (used [false]) +[f0f 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f10 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[f1f 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[f20 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180af0 principal evaluation fails -[f21 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180af0 gate 1513666112109545300 evaluation fails -[f22 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180b00 gate 1513666112110402000 evaluation starts -[f23 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 signed by 0 principal evaluation starts (used [false]) -[f24 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f78515866752b6d5248524730357a7837656e74787777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41785768634e4d6a63784d6a457a4d4463314e6a41780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142474e55774b3674655068484e4857723061356c6b52453555336462345554320a7458515a706a5a59574a6c74326433747a576a77674b6a742f42446c304b6a41667a5959634b6d74644b46686b393261354c325a534d576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b726a6b485375314550670a494f6f514f412f576439636a30366a6658336f633547494b4e465247457078434d416f4743437147534d343942414d43413063414d45514349446d5441476c700a4c47455655732b4376597330496a732b6f324b6a6454466d754149526c6a4369517072364169414b736437725334673262634e745754634737724b66423963300a78784f7a452b7677616a53314969414e37673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f25 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL +[f11 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[f12 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[f13 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal matched by identity 0 +[f14 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 e5 61 20 d4 10 d5 f2 28 d5 e9 78 95 1a d8 cb |#.a ....(..x....| +00000010 45 82 3f 04 f0 18 13 d9 90 fd a0 00 52 b1 9c 15 |E.?.........R...| +[f15 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 ba 4b 27 82 ef 3d 27 da 46 92 f7 |0D. h.K'..='.F..| +00000010 2c 35 af a8 3c 14 a4 72 70 9a 01 49 6a af 92 ee |,5..<..rp..Ij...| +00000020 01 72 93 9c 02 20 61 29 ad 1d 06 cb 86 e9 aa fd |.r... a)........| +00000030 c2 e3 6f 96 c8 8e 41 0f f3 28 37 ed 47 9e 85 c1 |..o...A..(7.G...| +00000040 ee 2e e6 ad be 73 |.....s| +[f16 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260f8 principal evaluation succeeds for identity 0 +[f17 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260f8 gate 1515797856054121146 evaluation succeeds +[f18 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[f19 01-12 22:57:36.05 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 +[f1a 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f1b 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4d0 gate 1515797856057485663 evaluation starts +[f1c 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 signed by 0 principal evaluation starts (used [false]) +[f1d 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f1e 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2 -tXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg -IOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp -LGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0 -xxOzE+vwajS1IiAN7g== +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= -----END CERTIFICATE----- -[f26 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[f27 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[f28 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 principal matched by identity 0 -[f29 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 a5 a4 a1 bb c4 d1 91 07 49 ee cc 2d f7 01 05 97 |........I..-....| -00000010 30 13 3a 79 86 b9 3f fd 2f 17 ec f6 6a 48 e2 68 |0.:y..?./...jH.h| -[f2a 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e2 a1 6d 78 1d d6 b8 d5 64 a8 e5 |0E.!...mx....d..| -00000010 16 6c 25 8c 03 75 d0 da ce 82 a6 55 91 2b 6b 28 |.l%..u.....U.+k(| -00000020 28 2f 00 a4 6a 02 20 1a 0e 4a af 2e 67 a9 dd 99 |(/..j. ..J..g...| -00000030 f7 35 9f a2 ef 8d 5c 41 e5 36 36 d5 fa 4d 1f f1 |.5....\A.66..M..| -00000040 7c 16 d1 f0 86 36 51 ||....6Q| -[f2b 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180b00 principal evaluation succeeds for identity 0 -[f2c 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180b00 gate 1513666112110402000 evaluation succeeds -[f2d 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[f2e 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[f2f 12-19 06:48:32.11 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[f30 12-19 06:48:32.11 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[f31 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[f32 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -[f33 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -[f34 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5209], Going to peek [8] bytes -[f35 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -[f36 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -[f37 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[f38 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[f39 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f3a 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[f3b 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f3c 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...8BCB72929412272172AB774C0308BC78 -[f3d 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: EB41E2C57B6FEAF510AF24344097120EBC27D439872EE46473301107CE894B92 -[f3e 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[f3f 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f40 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[f41 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[f42 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f43 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...8BCB72929412272172AB774C0308BC78 -[f44 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: A50A2E7B14AB3D6C34C9EE4615B4CAEA27DD87FBDDAA39B453758FBA5CE8182F -[f45 12-19 06:48:34.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 +[f1f 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[f20 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4d0 principal evaluation fails +[f21 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4d0 gate 1515797856057485663 evaluation fails +[f22 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4e0 gate 1515797856058551030 evaluation starts +[f23 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 signed by 0 principal evaluation starts (used [false]) +[f24 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f25 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[f26 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[f27 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4e0 principal evaluation fails +[f28 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4e0 gate 1515797856058551030 evaluation fails +[f29 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4f0 gate 1515797856059807901 evaluation starts +[f2a 01-12 22:57:36.05 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 signed by 0 principal evaluation starts (used [false]) +[f2b 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414a436a565079326935302f2b3157636e73663557785577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441335768634e4d6a63784d6a49334d544d314f5441330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142427752556b4b737430484f7562316665566f737159754b54314750413031390a494857414c624e43327361504a7a716d5154507052306e4a7339466141454139536c4863352b563931486151646841486a647736722f796a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149504a74646e6441692b58310a49556c5662435771704d4833653141524f53616332306a6355592b2b3662304f4d416f4743437147534d343942414d43413067414d455543495143706d6d61450a38577a456254496c45436c585134516f38386e6b2b67507a64484b2b644e493266433041616749674872356e4d68372b534975783456795867754e4d353364740a4751377631324178506c2b6e713354696d69453d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f2c 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019 +IHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE +8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt +GQ7v12AxPl+nq3TimiE= +-----END CERTIFICATE----- +[f2d 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[f2e 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity +[f2f 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 principal matched by identity 0 +[f30 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 23 e5 61 20 d4 10 d5 f2 28 d5 e9 78 95 1a d8 cb |#.a ....(..x....| +00000010 45 82 3f 04 f0 18 13 d9 90 fd a0 00 52 b1 9c 15 |E.?.........R...| +[f31 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 ba 4b 27 82 ef 3d 27 da 46 92 f7 |0D. h.K'..='.F..| +00000010 2c 35 af a8 3c 14 a4 72 70 9a 01 49 6a af 92 ee |,5..<..rp..Ij...| +00000020 01 72 93 9c 02 20 61 29 ad 1d 06 cb 86 e9 aa fd |.r... a)........| +00000030 c2 e3 6f 96 c8 8e 41 0f f3 28 37 ed 47 9e 85 c1 |..o...A..(7.G...| +00000040 ee 2e e6 ad be 73 |.....s| +[f32 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c4f0 principal evaluation succeeds for identity 0 +[f33 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c4f0 gate 1515797856059807901 evaluation succeeds +[f34 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[f35 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[f36 01-12 22:57:36.06 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[f37 01-12 22:57:36.06 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[f38 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[f39 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] +[f3a 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44642] +[f3b 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5207], Going to peek [8] bytes +[f3c 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5205], placementInfo={fileNum=[0], startOffset=[44642], bytesOffset=[44644]} +[f3d 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[f3e 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[f3f 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f40 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f41 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f42 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f43 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CEEE4EBDA6167406C65B71B41DAD1DBF +[f44 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: DAFFEA65833B435CE919EF42BFB3A9ABA0E38131D936E3042FF788A2B2CBCB0D +[f45 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f46 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f47 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[f48 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f49 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f4a 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...CEEE4EBDA6167406C65B71B41DAD1DBF +[f4b 01-12 22:57:38.06 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 101083AAE21708BE4F0C645ADE40DB6A6AD400D313FB3B132E14CD2DBBCFA063 +[f4c 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 ] -[f46 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54545], isChainEmpty=[false], lastBlockNumber=[5] -[f47 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 5 -[f48 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -[f49 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -[f4a 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -[f4b 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -[f4d 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4668], Going to peek [8] bytes -[f4e 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -[f4f 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -[f4c 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4668], Going to peek [8] bytes -[f50 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -[f51 12-19 06:48:34.12 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -[f52 12-19 06:48:48.30 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[f53 12-19 06:48:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop -[f54 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -[f55 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[f56 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260c8 gate 1513666128332022400 evaluation starts -[f57 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 signed by 0 principal evaluation starts (used [false]) -[f58 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f59 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[f4d 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54515], isChainEmpty=[false], lastBlockNumber=[5] +[f4e 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 5 +[f4f 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +[f50 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49849] +[f51 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +[f53 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4666], Going to peek [8] bytes +[f54 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4664], placementInfo={fileNum=[0], startOffset=[49849], bytesOffset=[49851]} +[f55 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +[f52 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49849] +[f56 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4666], Going to peek [8] bytes +[f57 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4664], placementInfo={fileNum=[0], startOffset=[49849], bytesOffset=[49851]} +[f58 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) +[f59 01-12 22:57:52.35 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[f5a 01-12 22:57:52.35 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop +[f5b 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +[f5c 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f5d 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c640 gate 1515797872386983428 evaluation starts +[f5e 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 signed by 0 principal evaluation starts (used [false]) +[f5f 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f60 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[f5a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[f5b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200260c8 principal evaluation fails -[f5c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200260c8 gate 1513666128332022400 evaluation fails -[f5d 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1513666128333055700 evaluation starts -[f5e 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 signed by 0 principal evaluation starts (used [false]) -[f5f 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f60 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[f61 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[f62 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c640 principal evaluation fails +[f63 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c640 gate 1515797872386983428 evaluation fails +[f64 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c6a0 gate 1515797872388303867 evaluation starts +[f65 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 signed by 0 principal evaluation starts (used [false]) +[f66 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f67 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[f61 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[f62 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026160 principal evaluation fails -[f63 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026160 gate 1513666128333055700 evaluation fails -[f64 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1513666128334056600 evaluation starts -[f65 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 signed by 0 principal evaluation starts (used [false]) -[f66 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f67 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[f68 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[f69 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[f6a 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 principal matched by identity 0 +[f6b 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2b a1 a4 46 9e 3b 0b 90 29 70 e5 1a c1 be 7b 90 |+..F.;..)p....{.| +00000010 06 2f dc ad a1 15 a5 61 05 3c ab 28 f5 1e 45 e6 |./.....a.<.(..E.| +[f6c 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d2 99 01 15 46 b9 9a d4 39 dc fe |0E.!.....F...9..| +00000010 6d 15 f3 2f 98 38 23 a1 a4 f7 0c 24 e0 96 7a 42 |m../.8#....$..zB| +00000020 0c bc 84 59 71 02 20 08 5b 81 59 2a de e4 9d 41 |...Yq. .[.Y*...A| +00000030 98 d0 bb dd 1b c2 d0 c4 25 27 a7 4e 36 d2 c8 d8 |........%'.N6...| +00000040 49 0f 58 d6 32 3d 4d |I.X.2=M| +[f6d 01-12 22:57:52.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc42017c6a0 principal evaluation succeeds for identity 0 +[f6e 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc42017c6a0 gate 1515797872388303867 evaluation succeeds +[f6f 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[f70 01-12 22:57:52.39 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 +[f71 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation +[f72 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026148 gate 1515797872390742447 evaluation starts +[f73 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 signed by 0 principal evaluation starts (used [false]) +[f74 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f75 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[f68 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[f69 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[f6a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal matched by identity 0 -[f6b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 84 b8 1e 2e 2b 22 19 da 00 96 cf 02 06 a1 c4 d0 |....+"..........| -00000010 53 9d 42 c3 ab d2 e5 23 23 ad 64 a4 b7 8c 60 2f |S.B....##.d...`/| -[f6c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 44 1a d8 2c 52 77 ef fc f0 50 e0 |0D. xD..,Rw...P.| -00000010 4f 2a 3e 50 6d 44 1e 11 0a 85 75 db 64 82 80 fa |O*>PmD....u.d...| -00000020 12 cd 23 f0 02 20 1a d0 0c 18 7b e1 8f 10 0b dc |..#.. ....{.....| -00000030 08 1c 81 46 ef 83 0e 9e ce 2b 6a 4e 56 6f d1 c2 |...F.....+jNVo..| -00000040 1c 83 27 c2 00 37 |..'..7| -[f6d 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200261e0 principal evaluation succeeds for identity 0 -[f6e 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200261e0 gate 1513666128334056600 evaluation succeeds -[f6f 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[f70 12-19 06:48:48.33 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 -[f71 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/policies] Ordered.Apply.Apply.GetPolicy -> DEBU Returning policy Writers for evaluation -[f72 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026200 gate 1513666128336045900 evaluation starts -[f73 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 signed by 0 principal evaluation starts (used [false]) -[f74 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f75 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL +[f76 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled +[f77 01-12 22:57:52.39 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[f78 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[f79 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026148 principal evaluation fails +[f7a 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026148 gate 1515797872390742447 evaluation fails +[f7b 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026158 gate 1515797872393019908 evaluation starts +[f7c 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 signed by 0 principal evaluation starts (used [false]) +[f7d 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414f3137393863504a597448543877706446456e4b395577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d544d314f5441345768634e4d6a63784d6a49334d544d314f5441340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142435a504a734667376c47576a6c4148696837727a4d77494e5748546a4656660a4b6c55384346337271673352417a74347033385366742b422f50754173533371387739396d43674d6c76345a3876645964727249426e2b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494131754d4b724249644c580a2b4d693844787a31557a5949754c746944654e685564587567385253544870764d416f4743437147534d343942414d43413063414d455143494159786e5555760a7241612b6c43462b57536f46356863434652704d39387037446174766f4251426951426b4169426b514c7a474f7366534f45345131514a75426d506a745935440a5359725a34777462675a51744e38534f7a513d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +[f7e 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf +KlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX ++Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv +rAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D +SYrZ4wtbgZQtN8SOzQ== -----END CERTIFICATE----- -[f76 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[f77 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026200 principal evaluation fails -[f78 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026200 gate 1513666128336045900 evaluation fails -[f79 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026218 gate 1513666128337402200 evaluation starts -[f7a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 signed by 0 principal evaluation starts (used [false]) -[f7b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f7c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[f7d 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[f7e 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026218 principal evaluation fails -[f7f 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026218 gate 1513666128337402200 evaluation fails -[f80 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026228 gate 1513666128338589700 evaluation starts -[f81 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 signed by 0 principal evaluation starts (used [false]) -[f82 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e69665a6958734d717446686470667671383346455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a45314d4463314e6a41795768634e4d6a63784d6a457a4d4463314e6a41790a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d445974512f3139664c4b71384b564a4776667744596176324a79304b414a0a3557765357616241307879566d4558727074572b6f3641776563343643664b536a334468334a594d6f6236567155596c33772b543965756a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494d344f3644324f5a7676630a63302b7779772b68363575454c3750695955352b705561776758414e4e4130364d416f4743437147534d343942414d43413067414d45554349514458325745500a666e715045377357366d42496a4a4b7a4e645a4733397177456a4169594934736c6f4c4b62774967434c433275554f4c336a493254395874597548477a78774f0a52796c494c6678573969496c4b59742f6d53493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[f83 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ -5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc -c0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP -fnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO -RylILfxW9iIlKYt/mSI= ------END CERTIFICATE----- -[f84 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[f85 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[f86 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 principal matched by identity 0 -[f87 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 84 b8 1e 2e 2b 22 19 da 00 96 cf 02 06 a1 c4 d0 |....+"..........| -00000010 53 9d 42 c3 ab d2 e5 23 23 ad 64 a4 b7 8c 60 2f |S.B....##.d...`/| -[f88 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 44 1a d8 2c 52 77 ef fc f0 50 e0 |0D. xD..,Rw...P.| -00000010 4f 2a 3e 50 6d 44 1e 11 0a 85 75 db 64 82 80 fa |O*>PmD....u.d...| -00000020 12 cd 23 f0 02 20 1a d0 0c 18 7b e1 8f 10 0b dc |..#.. ....{.....| -00000030 08 1c 81 46 ef 83 0e 9e ce 2b 6a 4e 56 6f d1 c2 |...F.....+jNVo..| -00000040 1c 83 27 c2 00 37 |..'..7| -[f89 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026228 principal evaluation succeeds for identity 0 -[f8a 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026228 gate 1513666128338589700 evaluation succeeds -[f8b 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42031f5a0 1 [0xc420180508]}) %!s(*policies.implicitMetaPolicy=&{0xc42084c5e0 1 [0xc420180578 0xc4201808e8]})]} -[f8c 12-19 06:48:48.33 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[f8d 12-19 06:48:48.34 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[f8e 12-19 06:48:48.34 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[f8f 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block -[f90 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -[f91 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -[f92 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4668], Going to peek [8] bytes -[f93 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -[f94 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc420228e00 chain:0xc420229a60 cutter:0xc420858690 filters:0xc420229420 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} -[f95 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} -[f96 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[f97 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f98 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[f99 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f9a 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...97FFA714D7E5731AAD5C10355BFFEED4 -[f9b 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 4C2DA3F4563121226A47051EA12CC9B3C9185A89684F8C8E257C99EF241ADAD4 -[f9c 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[f9d 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[f9e 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[f9f 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[fa0 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[fa1 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...97FFA714D7E5731AAD5C10355BFFEED4 -[fa2 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: AB8BE80EC44741F15E5CD933B8E63C7BF09108561A44298BB06BCA769DFD406B -[fa3 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 +[f7f 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[f80 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity +[f81 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 principal matched by identity 0 +[f82 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2b a1 a4 46 9e 3b 0b 90 29 70 e5 1a c1 be 7b 90 |+..F.;..)p....{.| +00000010 06 2f dc ad a1 15 a5 61 05 3c ab 28 f5 1e 45 e6 |./.....a.<.(..E.| +[f83 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/msp] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d2 99 01 15 46 b9 9a d4 39 dc fe |0E.!.....F...9..| +00000010 6d 15 f3 2f 98 38 23 a1 a4 f7 0c 24 e0 96 7a 42 |m../.8#....$..zB| +00000020 0c bc 84 59 71 02 20 08 5b 81 59 2a de e4 9d 41 |...Yq. .[.Y*...A| +00000030 98 d0 bb dd 1b c2 d0 c4 25 27 a7 4e 36 d2 c8 d8 |........%'.N6...| +00000040 49 0f 58 d6 32 3d 4d |I.X.2=M| +[f84 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026158 principal evaluation succeeds for identity 0 +[f85 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] Ordered.Apply.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026158 gate 1515797872393019908 evaluation succeeds +[f86 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] Ordered.Apply.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208e49a0 1 [0xc42017c940]}) %!s(*policies.implicitMetaPolicy=&{0xc4208e5620 1 [0xc42017ca28 0xc42017cbe8]})]} +[f87 01-12 22:57:52.39 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[f88 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/solo] -> DEBU Batch timer expired, creating block +[f89 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] +[f8a 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49849] +[f8b 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4666], Going to peek [8] bytes +[f8c 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] CreateNextBlock.CreateNextBlock.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4664], placementInfo={fileNum=[0], startOffset=[49849], bytesOffset=[49851]} +[f8d 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{ledgerResources:0xc42017baa0 chain:0xc420166ce0 cutter:0xc4208432c0 filters:0xc4201665a0 signer:0x128b4a8 lastConfig:2 lastConfigSeq:3} +[f8e 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addBlockSignature -> DEBU &{} +[f8f 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f90 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f91 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f92 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f93 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...834AED6F65874D4B4C959128AA98BB63 +[f94 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addBlockSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 9CEB0556366AFE2DD76F6E617A8385BA8A2051A5117AA43183A4F823D4BE9E5D +[f95 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP +[f96 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f97 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[f98 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[f99 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[f9a 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: plaintext: 08020AFA050A0A4F7264657265724D53...834AED6F65874D4B4C959128AA98BB63 +[f9b 01-12 22:57:54.39 UTC] [github.com/hyperledger/fabric/msp] WriteBlock.addLastConfigSignature.SignOrPanic.Sign.Sign -> DEBU Sign: digest: 1103664AAA452E687FE4DF6E81B29BD172601704378204BDE13CA32898C29B8C +[f9c 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 ] -[fa4 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59214], isChainEmpty=[false], lastBlockNumber=[6] -[fa5 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 6 -[fa7 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] -[fa6 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] -[fa9 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -[faa 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes -[fab 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -[fac 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa700) -[fa8 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -[fad 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes -[fae 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -[faf 12-19 06:48:50.34 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42017ef40) -[fb0 12-19 06:48:50.42 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[fb1 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[fb2 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[fb3 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[fb4 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201805b8 gate 1513666130428837000 evaluation starts -[fb5 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 signed by 0 principal evaluation starts (used [false]) -[fb6 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[fb7 12-19 06:48:50.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[fb8 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[fb9 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201805b8 principal evaluation fails -[fba 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201805b8 gate 1513666130428837000 evaluation fails -[fbb 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180710 gate 1513666130431161100 evaluation starts -[fbc 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 signed by 0 principal evaluation starts (used [false]) -[fbd 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[fbe 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[fbf 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[fc0 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180710 principal evaluation fails -[fc1 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180710 gate 1513666130431161100 evaluation fails -[fc2 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201808d8 gate 1513666130433755000 evaluation starts -[fc3 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 signed by 0 principal evaluation starts (used [false]) -[fc4 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[fc5 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[fc6 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[fc7 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[fc8 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 principal matched by identity 0 -[fc9 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 58 74 2b 72 be 86 7d 96 3f 7a 24 19 69 cb 3b cb |Xt+r..}.?z$.i.;.| -00000010 8b 56 7f 89 e5 80 0a 72 a1 cb 41 4d ed 72 9a c6 |.V.....r..AM.r..| -[fca 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ea 3d c4 91 1d 73 7c df 1a c4 62 |0E.!..=...s|...b| -00000010 ec 4b 52 ef 7b 03 34 10 74 22 77 3e c0 b3 5c d3 |.KR.{.4.t"w>..\.| -00000020 dd 7a a6 eb c5 02 20 70 ac 5a 6d 23 06 af 1a cf |.z.... p.Zm#....| -00000030 7b 9a 1b da 00 4b 44 2a 7a 64 32 a7 22 b6 70 9f |{....KD*zd2.".p.| -00000040 cb 95 74 79 70 3e ae |..typ>.| -[fcb 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201808d8 principal evaluation succeeds for identity 0 -[fcc 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201808d8 gate 1513666130433755000 evaluation succeeds -[fcd 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[fce 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4209e7520) start: > stop: > -[fcf 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[fd0 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[fd1 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[59214], Going to peek [8] bytes -[fd2 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[11933], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[fd3 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4209e7520) -[fd4 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4209e7520), waiting for new SeekInfo -[fd5 12-19 06:48:50.43 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[fd6 12-19 06:48:50.44 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[fd7 12-19 06:48:50.44 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[fd8 12-19 06:48:50.55 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[fd9 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[fda 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[fdb 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[fdc 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026268 gate 1513666130559044700 evaluation starts -[fdd 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 signed by 0 principal evaluation starts (used [false]) -[fde 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[fdf 12-19 06:48:50.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[fe0 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[fe1 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026268 principal evaluation fails -[fe2 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026268 gate 1513666130559044700 evaluation fails -[fe3 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026278 gate 1513666130560296800 evaluation starts -[fe4 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 signed by 0 principal evaluation starts (used [false]) -[fe5 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[fe6 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[fe7 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[fe8 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026278 principal evaluation fails -[fe9 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026278 gate 1513666130560296800 evaluation fails -[fea 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513666130561161300 evaluation starts -[feb 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 signed by 0 principal evaluation starts (used [false]) -[fec 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[fed 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[fee 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[fef 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[ff0 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 principal matched by identity 0 -[ff1 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4c 9d ff ad 29 ee 1c ca 63 8e f4 db 82 c1 13 7b |L...)...c......{| -00000010 85 c0 e5 76 54 32 ae a3 32 85 ca d1 f7 ac 81 db |...vT2..2.......| -[ff2 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 04 db db ed 86 8a b7 0b 0b 0f ac bf |0D. ............| -00000010 47 86 8d ac 87 21 04 ad 23 0f 62 a8 d9 13 ff a3 |G....!..#.b.....| -00000020 2c c2 5b 86 02 20 21 7c f5 e5 97 06 ed e1 a1 ec |,.[.. !|........| -00000030 d2 7c 8d f1 8d c3 f9 59 73 59 95 c4 24 d1 7b 32 |.|.....YsY..$.{2| -00000040 79 c0 11 c6 9e dc |y.....| -[ff3 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026288 principal evaluation succeeds for identity 0 -[ff4 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026288 gate 1513666130561161300 evaluation succeeds -[ff5 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[ff6 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420abff60) start: > stop: > -[ff7 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -[ff8 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11935] -[ff9 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[47279], Going to peek [8] bytes -[ffa 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13732], placementInfo={fileNum=[0], startOffset=[11935], bytesOffset=[11937]} -[ffb 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420abff60) -[ffc 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420abff60), waiting for new SeekInfo -[ffd 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[ffe 12-19 06:48:50.56 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[fff 12-19 06:48:50.56 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1000 12-19 06:48:50.68 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1001 12-19 06:48:50.68 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[1002 12-19 06:48:50.68 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[1003 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[1004 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180998 gate 1513666130690450200 evaluation starts -[1005 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 signed by 0 principal evaluation starts (used [false]) -[1006 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1007 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1008 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[1009 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180998 principal evaluation fails -[100a 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180998 gate 1513666130690450200 evaluation fails -[100b 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809b8 gate 1513666130691042000 evaluation starts -[100c 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 signed by 0 principal evaluation starts (used [false]) -[100d 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[100e 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[100f 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[1010 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809b8 principal evaluation fails -[1011 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809b8 gate 1513666130691042000 evaluation fails -[1012 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809d0 gate 1513666130691561500 evaluation starts -[1013 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 signed by 0 principal evaluation starts (used [false]) -[1014 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1015 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1016 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[1017 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[1018 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 principal matched by identity 0 -[1019 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 00 58 2a 2c 3c e9 3a 9c ce 2d 46 a8 63 7d 73 20 |.X*,<.:..-F.c}s | -00000010 c1 8a 19 3a 6e e6 93 27 c6 95 3c 16 34 41 21 97 |...:n..'..<.4A!.| -[101a 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 84 61 ca 0e ee f5 4c 55 37 fb 00 |0E.!..a....LU7..| -00000010 aa f9 8e b7 1f c3 a1 b9 60 ff c9 48 dc 20 ea 77 |........`..H. .w| -00000020 6b 95 08 f7 8c 02 20 31 1e 6d 88 b1 70 4d 03 35 |k..... 1.m..pM.5| -00000030 35 7a ce a6 0a 44 54 b8 81 55 16 6a cf ad af 08 |5z...DT..U.j....| -00000040 43 a0 c2 c2 0c d5 07 |C......| -[101b 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4201809d0 principal evaluation succeeds for identity 0 -[101c 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4201809d0 gate 1513666130691561500 evaluation succeeds -[101d 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[101e 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4203b4520) start: > stop: > -[101f 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[1020 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25669] -[1021 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[33545], Going to peek [8] bytes -[1022 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} -[1023 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4203b4520) -[1024 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4203b4520), waiting for new SeekInfo -[1025 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[1026 12-19 06:48:50.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[1027 12-19 06:48:50.69 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1028 12-19 06:48:50.79 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1029 12-19 06:48:50.79 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[102a 12-19 06:48:50.79 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[102b 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[102c 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513666130801428000 evaluation starts -[102d 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 signed by 0 principal evaluation starts (used [false]) -[102e 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[102f 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1030 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[1031 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262e0 principal evaluation fails -[1032 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262e0 gate 1513666130801428000 evaluation fails -[1033 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513666130802749100 evaluation starts -[1034 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) -[1035 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1036 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1037 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[1038 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200262f0 principal evaluation fails -[1039 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200262f0 gate 1513666130802749100 evaluation fails -[103a 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1513666130803679800 evaluation starts -[103b 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 signed by 0 principal evaluation starts (used [false]) -[103c 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[103d 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[103e 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[103f 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[1040 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal matched by identity 0 -[1041 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2e dc 42 8d d4 b0 f5 b5 61 fd 02 af b3 6c e8 b8 |..B.....a....l..| -00000010 8f 7c 91 62 ca 51 58 76 68 bc 76 66 e7 78 bb 78 |.|.b.QXvh.vf.x.x| -[1042 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 03 95 1f ce 11 d9 76 ef a5 c4 97 5c |0D. ......v....\| -00000010 29 dd 43 2f 1b a1 b8 18 a2 05 22 4c 06 46 89 9d |).C/......"L.F..| -00000020 3f c0 ff c6 02 20 1b b7 c4 23 59 df bc bb a4 9f |?.... ...#Y.....| -00000030 be 94 b8 0a 0e bf 54 2f e4 2b d2 e0 ca 17 21 01 |......T/.+....!.| -00000040 57 11 ac f4 82 e7 |W.....| -[1043 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026300 principal evaluation succeeds for identity 0 -[1044 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026300 gate 1513666130803679800 evaluation succeeds -[1045 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[1046 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4208fa880) start: > stop: > -[1047 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [3] -[1048 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39460] -[1049 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[19754], Going to peek [8] bytes -[104a 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[39460], bytesOffset=[39462]} -[104b 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4208fa880) -[104c 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4208fa880), waiting for new SeekInfo -[104d 12-19 06:48:50.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[104e 12-19 06:48:50.81 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[104f 12-19 06:48:50.81 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1050 12-19 06:48:50.92 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1051 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[1052 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[1053 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[1054 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026348 gate 1513666130924407600 evaluation starts -[1055 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 signed by 0 principal evaluation starts (used [false]) -[1056 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1057 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1058 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[1059 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026348 principal evaluation fails -[105a 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026348 gate 1513666130924407600 evaluation fails -[105b 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026358 gate 1513666130925704000 evaluation starts -[105c 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 signed by 0 principal evaluation starts (used [false]) -[105d 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[105e 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[105f 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[1060 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026358 principal evaluation fails -[1061 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026358 gate 1513666130925704000 evaluation fails -[1062 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513666130926852100 evaluation starts -[1063 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 signed by 0 principal evaluation starts (used [false]) -[1064 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1065 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1066 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[1067 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[1068 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal matched by identity 0 -[1069 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 12 a1 f1 4a 14 49 8a 0a 9d be 26 f2 3e ae 40 a2 |...J.I....&.>.@.| -00000010 33 35 0f 7d 0f d7 51 62 4c 69 df a2 67 4a a8 f2 |35.}..QbLi..gJ..| -[106a 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6d ff 30 1a 80 5e 1b 3e f1 0d ac a5 |0D. m.0..^.>....| -00000010 5a 66 a7 01 dd a8 0a d6 22 69 8a a6 c6 c4 46 2c |Zf......"i....F,| -00000020 37 61 56 42 02 20 72 14 7b d2 e2 4b a9 d4 bc 04 |7aVB. r.{..K....| -00000030 2e b5 e6 96 3f b0 fa 63 84 89 4e d5 ab 60 47 1c |....?..c..N..`G.| -00000040 49 3f bb 0b f8 54 |I?...T| -[106b 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026368 principal evaluation succeeds for identity 0 -[106c 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026368 gate 1513666130926852100 evaluation succeeds -[106d 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[106e 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420352a60) start: > stop: > -[106f 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [4] -[1070 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -[1071 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14546], Going to peek [8] bytes -[1072 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5207], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -[1073 12-19 06:48:50.92 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420352a60) -[1074 12-19 06:48:50.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420352a60), waiting for new SeekInfo -[1075 12-19 06:48:50.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[1076 12-19 06:48:50.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[1077 12-19 06:48:50.93 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1078 12-19 06:48:51.03 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1079 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[107a 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[107b 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[107c 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a38 gate 1513666131031545000 evaluation starts -[107d 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 signed by 0 principal evaluation starts (used [false]) -[107e 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[107f 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1080 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[1081 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a38 principal evaluation fails -[1082 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a38 gate 1513666131031545000 evaluation fails -[1083 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a50 gate 1513666131036396900 evaluation starts -[1084 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 signed by 0 principal evaluation starts (used [false]) -[1085 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[1086 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[1087 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[1088 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a50 principal evaluation fails -[1089 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a50 gate 1513666131036396900 evaluation fails -[108a 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a68 gate 1513666131039743500 evaluation starts -[108b 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 signed by 0 principal evaluation starts (used [false]) -[108c 12-19 06:48:51.03 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[108d 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[108e 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[108f 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[1090 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 principal matched by identity 0 -[1091 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 69 b3 a4 70 ed a3 17 74 c0 59 f4 0c bf f9 f0 bc |i..p...t.Y......| -00000010 b8 b8 c8 b7 89 43 65 a9 ac 58 b6 67 ae 25 96 7a |.....Ce..X.g.%.z| -[1092 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 31 24 f4 81 f9 10 68 bd d3 ac a9 77 |0D. 1$....h....w| -00000010 ed bd 30 d1 4c 5d 63 75 5e 2d 3f e1 87 80 14 96 |..0.L]cu^-?.....| -00000020 34 38 78 06 02 20 50 62 fb 48 b4 ce c8 de 3c b1 |48x.. Pb.H....<.| -00000030 39 37 19 d2 7b ea 5b 0e 0d 91 e3 c4 e7 72 66 01 |97..{.[......rf.| -00000040 db 1e 3a 9b 29 a7 |..:.).| -[1093 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180a68 principal evaluation succeeds for identity 0 -[1094 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180a68 gate 1513666131039743500 evaluation succeeds -[1095 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[1096 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc4202aa200) start: > stop: > -[1097 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [5] -[1098 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49877] -[1099 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9337], Going to peek [8] bytes -[109a 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4666], placementInfo={fileNum=[0], startOffset=[49877], bytesOffset=[49879]} -[109b 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc4202aa200) -[109c 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc4202aa200), waiting for new SeekInfo -[109d 12-19 06:48:51.04 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[109e 12-19 06:48:51.05 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[109f 12-19 06:48:51.05 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[10a0 12-19 06:48:51.19 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[10a1 12-19 06:48:51.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[10a2 12-19 06:48:51.19 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[10a3 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[10a4 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c8 gate 1513666131200693800 evaluation starts -[10a5 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 signed by 0 principal evaluation starts (used [false]) -[10a6 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[10a7 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[10a8 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[10a9 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263c8 principal evaluation fails -[10aa 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263c8 gate 1513666131200693800 evaluation fails -[10ab 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263d8 gate 1513666131202143000 evaluation starts -[10ac 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 signed by 0 principal evaluation starts (used [false]) -[10ad 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[10ae 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[10af 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[10b0 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263d8 principal evaluation fails -[10b1 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263d8 gate 1513666131202143000 evaluation fails -[10b2 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e8 gate 1513666131203914100 evaluation starts -[10b3 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 signed by 0 principal evaluation starts (used [false]) -[10b4 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[10b5 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[10b6 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[10b7 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[10b8 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 principal matched by identity 0 -[10b9 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 0e 2d cd cb 25 25 64 8b f7 12 63 b3 77 0b 03 5d |.-..%%d...c.w..]| -00000010 25 02 35 69 73 77 a2 73 a2 82 0f 96 95 17 8b d6 |%.5isw.s........| -[10ba 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 65 ec 1f 60 fd 07 a8 36 4f fd |0E.!..e..`...6O.| -00000010 d9 7c 9d c8 f3 85 43 bc 21 d5 87 1f b4 3a 39 1d |.|....C.!....:9.| -00000020 c2 6a 0c 3d fa 02 20 5b 84 ca 6a 77 64 8f ba 8c |.j.=.. [..jwd...| -00000030 fc 85 81 5d 35 14 66 94 e7 6a 49 7c f7 e6 29 0c |...]5.f..jI|..).| -00000040 01 aa 9d 97 7d a4 8b |....}..| -[10bb 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc4200263e8 principal evaluation succeeds for identity 0 -[10bc 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc4200263e8 gate 1513666131203914100 evaluation succeeds -[10bd 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42084c2c0 1 [0xc4201805c8 0xc4201808a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42031f460 1 [0xc420180420]})]} -[10be 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Received seekInfo (0xc420228780) start: > stop: > -[10bf 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] -[10c0 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -[10c1 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes -[10c2 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -[10c3 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420228780) -[10c4 12-19 06:48:51.20 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Done delivering for (0xc420228780), waiting for new SeekInfo -[10c5 12-19 06:48:51.21 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[10c6 12-19 06:48:51.21 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[10c7 12-19 06:48:51.21 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[10c8 12-19 06:48:51.33 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[10c9 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[10ca 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[10cb 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[10cc 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180ac0 gate 1513666131332859000 evaluation starts -[10cd 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 signed by 0 principal evaluation starts (used [false]) -[10ce 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[10cf 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[10d0 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[10d1 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[10d2 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 principal matched by identity 0 -[10d3 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 2a 93 ee 3c 00 96 ad 6a 70 b7 63 91 e1 b8 e2 e5 |*..<...jp.c.....| -00000010 1b 3c 55 4a 13 b5 c9 01 af 44 35 7c e0 a4 af 25 |. DEBU Verify: sig = 00000000 30 44 02 20 20 20 8b 7e 93 9a ed c9 bb a2 c8 91 |0D. .~........| -00000010 dc b0 70 f7 69 37 dd ca 50 0b 1b 8b d2 7a fd ba |..p.i7..P....z..| -00000020 f1 c3 0c 5c 02 20 6e d6 ad f1 5f bf 3a 61 93 bd |...\. n..._.:a..| -00000030 d7 b9 f2 71 4a 64 83 dd c9 33 96 da 7a 20 2e 71 |...qJd...3..z .q| -00000040 38 19 36 84 bf 07 |8.6...| -[10d5 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420180ac0 principal evaluation succeeds for identity 0 -[10d6 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420180ac0 gate 1513666131332859000 evaluation succeeds -[10d7 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc4203c4e20 1 [0xc420180898]})]} -[10d8 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc420167a60) start: > stop: > -[10d9 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [0] -[10da 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[10db 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[23690], Going to peek [8] bytes -[10dc 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[10dd 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc420167a60) -[10de 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc420167a60), waiting for new SeekInfo -[10df 12-19 06:48:51.33 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[10e0 12-19 06:48:51.34 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[10e1 12-19 06:48:51.34 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[10e2 12-19 06:48:51.47 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[10e3 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop -[10e4 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[10e5 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.GetPolicy -> DEBU Returning policy Readers for evaluation -[10e6 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026438 gate 1513666131475550900 evaluation starts -[10e7 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 signed by 0 principal evaluation starts (used [false]) -[10e8 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d494943436a4343416247674177494241674952414e4a4e53786839677a50452b52564639616957594d6377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d5455774e7a55324d444a61467730794e7a45794d544d774e7a55324d444a614d465978437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d526f774741594456515144444246425a473170626b426c654746746347786c4c6d4e766254425a4d424d4742797147534d343941674547434371470a534d3439417745484130494142502f704979514c2f754858716757594555303230594d47375964735a433631546b534c4d79444a5932524f6253304a3851434d0a4779306b43744b66736a6e32567977655059736a4270504f72626759327977592f4f2b6a5454424c4d41344741315564447745422f775145417749486744414d0a42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494c4d68303466334c4178434f356f566e6d30674f79557534564a5066644d530a4f4f4d515a616d78385555334d416f4743437147534d343942414d43413063414d4551434943333930307a4d2f62385747754e306156302b35423370364d515a0a754d3179476f7475626c74486159567841694266452b2b79727842524a356a55425348503173794878444134434a6b502b492b7a576e47784334413858673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -[10e9 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCjCCAbGgAwIBAgIRANJNSxh9gzPE+RVF9aiWYMcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFYxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRowGAYDVQQDDBFBZG1pbkBleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG -SM49AwEHA0IABP/pIyQL/uHXqgWYEU020YMG7YdsZC61TkSLMyDJY2RObS0J8QCM -Gy0kCtKfsjn2VywePYsjBpPOrbgY2ywY/O+jTTBLMA4GA1UdDwEB/wQEAwIHgDAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAILMh04f3LAxCO5oVnm0gOyUu4VJPfdMS -OOMQZamx8UU3MAoGCCqGSM49BAMCA0cAMEQCIC3900zM/b8WGuN0aV0+5B3p6MQZ -uM1yGotubltHaYVxAiBfE++yrxBRJ5jUBSHP1syHxDA4CJkP+I+zWnGxC4A8Xg== ------END CERTIFICATE----- -[10ea 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[10eb 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[10ec 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 principal matched by identity 0 -[10ed 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 e6 50 26 c5 27 0a 04 3b 07 8f 94 1c bb 7b 10 c3 |.P&.'..;.....{..| -00000010 de df d8 48 dd cd cd 0f c7 ef f8 9c a2 76 ec 13 |...H.........v..| -[10ee 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b3 75 16 3a 38 d7 fc 19 34 2e 17 |0E.!..u.:8...4..| -00000010 85 c7 ca 78 4a 41 17 6b 7b c4 6f ba 4b 72 b0 85 |...xJA.k{.o.Kr..| -00000020 6a ad 9c d9 99 02 20 31 0e bf cc 92 5c f7 97 ab |j..... 1....\...| -00000030 1f 5d 82 0a 96 33 7c 0e 4a 2d 3a 3c a8 52 66 2b |.]...3|.J-:<.Rf+| -00000040 6f 89 61 6d d0 33 fd |o.am.3.| -[10ef 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1.func2 -> DEBU 0xc420026438 principal evaluation succeeds for identity 0 -[10f0 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply.Evaluate...Evaluate.func1 -> DEBU 0xc420026438 gate 1513666131475550900 evaluation succeeds -[10f1 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/sigfilter] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Apply -> DEBU Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc4203c4e20 1 [0xc420180898]})]} -[10f2 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Received seekInfo (0xc420ad6940) start: > stop: > -[10f3 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [1] -[10f4 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -[10f5 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14608], Going to peek [8] bytes -[10f6 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -[10f7 12-19 06:48:51.47 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Delivering block for (0xc420ad6940) -[10f8 12-19 06:48:51.48 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: testchainid] Done delivering for (0xc420ad6940), waiting for new SeekInfo -[10f9 12-19 06:48:51.48 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message -[10fa 12-19 06:48:51.48 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from stream: rpc error: code = Canceled desc = context canceled -[10fb 12-19 06:48:51.48 UTC] [main] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[f9d 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteBlock.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59184], isChainEmpty=[false], lastBlockNumber=[6] +[f9e 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/orderer/multichain] WriteBlock -> DEBU [channel: businesschannel] Wrote block 6 +[f9f 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +[fa1 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [6] +[fa2 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54515] +[fa3 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes +[fa0 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54515] +[fa4 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54515], bytesOffset=[54517]} +[fa5 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4669], Going to peek [8] bytes +[fa7 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.Next.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[54515], bytesOffset=[54517]} +[fa6 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc420343d80) +[fa8 01-12 22:57:54.40 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU [channel: businesschannel] Delivering block for (0xc42090d900) diff --git a/hyperledger_fabric/v1.0.5/solo/logs/dev_peer0.log b/hyperledger_fabric/v1.0.5/solo/logs/dev_peer0.log index 9aaf70e5..0db0620a 100644 --- a/hyperledger_fabric/v1.0.5/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/v1.0.5/solo/logs/dev_peer0.log @@ -1,4 +1,4 @@ -[001 12-19 06:47:31.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[001 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: Version: 1.0.5 Go version: go1.9.2 OS/Arch: linux/amd64 @@ -8,1230 +8,1230 @@ Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[002 12-19 06:47:31.87 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[003 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[004 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -[005 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -[006 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -[007 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -[008 12-19 06:47:31.88 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -[009 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -[00a 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -[00b 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -[00c 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -[00d 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -[00e 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -[00f 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -[010 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -[011 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -[012 12-19 06:47:31.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -[013 12-19 06:47:31.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[014 12-19 06:47:31.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -[015 12-19 06:47:31.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -[016 12-19 06:47:31.90 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[017 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[018 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[019 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[01a 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[01b 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[01c 12-19 06:47:31.91 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[01d 12-19 06:47:31.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -[01e 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -[01f 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[020 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -[021 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -[022 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -[023 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[024 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[025 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -[026 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -[027 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -[028 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[029 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -[02a 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[02b 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[02c 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -[02d 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[02e 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[02f 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -PjNMGC1fMR/dFfg4xQ== +[002 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +[003 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +[004 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +[005 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +[006 01-12 22:56:37.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +[007 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +[008 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +[009 01-12 22:56:37.53 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +[00a 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +[00b 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +[00c 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +[00d 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +[00e 01-12 22:56:37.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +[00f 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +[010 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +[011 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +[012 01-12 22:56:37.55 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +[013 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +[014 01-12 22:56:37.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 +[015 01-12 22:56:37.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 +[016 01-12 22:56:37.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +[017 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +[018 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +[019 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +[01a 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +[01b 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +[01c 01-12 22:56:37.58 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +[01d 01-12 22:56:37.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +[01e 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +[01f 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +[020 01-12 22:56:37.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +[021 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +[022 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +[023 01-12 22:56:37.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[024 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[025 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +[026 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +[027 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +[028 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +[029 01-12 22:56:37.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +[02a 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +[02b 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[02c 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +[02d 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[02e 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +[02f 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +BbweiNbyJT9x2USI/2Y= -----END CERTIFICATE----- -[030 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[031 12-19 06:47:31.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[032 12-19 06:47:31.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[033 12-19 06:47:31.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -[034 12-19 06:47:31.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -PjNMGC1fMR/dFfg4xQ== +[030 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[031 01-12 22:56:37.64 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[032 01-12 22:56:37.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[033 01-12 22:56:37.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +[034 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +BbweiNbyJT9x2USI/2Y= -----END CERTIFICATE----- -[035 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [143 82 170 12 147 98 180 175 202 109 176 15 125 139 169 198 18 42 139 13 51 79 107 174 236 26 68 151 60 128 120 0] peer0.org1.example.com:7051} incTime is 1513666051950505200 -[036 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [143 82 170 12 147 98 180 175 202 109 176 15 125 139 169 198 18 42 139 13 51 79 107 174 236 26 68 151 60 128 120 0] peer0.org1.example.com:7051} -[037 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[038 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[039 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQbnrJk/dv2B1LIZqmwFKHBDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMTUwNzU2MDFaFw0yNzEyMTMwNzU2MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAED5fTgfCxt3WpAYLdQTSTEOYL5sce7tu/ -5cSnjYikp+XUchAGIN99Zeb1Ib7UCl3Z/2azE1Q/LwY9TcvLm4/vl6NNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgquOQdK7UQ+Ag -6hA4D9Z31yPTqN9fehzkYgo0VEYSnEIwCgYIKoZIzj0EAwIDSAAwRQIhAPUtwj6g -hHvNnQCOjVsUIEPtsMhib4ldkVpd9biQ4IwRAiAqjp4y0mxZkN43w5t75a2+yfga -PjNMGC1fMR/dFfg4xQ== +[035 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [204 219 18 36 55 32 226 148 168 209 89 11 78 19 213 238 91 60 42 69 78 249 15 120 203 10 93 182 248 205 134 17] peer0.org1.example.com:7051} incTime is 1515797797662992722 +[036 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [204 219 18 36 55 32 226 148 168 209 89 11 78 19 213 238 91 60 42 69 78 249 15 120 203 10 93 182 248 205 134 17] peer0.org1.example.com:7051} +[037 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[038 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +[039 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAK5tp1McmAj9quBa84bMi14wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABGkExT+9wFFpK52r3nW7sZiUyjg3hxUu +L7IYX39Gnl+T1MxJr5RPPBj6LI1FjRkZ8mFds8MoweGwbLvtFxtJuTujTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1 +IUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCKbEge +rcSh17k/1ktgJ0RNsjpWdyvPr+p/7AztY/tMkAIgViHXGE/71Z68clJ9bula99Hi +BbweiNbyJT9x2USI/2Y= -----END CERTIFICATE----- -[03a 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[03b 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[03c 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[03d 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[03e 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[03f 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A208F52AA0C9362B4AF...0A2D2D2D2D2D454E44202D2D2D2D2D0A -[040 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 7B9908F8D368A660B2360494F2FBB601AB33B8BC902A53EDCF2A1FAE10440897 -[041 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=7b26bdd8-6494-457a-9ea4-3856d59343c6,syscc=true,proposal=0x0,canname=cscc:1.0.5 -[042 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched -[043 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[044 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[045 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[046 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -[047 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[048 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[03a 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[03b 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[03c 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[03d 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[03e 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20CCDB12243720E294...0A2D2D2D2D2D454E44202D2D2D2D2D0A +[03f 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 27897CF7E2E0384951A61E7426BF751C55E7D7847979D984CDF261366BE0D3FB +[040 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=f8c72579-283b-4394-be73-55cd6cc16f37,syscc=true,proposal=0x0,canname=cscc:1.0.5 +[041 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.5 is being launched +[042 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[043 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[044 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +[045 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[046 01-12 22:56:37.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=cscc:1.0.5 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[049 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock -[04a 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock -[04b 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 -[04c 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) -[04d 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[04e 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[04f 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 -[050 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[051 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[052 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[053 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 -[054 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[055 12-19 06:47:31.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 -[056 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[057 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[058 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -[05a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: DFAFBFAFC7A6C3BEB0126C045051C7D129D0082F81D51FF25A2201D7255DD9B8 -[059 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[05c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[05d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[05e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[05f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 -[060 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED -[061 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[05b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[063 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[062 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[064 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[067 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[066 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed -[068 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[065 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[069 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[06a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]Move state message READY -[06c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8]Fabric side Handling ChaincodeMessage of type: READY in state established -[06d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7b26bdd8]Entered state ready -[06b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[06e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7b26bdd8-6494-457a-9ea4-3856d59343c6 -[06f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]sending state message READY -[070 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Received message READY from shim -[071 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b26bdd8]Handling ChaincodeMessage of type: READY(state:established) -[072 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[073 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[074 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[075 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -[076 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b26bdd8]Inside sendExecuteMessage. Message INIT -[077 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[078 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b26bdd8]sendExecuteMsg trigger event INIT -[079 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]Move state message INIT -[07a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[07b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[07c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]sending state message INIT -[07d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Received message INIT from shim -[07e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b26bdd8]Handling ChaincodeMessage of type: INIT(state:ready) -[07f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[080 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7b26bdd8]Received INIT, initializing chaincode -[081 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[082 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[083 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Init get response status: 200 -[084 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Init succeeded. Sending COMPLETED -[085 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]Move state message COMPLETED -[086 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b26bdd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[087 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b26bdd8]send state message COMPLETED -[088 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b26bdd8]Received message COMPLETED from shim -[089 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[08a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b26bdd8-6494-457a-9ea4-3856d59343c6]HandleMessage- COMPLETED. Notify -[08b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7b26bdd8-6494-457a-9ea4-3856d59343c6 -[08c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[08d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[08e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=453f4da5-7023-4559-ab55-6acd3520e38a,syscc=true,proposal=0x0,canname=lscc:1.0.5 -[08f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched -[090 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[091 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[092 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -[093 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[094 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[047 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[048 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +[049 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +[04a 01-12 22:56:37.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.5) lock +[04b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.5) lock +[04c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.5 +[04d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.5) +[04e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +[04f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[050 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[051 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +[052 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: D3BE232AA51B4F1B6325B320B10A35B9DE4DF548B1691C7DB403D8C912D4F185 +[053 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[054 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[055 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +[056 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +[057 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.5 +[058 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[059 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[05a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.5 +[05b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[05c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.5 +[05d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[05e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[05f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[060 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[061 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.5 +[062 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.5" , sending back REGISTERED +[063 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[064 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[065 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[066 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[067 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.5 launch seq completed +[068 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[069 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[06a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]Move state message READY +[06b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579]Fabric side Handling ChaincodeMessage of type: READY in state established +[06c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f8c72579]Entered state ready +[06d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f8c72579-283b-4394-be73-55cd6cc16f37 +[06e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]sending state message READY +[06f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Received message READY from shim +[070 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8c72579]Handling ChaincodeMessage of type: READY(state:established) +[071 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[072 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[073 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[074 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +[075 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8c72579]Inside sendExecuteMessage. Message INIT +[076 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[077 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f8c72579]sendExecuteMsg trigger event INIT +[078 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]Move state message INIT +[079 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[07a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[07b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]sending state message INIT +[07c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Received message INIT from shim +[07d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8c72579]Handling ChaincodeMessage of type: INIT(state:ready) +[07e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[07f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f8c72579]Received INIT, initializing chaincode +[080 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[081 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[082 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Init get response status: 200 +[083 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Init succeeded. Sending COMPLETED +[084 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]Move state message COMPLETED +[085 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f8c72579]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[086 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f8c72579]send state message COMPLETED +[087 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f8c72579]Received message COMPLETED from shim +[088 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[089 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f8c72579-283b-4394-be73-55cd6cc16f37]HandleMessage- COMPLETED. Notify +[08a 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f8c72579-283b-4394-be73-55cd6cc16f37 +[08b 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[08c 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[08d 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=09e89d5e-81cf-4fa5-8c76-a64bb511b92a,syscc=true,proposal=0x0,canname=lscc:1.0.5 +[08e 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.5 is being launched +[08f 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[090 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[091 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +[092 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[093 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=lscc:1.0.5 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[095 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock -[096 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock -[097 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 -[098 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) -[099 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 -[09a 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[09b 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 -[09d 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[09c 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 -[09e 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[09f 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[0a0 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0a1 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0a2 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0a3 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 -[0a4 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED -[0a5 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0a6 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0a7 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed -[0a8 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0aa 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0a9 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0ab 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0ac 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]Move state message READY -[0ad 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5]Fabric side Handling ChaincodeMessage of type: READY in state established -[0ae 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [453f4da5]Entered state ready -[0af 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:453f4da5-7023-4559-ab55-6acd3520e38a -[0b0 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]sending state message READY -[0b1 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Received message READY from shim -[0b2 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [453f4da5]Handling ChaincodeMessage of type: READY(state:established) -[0b3 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0b4 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0b5 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0b6 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[0b7 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [453f4da5]Inside sendExecuteMessage. Message INIT -[0b8 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0b9 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [453f4da5]sendExecuteMsg trigger event INIT -[0ba 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]Move state message INIT -[0bb 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0bc 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0bd 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]sending state message INIT -[0be 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Received message INIT from shim -[0bf 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [453f4da5]Handling ChaincodeMessage of type: INIT(state:ready) -[0c0 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0c1 12-19 06:47:31.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [453f4da5]Received INIT, initializing chaincode -[0c2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0c3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Init get response status: 200 -[0c4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Init succeeded. Sending COMPLETED -[0c5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]Move state message COMPLETED -[0c6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [453f4da5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0c7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [453f4da5]send state message COMPLETED -[0c8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [453f4da5]Received message COMPLETED from shim -[0c9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0ca 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [453f4da5-7023-4559-ab55-6acd3520e38a]HandleMessage- COMPLETED. Notify -[0cb 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:453f4da5-7023-4559-ab55-6acd3520e38a -[0cc 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0cd 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[0ce 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=1775a65f-2f0e-4a6b-be62-3db2d8897634,syscc=true,proposal=0x0,canname=escc:1.0.5 -[0cf 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched -[0d0 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[0d1 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0d2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -[0d3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0d4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[094 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.5) lock +[095 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.5) lock +[096 01-12 22:56:37.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.5 +[097 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.5) +[098 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.5 +[099 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[09a 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[09b 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.5 +[09c 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[09d 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.5 +[09e 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[09f 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0a0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0a1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0a2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.5 +[0a3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.5" , sending back REGISTERED +[0a4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0a5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0a6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0a7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0a8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.5 launch seq completed +[0a9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0aa 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0ab 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]Move state message READY +[0ac 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e]Fabric side Handling ChaincodeMessage of type: READY in state established +[0ad 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [09e89d5e]Entered state ready +[0ae 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:09e89d5e-81cf-4fa5-8c76-a64bb511b92a +[0af 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]sending state message READY +[0b0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Received message READY from shim +[0b1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [09e89d5e]Handling ChaincodeMessage of type: READY(state:established) +[0b2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0b3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0b4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0b5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[0b6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [09e89d5e]Inside sendExecuteMessage. Message INIT +[0b7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0b8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [09e89d5e]sendExecuteMsg trigger event INIT +[0b9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]Move state message INIT +[0ba 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0bb 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0bc 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]sending state message INIT +[0bd 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Received message INIT from shim +[0be 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [09e89d5e]Handling ChaincodeMessage of type: INIT(state:ready) +[0bf 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[0c0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [09e89d5e]Received INIT, initializing chaincode +[0c1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +[0c2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Init get response status: 200 +[0c3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Init succeeded. Sending COMPLETED +[0c4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]Move state message COMPLETED +[0c5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [09e89d5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[0c6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [09e89d5e]send state message COMPLETED +[0c7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [09e89d5e]Received message COMPLETED from shim +[0c8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0c9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [09e89d5e-81cf-4fa5-8c76-a64bb511b92a]HandleMessage- COMPLETED. Notify +[0ca 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:09e89d5e-81cf-4fa5-8c76-a64bb511b92a +[0cb 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0cc 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[0cd 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.5,txid=4db14a4c-f346-41d3-a211-9e7d7d5f825d,syscc=true,proposal=0x0,canname=escc:1.0.5 +[0ce 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.5 is being launched +[0cf 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[0d0 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0d1 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +[0d2 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0d3 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=escc:1.0.5 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[0d5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock -[0d6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock -[0d7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 -[0d8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) -[0d9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 -[0db 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0dc 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 -[0dd 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0da 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 -[0de 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0df 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[0e0 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0e1 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0e2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0e3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 -[0e4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED -[0e5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0e6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0e7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0e8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0e9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed -[0ea 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0eb 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0ec 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]Move state message READY -[0ed 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f]Fabric side Handling ChaincodeMessage of type: READY in state established -[0ee 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1775a65f]Entered state ready -[0ef 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1775a65f-2f0e-4a6b-be62-3db2d8897634 -[0f0 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]sending state message READY -[0f1 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Received message READY from shim -[0f3 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1775a65f]Handling ChaincodeMessage of type: READY(state:established) -[0f2 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0f4 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0f5 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0f6 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[0f7 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1775a65f]Inside sendExecuteMessage. Message INIT -[0f8 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0f9 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1775a65f]sendExecuteMsg trigger event INIT -[0fa 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]Move state message INIT -[0fb 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0fc 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0fd 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]sending state message INIT -[0fe 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Received message INIT from shim -[0ff 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1775a65f]Handling ChaincodeMessage of type: INIT(state:ready) -[100 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[101 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1775a65f]Received INIT, initializing chaincode -[102 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[103 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Init get response status: 200 -[104 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Init succeeded. Sending COMPLETED -[105 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]Move state message COMPLETED -[106 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1775a65f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[107 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1775a65f]send state message COMPLETED -[108 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1775a65f]Received message COMPLETED from shim -[109 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[10a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1775a65f-2f0e-4a6b-be62-3db2d8897634]HandleMessage- COMPLETED. Notify -[10b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1775a65f-2f0e-4a6b-be62-3db2d8897634 -[10c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[10d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -[10e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=7db4949c-c70a-44c0-a6da-70ccd92e973e,syscc=true,proposal=0x0,canname=vscc:1.0.5 -[10f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched -[110 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[111 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[112 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -[113 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[114 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[0d4 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.5) lock +[0d5 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.5) lock +[0d6 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.5 +[0d7 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.5) +[0d8 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.5 +[0d9 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0da 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[0db 01-12 22:56:37.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.5 +[0dc 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0dd 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.5 +[0de 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0df 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0e0 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0e1 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0e2 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.5 +[0e3 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.5" , sending back REGISTERED +[0e4 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0e5 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0e6 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0e7 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0e8 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.5 launch seq completed +[0e9 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0ea 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0eb 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]Move state message READY +[0ec 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c]Fabric side Handling ChaincodeMessage of type: READY in state established +[0ed 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4db14a4c]Entered state ready +[0ee 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4db14a4c-f346-41d3-a211-9e7d7d5f825d +[0ef 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]sending state message READY +[0f0 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Received message READY from shim +[0f1 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4db14a4c]Handling ChaincodeMessage of type: READY(state:established) +[0f2 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0f3 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0f4 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0f5 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[0f6 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4db14a4c]Inside sendExecuteMessage. Message INIT +[0f7 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0f8 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4db14a4c]sendExecuteMsg trigger event INIT +[0f9 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]Move state message INIT +[0fa 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0fb 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0fc 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]sending state message INIT +[0fd 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Received message INIT from shim +[0fe 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4db14a4c]Handling ChaincodeMessage of type: INIT(state:ready) +[0ff 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[100 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4db14a4c]Received INIT, initializing chaincode +[101 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[102 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Init get response status: 200 +[103 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Init succeeded. Sending COMPLETED +[104 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]Move state message COMPLETED +[105 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4db14a4c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[106 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4db14a4c]send state message COMPLETED +[107 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4db14a4c]Received message COMPLETED from shim +[108 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[109 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4db14a4c-f346-41d3-a211-9e7d7d5f825d]HandleMessage- COMPLETED. Notify +[10a 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4db14a4c-f346-41d3-a211-9e7d7d5f825d +[10b 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[10c 01-12 22:56:37.70 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +[10d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[10e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.5,txid=ab0bffba-ccc2-4501-9e12-678936a34c72,syscc=true,proposal=0x0,canname=vscc:1.0.5 +[10f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.5 is being launched +[110 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[111 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[112 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +[113 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[114 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=vscc:1.0.5 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[115 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock -[116 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock -[117 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 -[118 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) -[11a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 -[119 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 -[11b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[11d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 -[11e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[11c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[11f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[120 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[121 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[122 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[123 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 -[124 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED -[125 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[126 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[128 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[127 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed -[129 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[12a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[12b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[12c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]Move state message READY -[12d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c]Fabric side Handling ChaincodeMessage of type: READY in state established -[12e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7db4949c]Entered state ready -[12f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7db4949c-c70a-44c0-a6da-70ccd92e973e -[130 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]sending state message READY -[131 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Received message READY from shim -[132 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[133 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7db4949c]Handling ChaincodeMessage of type: READY(state:established) -[134 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[135 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[136 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -[137 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7db4949c]Inside sendExecuteMessage. Message INIT -[138 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[139 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7db4949c]sendExecuteMsg trigger event INIT -[13a 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]Move state message INIT -[13b 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[13c 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[13d 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]sending state message INIT -[13e 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Received message INIT from shim -[13f 12-19 06:47:31.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7db4949c]Handling ChaincodeMessage of type: INIT(state:ready) -[140 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[141 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7db4949c]Received INIT, initializing chaincode -[142 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Init get response status: 200 -[143 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Init succeeded. Sending COMPLETED -[144 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]Move state message COMPLETED -[145 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7db4949c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[146 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7db4949c]send state message COMPLETED -[147 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7db4949c]Received message COMPLETED from shim -[148 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[149 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7db4949c-c70a-44c0-a6da-70ccd92e973e]HandleMessage- COMPLETED. Notify -[14a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7db4949c-c70a-44c0-a6da-70ccd92e973e -[14b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[14c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -[14d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=4184210c-4f0d-40ee-8413-0f1fdf15cf34,syscc=true,proposal=0x0,canname=qscc:1.0.5 -[14e 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched -[14f 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[150 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[151 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) -[152 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[153 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[115 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.5) lock +[116 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.5) lock +[117 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.5 +[118 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.5) +[119 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.5 +[11a 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[11b 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[11c 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.5 +[11d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[11e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.5 +[11f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[120 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[121 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[122 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[123 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.5 +[124 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.5" , sending back REGISTERED +[125 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[126 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[127 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[128 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[129 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.5 launch seq completed +[12a 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[12b 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[12c 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]Move state message READY +[12d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba]Fabric side Handling ChaincodeMessage of type: READY in state established +[12e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ab0bffba]Entered state ready +[12f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ab0bffba-ccc2-4501-9e12-678936a34c72 +[130 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]sending state message READY +[131 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Received message READY from shim +[132 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab0bffba]Handling ChaincodeMessage of type: READY(state:established) +[133 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[134 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[135 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[136 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +[137 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab0bffba]Inside sendExecuteMessage. Message INIT +[138 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[139 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab0bffba]sendExecuteMsg trigger event INIT +[13a 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]Move state message INIT +[13b 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[13c 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[13d 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]sending state message INIT +[13e 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Received message INIT from shim +[13f 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab0bffba]Handling ChaincodeMessage of type: INIT(state:ready) +[140 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[141 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ab0bffba]Received INIT, initializing chaincode +[142 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Init get response status: 200 +[143 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Init succeeded. Sending COMPLETED +[144 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]Move state message COMPLETED +[145 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab0bffba]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[146 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab0bffba]send state message COMPLETED +[147 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab0bffba]Received message COMPLETED from shim +[148 01-12 22:56:37.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[149 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ab0bffba-ccc2-4501-9e12-678936a34c72]HandleMessage- COMPLETED. Notify +[14a 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ab0bffba-ccc2-4501-9e12-678936a34c72 +[14b 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[14c 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +[14d 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.5,txid=c6f9e5bc-1211-49ec-adda-a6a312bacf4a,syscc=true,proposal=0x0,canname=qscc:1.0.5 +[14e 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.5 is being launched +[14f 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[150 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[151 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.5(networkid:dev,peerid:peer0.org1.example.com) +[152 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[153 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=qscc:1.0.5 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[154 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock -[155 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock -[156 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 -[157 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) -[158 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 -[159 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[15a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 -[15b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[15c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[15d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 -[15e 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[15f 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[160 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[161 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[162 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 -[163 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED -[164 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[165 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[167 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[166 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed -[168 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[169 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[16a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[16b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]Move state message READY -[16c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c]Fabric side Handling ChaincodeMessage of type: READY in state established -[16d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4184210c]Entered state ready -[16e 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4184210c-4f0d-40ee-8413-0f1fdf15cf34 -[16f 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]sending state message READY -[170 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Received message READY from shim -[172 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4184210c]Handling ChaincodeMessage of type: READY(state:established) -[171 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[173 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[174 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[175 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -[176 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4184210c]Inside sendExecuteMessage. Message INIT -[177 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[178 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4184210c]sendExecuteMsg trigger event INIT -[179 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]Move state message INIT -[17a 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[17b 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[17c 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]sending state message INIT -[17d 12-19 06:47:31.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Received message INIT from shim -[17e 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4184210c]Handling ChaincodeMessage of type: INIT(state:ready) -[17f 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[180 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4184210c]Received INIT, initializing chaincode -[181 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[182 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[183 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Init get response status: 200 -[184 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Init succeeded. Sending COMPLETED -[185 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]Move state message COMPLETED -[186 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4184210c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[187 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4184210c]send state message COMPLETED -[188 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4184210c]Received message COMPLETED from shim -[189 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[18a 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4184210c-4f0d-40ee-8413-0f1fdf15cf34]HandleMessage- COMPLETED. Notify -[18b 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4184210c-4f0d-40ee-8413-0f1fdf15cf34 -[18c 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[18d 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[18e 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -[18f 12-19 06:47:31.99 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[190 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[191 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -[192 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -[193 12-19 06:47:32.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -[194 12-19 06:47:32.03 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' -[195 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -[196 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -[197 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -[198 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -[199 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -[19a 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -[19b 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -[19c 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -[19d 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -[19e 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -[19f 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -[1a0 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -[1a1 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -[1a2 12-19 06:47:32.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -[1a3 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[1a4 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215c1530 -[1a5 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[1a6 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1a7 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[1a8 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[1a9 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1aa 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421581cc0, header 0xc4215c15f0 -[1ab 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[1ac 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 -[1ad 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 channel id: -[1ae 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 channel id: version: 1.0.5 -[1af 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582,syscc=true,proposal=0xc421581cc0,canname=cscc:1.0.5 -[1b0 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -[1b1 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[1b2 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -[1b3 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25cce164]Inside sendExecuteMessage. Message TRANSACTION -[1b4 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[1b5 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[1b6 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25cce164]sendExecuteMsg trigger event TRANSACTION -[1b7 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25cce164]Move state message TRANSACTION -[1b8 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25cce164]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1b9 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1ba 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25cce164]sending state message TRANSACTION -[1bb 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]Received message TRANSACTION from shim -[1bc 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25cce164]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1bd 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [25cce164]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1be 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1bf 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1c0 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[1c1 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[1c2 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[1c3 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[1c4 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[1c5 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[1c6 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[1c7 12-19 06:47:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc421720700)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[1c8 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -[1c9 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[1ca 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215e8a80), Data:(*common.BlockData)(0xc421607c00), Metadata:(*common.BlockMetadata)(0xc421607c40)}, doMVCCValidation=true -[1cb 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[1cc 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -[1cd 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x92, 0x6f, 0xf8, 0x3, 0x23, 0x6, 0xbf, 0x46, 0xf9, 0xfb, 0x4, 0xfe, 0x90, 0xa6, 0x92, 0x13, 0x72, 0x66, 0xc9, 0x7a, 0x7f, 0xd3, 0xcd, 0x1c, 0x75, 0xda, 0x80, 0xd5, 0xde, 0x77, 0x36, 0xac} txOffsets= -txId= locPointer=offset=38, bytesLength=11892 +[154 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.5) lock +[155 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.5) lock +[156 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.5 +[157 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.5) +[158 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.5 +[159 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[15a 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[15b 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.5 +[15c 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[15d 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.5 +[15e 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[15f 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[160 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[161 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[162 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.5 +[163 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.5" , sending back REGISTERED +[164 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[165 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[166 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[167 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[168 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.5 launch seq completed +[169 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[16a 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[16b 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]Move state message READY +[16c 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc]Fabric side Handling ChaincodeMessage of type: READY in state established +[16d 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c6f9e5bc]Entered state ready +[16e 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c6f9e5bc-1211-49ec-adda-a6a312bacf4a +[16f 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]sending state message READY +[170 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Received message READY from shim +[171 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6f9e5bc]Handling ChaincodeMessage of type: READY(state:established) +[172 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[173 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[174 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[175 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +[176 01-12 22:56:37.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c6f9e5bc]Inside sendExecuteMessage. Message INIT +[177 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[178 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c6f9e5bc]sendExecuteMsg trigger event INIT +[179 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]Move state message INIT +[17a 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[17b 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[17c 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]sending state message INIT +[17d 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Received message INIT from shim +[17e 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6f9e5bc]Handling ChaincodeMessage of type: INIT(state:ready) +[17f 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[180 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c6f9e5bc]Received INIT, initializing chaincode +[181 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[182 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[183 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Init get response status: 200 +[184 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Init succeeded. Sending COMPLETED +[185 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]Move state message COMPLETED +[186 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c6f9e5bc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[187 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c6f9e5bc]send state message COMPLETED +[188 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c6f9e5bc]Received message COMPLETED from shim +[189 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[18a 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c6f9e5bc-1211-49ec-adda-a6a312bacf4a]HandleMessage- COMPLETED. Notify +[18b 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c6f9e5bc-1211-49ec-adda-a6a312bacf4a +[18c 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[18d 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[18e 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +[18f 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[190 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[191 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +[192 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +[193 01-12 22:56:37.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +[194 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +[195 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +[196 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +[197 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +[198 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +[199 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +[19a 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +[19b 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +[19c 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +[19d 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +[19e 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +[19f 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +[1a0 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +[1a1 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +[1a2 01-12 22:56:37.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +[1a3 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[1a4 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421523050 +[1a5 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[1a6 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1a7 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[1a8 01-12 22:56:38.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1a9 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1aa 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420235360, header 0xc4215230e0 +[1ab 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[1ac 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca +[1ad 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca channel id: +[1ae 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca channel id: version: 1.0.5 +[1af 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.5,txid=9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca,syscc=true,proposal=0xc420235360,canname=cscc:1.0.5 +[1b0 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +[1b1 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1b2 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +[1b3 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9015c99b]Inside sendExecuteMessage. Message TRANSACTION +[1b4 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1b5 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1b6 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9015c99b]sendExecuteMsg trigger event TRANSACTION +[1b7 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9015c99b]Move state message TRANSACTION +[1b8 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9015c99b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1b9 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1ba 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9015c99b]sending state message TRANSACTION +[1bb 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]Received message TRANSACTION from shim +[1bc 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9015c99b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1bd 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9015c99b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1be 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +[1bf 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +[1c0 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[1c1 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[1c2 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[1c3 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[1c4 01-12 22:56:38.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[1c5 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[1c6 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[1c7 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4216880c0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[1c8 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +[1c9 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[1ca 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42163c100), Data:(*common.BlockData)(0xc4216090a0), Metadata:(*common.BlockMetadata)(0xc4216090e0)}, doMVCCValidation=true +[1cb 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[1cc 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +[1cd 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x5c, 0xf4, 0xc9, 0xc2, 0xb6, 0xc2, 0xa5, 0x23, 0xc5, 0xa0, 0x98, 0xfb, 0xeb, 0x60, 0x6, 0xc0, 0xe9, 0x75, 0xc3, 0xae, 0x68, 0xd7, 0x40, 0xa1, 0xc3, 0x4e, 0xc0, 0xeb, 0xa6, 0xba, 0x14, 0x1} txOffsets= +txId= locPointer=offset=38, bytesLength=11883 ] -[1ce 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx ID: [] to index -[1cf 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11892] for tx number:[0] ID: [] to blockNumTranNum index -[1d0 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11936], isChainEmpty=[false], lastBlockNumber=[0] -[1d1 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -[1d2 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -[1d3 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[1d4 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -[1d5 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -[1d6 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[1d7 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -[1d8 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[1d9 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[1da 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1db 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1dc 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1dd 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1de 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[1df 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[1e0 12-19 06:47:35.11 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[1e1 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[1e2 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[1e3 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[1e4 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[1e5 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[1e6 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[1e7 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[1e8 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[1e9 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[1ea 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[1eb 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[1ec 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[1ed 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[1ee 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[1ef 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[1f0 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[1f1 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[1f2 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[1f3 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[1f4 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[1f5 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[1f6 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[1f7 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[1f8 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[1f9 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[1fa 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[1fb 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[1fc 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[1fd 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[1fe 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[1ff 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[200 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[201 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[202 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[203 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[204 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[205 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[206 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[207 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[208 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[209 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[20a 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[20b 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[20c 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[20d 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[20e 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[20f 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[210 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[211 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[212 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[213 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[214 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[215 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[216 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[217 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[218 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[219 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[21a 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[21b 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[21c 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[21d 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[21e 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[21f 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[220 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[221 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[222 12-19 06:47:35.12 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[223 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[224 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[225 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[226 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[227 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[228 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -[229 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[22a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6bb87e06-382d-44b7-abdf-c278c8e59d69] -[22b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=244b1f37-b1ed-4d40-a748-22d9bf5667dc,syscc=true,proposal=0x0,canname=cscc:1.0.5 -[22c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 -[22d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[22e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 -[22f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [244b1f37]Inside sendExecuteMessage. Message INIT -[230 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[231 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [244b1f37]sendExecuteMsg trigger event INIT -[232 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244b1f37]Move state message INIT -[233 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [244b1f37]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[234 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[235 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244b1f37]sending state message INIT -[236 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Received message INIT from shim -[237 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [244b1f37]Handling ChaincodeMessage of type: INIT(state:ready) -[238 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[239 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [244b1f37]Received INIT, initializing chaincode -[23a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[23b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Init get response status: 200 -[23c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Init succeeded. Sending COMPLETED -[23d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]Move state message COMPLETED -[23e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [244b1f37]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[23f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [244b1f37]send state message COMPLETED -[240 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [244b1f37]Received message COMPLETED from shim -[241 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [244b1f37]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[242 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [244b1f37-b1ed-4d40-a748-22d9bf5667dc]HandleMessage- COMPLETED. Notify -[243 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:244b1f37-b1ed-4d40-a748-22d9bf5667dc -[244 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[245 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[246 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6bb87e06-382d-44b7-abdf-c278c8e59d69] -[247 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[248 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [088ff8ee-541b-4314-b5dd-25312f70079b] -[249 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=1f51b4e6-8dce-4eeb-8dd2-cc7928bd3620,syscc=true,proposal=0x0,canname=lscc:1.0.5 -[24a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[24b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[24c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[24d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f51b4e6]Inside sendExecuteMessage. Message INIT -[24e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[24f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f51b4e6]sendExecuteMsg trigger event INIT -[250 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f51b4e6]Move state message INIT -[251 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f51b4e6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[252 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[253 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f51b4e6]sending state message INIT -[254 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Received message INIT from shim -[255 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f51b4e6]Handling ChaincodeMessage of type: INIT(state:ready) -[256 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[257 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1f51b4e6]Received INIT, initializing chaincode -[258 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Init get response status: 200 -[259 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Init succeeded. Sending COMPLETED -[25a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]Move state message COMPLETED -[25b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f51b4e6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[25c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f51b4e6]send state message COMPLETED -[25d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f51b4e6]Received message COMPLETED from shim -[25e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f51b4e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[25f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f51b4e6-8dce-4eeb-8dd2-cc7928bd3620]HandleMessage- COMPLETED. Notify -[260 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1f51b4e6-8dce-4eeb-8dd2-cc7928bd3620 -[261 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[262 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[263 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [088ff8ee-541b-4314-b5dd-25312f70079b] -[264 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[265 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f503ac9c-90eb-4a5e-b44f-62db064656c8] -[266 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=69d7c277-b133-41e3-9b1d-b91c766a37ed,syscc=true,proposal=0x0,canname=escc:1.0.5 -[267 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[268 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[269 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[26a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [69d7c277]Inside sendExecuteMessage. Message INIT -[26b 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[26c 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [69d7c277]sendExecuteMsg trigger event INIT -[26d 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69d7c277]Move state message INIT -[26e 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69d7c277]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[26f 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[270 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69d7c277]sending state message INIT -[271 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Received message INIT from shim -[272 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [69d7c277]Handling ChaincodeMessage of type: INIT(state:ready) -[273 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[274 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [69d7c277]Received INIT, initializing chaincode -[275 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[276 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Init get response status: 200 -[277 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Init succeeded. Sending COMPLETED -[278 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]Move state message COMPLETED -[279 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [69d7c277]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[27a 12-19 06:47:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69d7c277]send state message COMPLETED -[27b 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69d7c277]Received message COMPLETED from shim -[27c 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69d7c277]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[27d 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69d7c277-b133-41e3-9b1d-b91c766a37ed]HandleMessage- COMPLETED. Notify -[27e 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:69d7c277-b133-41e3-9b1d-b91c766a37ed -[27f 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[280 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -[281 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f503ac9c-90eb-4a5e-b44f-62db064656c8] -[282 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[283 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [dde36446-2216-4513-a077-383906d07c65] -[284 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=55b1faef-f5b4-465f-957f-03cab6e6c178,syscc=true,proposal=0x0,canname=vscc:1.0.5 -[285 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -[286 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[287 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -[288 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55b1faef]Inside sendExecuteMessage. Message INIT -[289 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[28a 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [55b1faef]sendExecuteMsg trigger event INIT -[28b 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55b1faef]Move state message INIT -[28c 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55b1faef]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[28d 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[28e 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55b1faef]sending state message INIT -[28f 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Received message INIT from shim -[290 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55b1faef]Handling ChaincodeMessage of type: INIT(state:ready) -[291 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[292 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [55b1faef]Received INIT, initializing chaincode -[293 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Init get response status: 200 -[294 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Init succeeded. Sending COMPLETED -[295 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]Move state message COMPLETED -[296 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55b1faef]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[297 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55b1faef]send state message COMPLETED -[298 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55b1faef]Received message COMPLETED from shim -[299 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55b1faef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[29a 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55b1faef-f5b4-465f-957f-03cab6e6c178]HandleMessage- COMPLETED. Notify -[29b 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55b1faef-f5b4-465f-957f-03cab6e6c178 -[29c 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[29d 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -[29e 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [dde36446-2216-4513-a077-383906d07c65] -[29f 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2a0 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4420853f-2399-408b-86db-6b2c4e70d1db] -[2a1 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=321fe956-6241-40d7-aef4-69a9c5c7c83e,syscc=true,proposal=0x0,canname=qscc:1.0.5 -[2a2 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -[2a3 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2a4 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -[2a5 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [321fe956]Inside sendExecuteMessage. Message INIT -[2a6 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2a7 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [321fe956]sendExecuteMsg trigger event INIT -[2a8 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [321fe956]Move state message INIT -[2a9 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [321fe956]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2aa 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2ab 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [321fe956]sending state message INIT -[2ac 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Received message INIT from shim -[2ad 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [321fe956]Handling ChaincodeMessage of type: INIT(state:ready) -[2ae 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2af 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [321fe956]Received INIT, initializing chaincode -[2b0 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[2b1 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Init get response status: 200 -[2b2 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Init succeeded. Sending COMPLETED -[2b3 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]Move state message COMPLETED -[2b4 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [321fe956]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2b5 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [321fe956]send state message COMPLETED -[2b6 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [321fe956]Received message COMPLETED from shim -[2b7 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [321fe956]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2b8 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [321fe956-6241-40d7-aef4-69a9c5c7c83e]HandleMessage- COMPLETED. Notify -[2b9 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:321fe956-6241-40d7-aef4-69a9c5c7c83e -[2ba 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2bb 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[2bc 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4420853f-2399-408b-86db-6b2c4e70d1db] -[2bd 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -[2be 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -[2bf 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -[2c0 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[2c1 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[2c2 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -[2c3 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -[2c4 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]Transaction completed. Sending COMPLETED -[2c5 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]Move state message COMPLETED -[2c6 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25cce164]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c7 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25cce164]send state message COMPLETED -[2c8 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25cce164]Received message COMPLETED from shim -[2c9 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25cce164]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2ca 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582]HandleMessage- COMPLETED. Notify -[2cb 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:25cce16459271ab502d30aeedaa8a4b88708c6b5519a9be92e21bde326440582 -[2cc 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2cd 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2ce 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[2cf 12-19 06:47:35.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[2d0 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[2d1 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420350630 -[2d2 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[2d3 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[2d4 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[2d5 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[2d6 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[2d7 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420294f00, header 0xc420350660 -[2d8 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[2d9 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 -[2da 12-19 06:47:40.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 channel id: -[2db 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 channel id: version: 1.0.5 -[2dc 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1,syscc=true,proposal=0xc420294f00,canname=lscc:1.0.5 -[2dd 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[2de 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[2df 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[2e0 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39a4ec75]Inside sendExecuteMessage. Message TRANSACTION -[2e1 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2e2 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[2e3 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39a4ec75]sendExecuteMsg trigger event TRANSACTION -[2e4 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39a4ec75]Move state message TRANSACTION -[2e5 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39a4ec75]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[2e6 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2e7 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39a4ec75]sending state message TRANSACTION -[2e8 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]Received message TRANSACTION from shim -[2e9 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39a4ec75]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[2ea 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [39a4ec75]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[2eb 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]Transaction completed. Sending COMPLETED -[2ec 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]Move state message COMPLETED -[2ed 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39a4ec75]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2ee 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39a4ec75]send state message COMPLETED -[2ef 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39a4ec75]Received message COMPLETED from shim -[2f0 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39a4ec75]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2f1 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1]HandleMessage- COMPLETED. Notify -[2f2 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:39a4ec7559faca5196e17f3b12b12819bdebf13f60aae2be645479656d0b28c1 -[2f3 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2f4 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2f5 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[2f6 12-19 06:47:40.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[2f7 12-19 06:47:41.14 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 -[2f8 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[2f9 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[2fa 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[2fb 12-19 06:47:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[2fc 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[2fd 12-19 06:47:41.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -[2ff 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[300 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[301 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[302 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42148d440 -[303 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -[304 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[305 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[306 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -[307 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[308 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[309 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4202f8000, header channel_header:"\010\001\032\006\010\207\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030-\212\373K\345\037\016\275QP\007\030\317\3431\330\330\205a\027\310\2712Q" -[30a 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[30b 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[30c 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[30d 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[30e 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[30f 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[310 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[311 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[312 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[313 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[314 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[315 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[316 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[317 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[318 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[319 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[31a 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[31b 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[31c 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[31d 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[31e 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[31f 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[320 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[2fe 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -[322 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -[323 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -[321 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[324 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[325 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[326 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[327 12-19 06:47:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[328 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[329 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[32a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[32b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[32c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[32d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[32e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[32f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[330 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[331 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[332 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[333 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[334 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[335 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[336 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[337 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[338 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[339 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[33a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[33b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[33c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[33d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[33e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[33f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[340 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[341 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[342 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[343 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[344 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[345 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[346 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[347 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[348 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[349 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[34a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[34b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[34c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[34d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[34e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[34f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[350 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[351 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[352 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[353 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[354 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[355 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[356 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[357 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[358 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[359 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[35a 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[35b 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[35c 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[35d 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[35e 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[35f 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[360 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[361 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[362 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[363 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[364 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[365 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[366 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[367 12-19 06:47:41.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[368 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[369 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[36a 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[36b 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[36c 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[36d 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[36e 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[36f 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[370 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[371 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[372 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[373 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[374 12-19 06:47:41.18 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[375 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[376 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[377 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[378 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[379 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -[37a 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[37b 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[37c 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[37d 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420147fc0), Data:(*common.BlockData)(0xc421669140), Metadata:(*common.BlockMetadata)(0xc421669180)}, doMVCCValidation=true -[37e 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[37f 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -[380 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x5e, 0x41, 0xdb, 0xb0, 0x5d, 0x2c, 0x98, 0x68, 0xf6, 0xa, 0x3b, 0x62, 0xbc, 0xbc, 0x80, 0x50, 0x64, 0xb, 0xd8, 0xcc, 0x0, 0x9b, 0x56, 0xca, 0xee, 0xff, 0xd4, 0x4b, 0x7b, 0xfc, 0x9d, 0x89} txOffsets= -txId= locPointer=offset=70, bytesLength=11913 +[1ce 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx ID: [] to index +[1cf 01-12 22:56:38.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11883] for tx number:[0] ID: [] to blockNumTranNum index +[1d0 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11927], isChainEmpty=[false], lastBlockNumber=[0] +[1d1 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +[1d2 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +[1d3 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[1d4 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +[1d5 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +[1d6 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[1d7 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +[1d8 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +[1d9 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[1da 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1db 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1dc 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1dd 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1de 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1df 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1e0 01-12 22:56:38.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1e1 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[1e2 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1e3 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1e4 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1e5 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1e6 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[1e7 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[1e8 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[1e9 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[1ea 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1eb 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1ec 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1ed 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[1ee 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[1ef 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[1f0 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[1f1 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1f2 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1f3 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[1f4 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[1f5 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[1f6 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[1f7 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1f8 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1f9 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[1fa 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1fb 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1fc 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[1fd 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[1fe 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[1ff 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[200 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[201 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[202 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[203 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[204 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[205 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[206 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[207 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[208 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[209 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[20a 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[20b 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[20c 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[20d 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[20e 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[20f 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[210 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[211 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[212 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[213 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[214 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[215 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[216 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[217 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[218 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[219 01-12 22:56:38.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[21a 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[21b 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[21c 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[21d 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[21e 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[21f 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[220 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[221 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[222 01-12 22:56:38.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[223 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[224 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[225 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[226 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[227 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +[228 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +[229 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[22a 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5b5abc6c-c981-4eda-8cda-c68918e6b2e6] +[22b 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.5,txid=3e6e0763-f1c9-492d-941a-9af31987998e,syscc=true,proposal=0x0,canname=cscc:1.0.5 +[22c 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.5 +[22d 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[22e 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.5 +[22f 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3e6e0763]Inside sendExecuteMessage. Message INIT +[230 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[231 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3e6e0763]sendExecuteMsg trigger event INIT +[232 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e6e0763]Move state message INIT +[233 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e6e0763]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[234 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[235 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e6e0763]sending state message INIT +[236 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Received message INIT from shim +[237 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e6e0763]Handling ChaincodeMessage of type: INIT(state:ready) +[238 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[239 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3e6e0763]Received INIT, initializing chaincode +[23a 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[23b 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Init get response status: 200 +[23c 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Init succeeded. Sending COMPLETED +[23d 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]Move state message COMPLETED +[23e 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e6e0763]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[23f 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e6e0763]send state message COMPLETED +[240 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e6e0763]Received message COMPLETED from shim +[241 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e6e0763]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[242 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e6e0763-f1c9-492d-941a-9af31987998e]HandleMessage- COMPLETED. Notify +[243 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e6e0763-f1c9-492d-941a-9af31987998e +[244 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[245 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[246 01-12 22:56:38.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5b5abc6c-c981-4eda-8cda-c68918e6b2e6] +[247 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[248 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e65856bb-50be-4d87-b928-4fea0bc450e6] +[249 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=52660561-ed6f-4d0d-a57b-756a9c70b196,syscc=true,proposal=0x0,canname=lscc:1.0.5 +[24a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[24b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[24c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[24d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [52660561]Inside sendExecuteMessage. Message INIT +[24e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[24f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [52660561]sendExecuteMsg trigger event INIT +[250 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [52660561]Move state message INIT +[251 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [52660561]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[252 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[253 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [52660561]sending state message INIT +[254 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Received message INIT from shim +[255 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [52660561]Handling ChaincodeMessage of type: INIT(state:ready) +[256 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[257 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [52660561]Received INIT, initializing chaincode +[258 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Init get response status: 200 +[259 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Init succeeded. Sending COMPLETED +[25a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]Move state message COMPLETED +[25b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [52660561]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[25c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [52660561]send state message COMPLETED +[25d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [52660561]Received message COMPLETED from shim +[25e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [52660561]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[25f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [52660561-ed6f-4d0d-a57b-756a9c70b196]HandleMessage- COMPLETED. Notify +[260 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:52660561-ed6f-4d0d-a57b-756a9c70b196 +[261 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[262 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[263 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e65856bb-50be-4d87-b928-4fea0bc450e6] +[264 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[265 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a224683b-b9d3-4892-aa5b-4aa0f75f4224] +[266 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=6f7b8c6d-14de-4527-b78e-650d03df23f1,syscc=true,proposal=0x0,canname=escc:1.0.5 +[267 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[268 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[269 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[26a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f7b8c6d]Inside sendExecuteMessage. Message INIT +[26b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[26c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f7b8c6d]sendExecuteMsg trigger event INIT +[26d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f7b8c6d]Move state message INIT +[26e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6f7b8c6d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[26f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[270 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f7b8c6d]sending state message INIT +[271 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Received message INIT from shim +[272 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f7b8c6d]Handling ChaincodeMessage of type: INIT(state:ready) +[273 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[274 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6f7b8c6d]Received INIT, initializing chaincode +[275 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[276 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Init get response status: 200 +[277 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Init succeeded. Sending COMPLETED +[278 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]Move state message COMPLETED +[279 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f7b8c6d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[27a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f7b8c6d]send state message COMPLETED +[27b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f7b8c6d]Received message COMPLETED from shim +[27c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6f7b8c6d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[27d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6f7b8c6d-14de-4527-b78e-650d03df23f1]HandleMessage- COMPLETED. Notify +[27e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6f7b8c6d-14de-4527-b78e-650d03df23f1 +[27f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[280 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +[281 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a224683b-b9d3-4892-aa5b-4aa0f75f4224] +[282 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[283 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b0c4b2e4-69b9-4eb7-8061-aa27cb4e369c] +[284 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=00eace57-7c6b-486b-8930-c572599c0f02,syscc=true,proposal=0x0,canname=vscc:1.0.5 +[285 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +[286 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[287 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +[288 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [00eace57]Inside sendExecuteMessage. Message INIT +[289 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[28a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [00eace57]sendExecuteMsg trigger event INIT +[28b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00eace57]Move state message INIT +[28c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00eace57]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[28d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[28e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00eace57]sending state message INIT +[28f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Received message INIT from shim +[290 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00eace57]Handling ChaincodeMessage of type: INIT(state:ready) +[291 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[292 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [00eace57]Received INIT, initializing chaincode +[293 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Init get response status: 200 +[294 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Init succeeded. Sending COMPLETED +[295 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]Move state message COMPLETED +[296 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [00eace57]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[297 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [00eace57]send state message COMPLETED +[298 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [00eace57]Received message COMPLETED from shim +[299 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00eace57]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[29a 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [00eace57-7c6b-486b-8930-c572599c0f02]HandleMessage- COMPLETED. Notify +[29b 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:00eace57-7c6b-486b-8930-c572599c0f02 +[29c 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[29d 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +[29e 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b0c4b2e4-69b9-4eb7-8061-aa27cb4e369c] +[29f 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2a0 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [997282d1-a8f3-46c9-808b-2bdf504387af] +[2a1 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=c341cc8d-8819-4a95-a847-c4d75196a21a,syscc=true,proposal=0x0,canname=qscc:1.0.5 +[2a2 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +[2a3 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2a4 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +[2a5 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c341cc8d]Inside sendExecuteMessage. Message INIT +[2a6 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2a7 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c341cc8d]sendExecuteMsg trigger event INIT +[2a8 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c341cc8d]Move state message INIT +[2a9 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c341cc8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2aa 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2ab 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c341cc8d]sending state message INIT +[2ac 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Received message INIT from shim +[2ad 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c341cc8d]Handling ChaincodeMessage of type: INIT(state:ready) +[2ae 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2af 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c341cc8d]Received INIT, initializing chaincode +[2b0 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[2b1 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Init get response status: 200 +[2b2 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Init succeeded. Sending COMPLETED +[2b3 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]Move state message COMPLETED +[2b4 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c341cc8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2b5 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c341cc8d]send state message COMPLETED +[2b6 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c341cc8d]Received message COMPLETED from shim +[2b7 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c341cc8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2b8 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c341cc8d-8819-4a95-a847-c4d75196a21a]HandleMessage- COMPLETED. Notify +[2b9 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c341cc8d-8819-4a95-a847-c4d75196a21a +[2ba 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2bb 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[2bc 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [997282d1-a8f3-46c9-808b-2bdf504387af] +[2bd 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +[2be 01-12 22:56:38.61 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +[2bf 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +[2c0 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[2c1 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[2c2 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +[2c3 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +[2c4 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]Transaction completed. Sending COMPLETED +[2c5 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]Move state message COMPLETED +[2c6 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9015c99b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2c7 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9015c99b]send state message COMPLETED +[2c8 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9015c99b]Received message COMPLETED from shim +[2c9 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9015c99b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2ca 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca]HandleMessage- COMPLETED. Notify +[2cb 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9015c99bf9a8fe7d057a468ec964fb52e8bae8552855751d1dfc7528dcca31ca +[2cc 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[2cd 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[2ce 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[2cf 01-12 22:56:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[2d0 01-12 22:56:44.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[2d1 01-12 22:56:44.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421652210 +[2d2 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[2d3 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[2d4 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[2d5 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[2d6 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[2d7 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421886230, header 0xc421652240 +[2d8 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[2d9 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 +[2da 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 channel id: +[2db 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 channel id: version: 1.0.5 +[2dc 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.5,txid=c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53,syscc=true,proposal=0xc421886230,canname=lscc:1.0.5 +[2dd 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[2de 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[2df 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[2e0 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c5772f4d]Inside sendExecuteMessage. Message TRANSACTION +[2e1 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2e2 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[2e3 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c5772f4d]sendExecuteMsg trigger event TRANSACTION +[2e4 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5772f4d]Move state message TRANSACTION +[2e5 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c5772f4d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[2e6 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2e7 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5772f4d]sending state message TRANSACTION +[2e8 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]Received message TRANSACTION from shim +[2e9 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5772f4d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[2ea 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c5772f4d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[2eb 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]Transaction completed. Sending COMPLETED +[2ec 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]Move state message COMPLETED +[2ed 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5772f4d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2ee 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5772f4d]send state message COMPLETED +[2ef 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c5772f4d]Received message COMPLETED from shim +[2f0 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c5772f4d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2f1 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53]HandleMessage- COMPLETED. Notify +[2f2 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c5772f4dd1637034b20aceebac0d9f4b0f0daf603386318d2ea0b20e7fbd7e53 +[2f3 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[2f4 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[2f5 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[2f6 01-12 22:56:44.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[2f7 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +[2f8 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +[2f9 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +[2fa 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +[2fb 01-12 22:56:44.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +[2fc 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +[2fd 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +[2fe 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +[2ff 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[300 01-12 22:56:44.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[301 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[302 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421876ea0 +[303 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +[304 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[305 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[306 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +[307 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[308 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[309 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42160a000, header channel_header:"\010\001\032\006\010\247\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030\231|\2218}\245\327\002]\247\274\271]\026\215\211\215\323\313\345\226\372\266\253" +[30a 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[30b 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[30c 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[30d 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[30e 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[30f 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[310 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[311 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[312 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[313 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[314 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[315 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[316 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[317 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[318 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[319 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[31b 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +[31a 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[31c 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[31d 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[31e 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[31f 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[320 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[321 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[322 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[323 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[324 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[325 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[326 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[327 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[328 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[329 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[32a 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[32b 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[32c 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[32d 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[32e 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[32f 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[330 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[332 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[333 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[334 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[335 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[336 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[337 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[338 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[331 01-12 22:56:44.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +[339 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[33a 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[33b 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[33c 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[33d 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[33e 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[33f 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[340 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[341 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[342 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[343 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[344 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[345 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[346 01-12 22:56:44.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[347 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[348 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[349 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[34a 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[34b 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[34c 01-12 22:56:44.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[34d 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[34e 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[34f 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[350 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[351 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[352 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[353 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[354 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[355 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[356 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[357 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[358 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[359 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[35a 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[35b 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[35c 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[35d 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[35e 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[35f 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[360 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[361 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[362 01-12 22:56:44.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[363 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[364 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[365 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[366 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[367 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[368 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[369 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[36a 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[36b 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[36c 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[36d 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[36e 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[36f 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[370 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[371 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[372 01-12 22:56:44.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[373 01-12 22:56:44.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[374 01-12 22:56:44.70 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[375 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[376 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[377 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[378 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[379 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +[37a 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[37b 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[37c 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[37d 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421505c80), Data:(*common.BlockData)(0xc421af41e0), Metadata:(*common.BlockMetadata)(0xc421af4220)}, doMVCCValidation=true +[37e 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[37f 01-12 22:56:44.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +[380 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x3, 0x9c, 0x49, 0xb9, 0xaf, 0x6a, 0x91, 0xfd, 0xf8, 0x3f, 0x52, 0x74, 0xb2, 0x71, 0x40, 0x60, 0x88, 0xf3, 0x9d, 0x13, 0xee, 0x65, 0x28, 0x9, 0x64, 0x35, 0x11, 0x36, 0xa9, 0x5f, 0xd2, 0xd5} txOffsets= +txId= locPointer=offset=70, bytesLength=11906 ] -[381 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx ID: [] to index -[382 12-19 06:47:41.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12006, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -[383 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25671], isChainEmpty=[false], lastBlockNumber=[1] -[384 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -[385 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[386 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[387 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[388 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -[389 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[38a 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -[38b 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[38c 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -[38d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[38e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[38f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[390 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[391 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[392 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[393 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[394 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[395 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a80480 -[396 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -[397 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[398 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[399 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP ee165ce812599a33158ab7c45b3da1857b8cd08473ba509d2a17b5af14ceea7a} -[39a 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[39b 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[39c 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b51000, header channel_header:"\010\001\032\006\010\212\354\342\321\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAKa8kIm4o18WYT9qyIIzTJgwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEyMTUwNzU2MDJaFw0yNzEyMTMwNzU2MDJaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEkOq53Qp5CJzSV/5hmIjFt0a96VeNj26MJdXJhmMjFH/aGvSi\nkNBbDMjOKSF2dd31xORZ43B5mGeWanbdeJJhyqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgsyHTh/csDEI7mhWebSA7JS7hUk99\n0xI44xBlqbHxRTcwCgYIKoZIzj0EAwIDRwAwRAIgAy40eDBsQ4T+9+PIKT55UfsU\neV2/kgsY/aSeTjkarTwCIAZ6JbnGMK47in7lEIA5KCUef0usB2q5oZbamP5nwoi6\n-----END -----\n\022\030\035\302\302\356\302\031\257\212\233\304\312\342\371\374%\316\027\376\317\254\020\375\314\265" -[39d 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[39e 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[39f 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[3a0 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[3a1 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[3a2 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[3a3 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[3a4 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[3a5 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[3a6 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[3a7 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[3a8 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[3a9 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3aa 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3ab 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3ac 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3ad 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3ae 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3af 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[3b0 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3b1 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3b2 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3b3 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3b4 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[3b5 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[3b6 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[3b7 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3b8 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3b9 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3ba 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3bb 12-19 06:47:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3bc 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3bd 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[3be 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[3bf 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[3c0 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[3c1 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3c2 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3c3 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3c4 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3c5 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3c6 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3c7 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3c8 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3c9 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3ca 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3cb 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3cc 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3cd 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3ce 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[3cf 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3d0 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3d1 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3d2 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3d3 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d4 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3d5 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3d6 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[3d7 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d8 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3d9 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3da 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[3db 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[3dc 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[3dd 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3de 12-19 06:47:41.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3df 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e0 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3e1 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3e2 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e3 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e4 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3e5 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3e6 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[3e7 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[3e8 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[3e9 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[3ea 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[3eb 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[3ec 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[3ed 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[3ee 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[3ef 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[3f0 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[3f1 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[3f2 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f3 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f4 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[3f5 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f6 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f7 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3f8 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3f9 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3fa 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3fb 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3fc 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3fd 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3fe 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3ff 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[400 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[401 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[402 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[403 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[404 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[405 12-19 06:47:41.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[406 12-19 06:47:41.23 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[407 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[408 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[409 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[40a 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[40b 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -[40c 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[40d 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[40e 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[40f 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42163ba00), Data:(*common.BlockData)(0xc42141df60), Metadata:(*common.BlockMetadata)(0xc42141dfa0)}, doMVCCValidation=true -[410 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[411 12-19 06:47:41.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -[412 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x4d, 0xb9, 0xf9, 0xfa, 0xe6, 0x2f, 0x4b, 0x9b, 0x3d, 0xc9, 0xfd, 0xe2, 0x86, 0xb6, 0x1d, 0x3d, 0x58, 0x57, 0xaf, 0x8a, 0x4e, 0x9, 0x6c, 0x1e, 0x91, 0x31, 0xdb, 0x9a, 0xb5, 0xe4, 0xa9, 0x65} txOffsets= -txId= locPointer=offset=70, bytesLength=11971 +[381 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx ID: [] to index +[382 01-12 22:56:44.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=11997, bytesLength=11906] for tx number:[0] ID: [] to blockNumTranNum index +[383 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25655], isChainEmpty=[false], lastBlockNumber=[1] +[384 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +[385 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[386 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[387 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[388 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +[389 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[38a 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +[38b 01-12 22:56:44.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[38c 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +[38d 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[38e 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[38f 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[390 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[391 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[392 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[393 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[394 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[395 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217e3c80 +[396 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +[397 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[398 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[399 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP b75cb14a36cf4c6d2a0657e7455753260826f96e96cac3870c622d13b7b7fb8d} +[39a 01-12 22:56:44.76 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[39b 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[39c 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421bf5000, header channel_header:"\010\001\032\006\010\251\372\344\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQUxxld2R8usInkS1RssnQizAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTIyOTEzNTkwOFoXDTI3MTIyNzEzNTkwOFowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATAzNF6jYgKp6LJ7DxCVp/J+fksQXC0zNPLIltMBu/AmZ+VwBvz\nV+wpzInekvOxRGaoUDpWck6cdOVIqY79I/Clo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2naoBNNTuuUExIzAtS+0Zw5zTQ9QW\n3MiIptdMRx/IeTAKBggqhkjOPQQDAgNIADBFAiEA6oGLEFXJv3l/JhwS+1X/m1oI\nuALYDfDqbnQPF9Z96GACIDnLWTVPaAGbWQHPVPcbJjuigPJxXvpaXClFLgNJNVJ1\n-----END -----\n\022\030G\207AG\216\211:\254|\222F\246\334\222HOH\334 5\312\200yt" +[39d 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[39e 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[39f 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[3a0 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[3a1 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[3a2 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[3a3 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[3a4 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[3a5 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[3a6 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[3a7 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[3a8 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[3a9 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[3aa 01-12 22:56:44.77 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[3ab 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[3ac 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[3ad 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[3ae 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[3af 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[3b0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[3b1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3b2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3b3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3b4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3b5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[3b6 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3b7 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3b8 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3b9 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3ba 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[3bb 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[3bc 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[3bd 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[3be 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[3bf 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[3c0 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[3c1 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[3c2 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[3c3 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[3c4 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[3c5 01-12 22:56:44.78 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[3c6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3c7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3c8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3c9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3ca 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3cb 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[3cc 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[3cd 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3ce 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[3cf 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3d0 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3d1 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3d2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3d3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3d4 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3d5 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3d6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3d7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3d8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3d9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3da 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3db 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3dc 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3dd 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3de 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3df 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3e0 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e1 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e4 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e5 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[3e7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[3e8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3e9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3ea 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3eb 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3ec 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[3ed 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3ee 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3ef 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3f0 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3f1 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3f2 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3f3 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3f4 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[3f5 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3f6 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3f7 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3f8 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3f9 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3fa 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3fb 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3fc 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3fd 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3fe 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3ff 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[400 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[401 01-12 22:56:44.79 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[402 01-12 22:56:44.80 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[403 01-12 22:56:44.80 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[404 01-12 22:56:44.82 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[405 01-12 22:56:44.82 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[406 01-12 22:56:44.82 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[407 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[408 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[409 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[40a 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[40b 01-12 22:56:44.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +[40c 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[40d 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[40e 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[40f 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42185d440), Data:(*common.BlockData)(0xc421b868c0), Metadata:(*common.BlockMetadata)(0xc421b86900)}, doMVCCValidation=true +[410 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[411 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +[412 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xc7, 0x1, 0xdf, 0x1d, 0xce, 0x80, 0xe7, 0x7d, 0xc1, 0x1f, 0xef, 0xbb, 0xcc, 0x74, 0x5c, 0x41, 0xec, 0x78, 0xd6, 0x51, 0x17, 0x10, 0xec, 0x1a, 0x9d, 0xcc, 0xcb, 0xac, 0x1, 0xec, 0x8e, 0x4f} txOffsets= +txId= locPointer=offset=70, bytesLength=11963 ] -[413 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx ID: [] to index -[414 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25741, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index -[415 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39463], isChainEmpty=[false], lastBlockNumber=[2] -[416 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -[417 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[418 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[419 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[41a 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -[41b 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[41c 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -[41d 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[41e 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -[41f 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[420 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[421 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[422 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[423 12-19 06:47:41.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[424 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[425 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420373c20 -[426 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[427 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[428 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[429 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[42a 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[42b 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ec1ef0, header 0xc420373c50 -[42c 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[42d 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -[42e 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -[42f 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[430 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [26678784-99b4-4c70-af0f-79d1b440b1bb] -[431 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel -[432 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel version: 1.0.5 -[433 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89,syscc=true,proposal=0xc421ec1ef0,canname=lscc:1.0.5 -[434 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[435 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[436 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[437 12-19 06:47:42.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]Inside sendExecuteMessage. Message TRANSACTION -[438 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[439 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[43a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]sendExecuteMsg trigger event TRANSACTION -[43b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message TRANSACTION -[43c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[43d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[43e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message TRANSACTION -[43f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message TRANSACTION from shim -[440 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[441 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bac3811f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[442 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bac3811f]Sending GET_STATE -[443 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message GET_STATE from shim -[444 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[445 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [bac3811f]Received GET_STATE, invoking get state from ledger -[446 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[447 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f] getting state for chaincode lscc, key mycc, channel businesschannel -[448 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[449 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]No state associated with key: mycc. Sending RESPONSE with an empty payload -[44a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]handleGetState serial send RESPONSE -[44b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message RESPONSE from shim -[44c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[44d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]before send -[44e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]after send -[450 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bac3811f]Received RESPONSE, communicated (state:ready) -[44f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bac3811f]GetState received payload RESPONSE -[451 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bac3811f]Inside putstate -[452 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bac3811f]Sending PUT_STATE -[453 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message PUT_STATE from shim -[454 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[455 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[456 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]state is ready -[457 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]Completed PUT_STATE. Sending RESPONSE -[458 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]enterBusyState trigger event RESPONSE -[459 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message RESPONSE -[45a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[45b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[45c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message RESPONSE -[45d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message RESPONSE from shim -[45e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[45f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]before send -[460 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bac3811f]after send -[461 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bac3811f]Received RESPONSE, communicated (state:ready) -[462 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [bac3811f]Received RESPONSE. Successfully updated state -[463 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Transaction completed. Sending COMPLETED -[464 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Move state message COMPLETED -[465 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[466 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]send state message COMPLETED -[467 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message COMPLETED from shim -[468 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[469 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89]HandleMessage- COMPLETED. Notify -[46a 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -[46b 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[46c 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89,syscc=false,proposal=0xc421ec1ef0,canname=mycc:1.0 -[46d 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -[46e 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -[46f 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[470 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[471 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -[472 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[473 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[413 01-12 22:56:44.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx ID: [] to index +[414 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25725, bytesLength=11963] for tx number:[0] ID: [] to blockNumTranNum index +[415 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39438], isChainEmpty=[false], lastBlockNumber=[2] +[416 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +[417 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[418 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[419 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[41a 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +[41b 01-12 22:56:44.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[41c 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +[41d 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[41e 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +[41f 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[420 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[421 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[422 01-12 22:56:44.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[423 01-12 22:56:44.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[424 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[425 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b2a300 +[426 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[427 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[428 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[429 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[42a 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[42b 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421bd69b0, header 0xc421b2a330 +[42c 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[42d 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +[42e 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +[42f 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[430 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bb06bab2-bcfb-43e7-9134-99ff3475f9a2] +[431 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel +[432 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel version: 1.0.5 +[433 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e,syscc=true,proposal=0xc421bd69b0,canname=lscc:1.0.5 +[434 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[435 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[436 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[437 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]Inside sendExecuteMessage. Message TRANSACTION +[438 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[439 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[43a 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]sendExecuteMsg trigger event TRANSACTION +[43b 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message TRANSACTION +[43c 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[43d 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[43e 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message TRANSACTION +[43f 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message TRANSACTION from shim +[440 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[441 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a1c14bb5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[442 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [a1c14bb5]Sending GET_STATE +[443 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message GET_STATE from shim +[444 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[445 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [a1c14bb5]Received GET_STATE, invoking get state from ledger +[446 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[447 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5] getting state for chaincode lscc, key mycc, channel businesschannel +[448 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[449 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]No state associated with key: mycc. Sending RESPONSE with an empty payload +[44a 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]handleGetState serial send RESPONSE +[44b 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message RESPONSE from shim +[44c 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[44d 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]before send +[44f 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [a1c14bb5]GetState received payload RESPONSE +[44e 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]after send +[450 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a1c14bb5]Received RESPONSE, communicated (state:ready) +[451 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a1c14bb5]Inside putstate +[452 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a1c14bb5]Sending PUT_STATE +[453 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message PUT_STATE from shim +[454 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[455 01-12 22:56:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[456 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]state is ready +[457 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]Completed PUT_STATE. Sending RESPONSE +[458 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]enterBusyState trigger event RESPONSE +[459 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message RESPONSE +[45a 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[45b 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[45c 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message RESPONSE +[45d 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message RESPONSE from shim +[45e 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[45f 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]before send +[460 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a1c14bb5]after send +[461 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [a1c14bb5]Received RESPONSE. Successfully updated state +[463 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Transaction completed. Sending COMPLETED +[462 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a1c14bb5]Received RESPONSE, communicated (state:ready) +[464 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Move state message COMPLETED +[465 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[466 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]send state message COMPLETED +[467 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message COMPLETED from shim +[468 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[469 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e]HandleMessage- COMPLETED. Notify +[46a 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +[46b 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[46c 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e,syscc=false,proposal=0xc421bd69b0,canname=mycc:1.0 +[46d 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system +[46e 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched +[46f 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[470 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[471 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) +[472 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[473 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=mycc:1.0 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[474 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -[475 12-19 06:47:42.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -[476 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -[477 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) -[478 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -[479 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -[47a 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -[47b 12-19 06:47:42.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default -[47c 12-19 06:47:42.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[47d 12-19 06:47:42.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 -[47e 12-19 06:47:42.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +[474 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock +[475 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock +[476 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 +[477 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) +[478 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +[479 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) +[47a 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 +[47b 01-12 22:56:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v105_default +[47c 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +[47d 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +[47e 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU FROM hyperledger/fabric-baseos:x86_64-0.3.2 ADD binpackage.tar /usr/local/bin LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ @@ -1242,1312 +1242,1312 @@ LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ ENV CORE_CHAINCODE_BUILDLEVEL=1.0.5 ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt COPY peer.crt /etc/hyperledger/fabric/peer.crt -[47f 12-19 06:47:42.70 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 -[480 12-19 06:47:58.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[481 12-19 06:47:58.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[482 12-19 06:47:58.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[483 12-19 06:47:58.94 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[484 12-19 06:47:59.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -[485 12-19 06:47:59.35 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -[486 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[487 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[488 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[489 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[48a 12-19 06:47:59.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -[48b 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -[48c 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[48d 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -[48e 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -[48f 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[490 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[491 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message READY -[492 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: READY in state established -[493 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bac3811f]Entered state ready -[494 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -[495 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message READY -[496 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -[497 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -[498 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -[499 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[49a 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]Inside sendExecuteMessage. Message INIT -[49b 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[49c 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[49d 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]sendExecuteMsg trigger event INIT -[49e 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message INIT -[49f 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[4a0 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4a1 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message INIT -[4a2 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message PUT_STATE from shim -[4a3 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[4a4 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4a5 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]state is ready -[4a6 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]Completed PUT_STATE. Sending RESPONSE -[4a7 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]enterBusyState trigger event RESPONSE -[4a8 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message RESPONSE -[4a9 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[4aa 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4ab 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message RESPONSE -[4ac 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message PUT_STATE from shim -[4ad 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[4ae 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4af 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]state is ready -[4b0 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bac3811f]Completed PUT_STATE. Sending RESPONSE -[4b1 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bac3811f]enterBusyState trigger event RESPONSE -[4b2 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message RESPONSE -[4b3 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[4b4 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4b5 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message RESPONSE -[4b6 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message COMPLETED from shim -[4b7 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4b8 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89]HandleMessage- COMPLETED. Notify -[4b9 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -[4ba 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -[4bb 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[4bc 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[4bd 12-19 06:47:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [26678784-99b4-4c70-af0f-79d1b440b1bb] -[4be 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[4bf 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel chaincode id: name:"lscc" -[4c0 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[4c1 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 channel id: businesschannel version: 1.0.5 -[4c2 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89,syscc=true,proposal=0xc421ec1ef0,canname=escc:1.0.5 -[4c3 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[4c4 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4c5 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[4c6 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]Inside sendExecuteMessage. Message TRANSACTION -[4c7 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4c8 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[4c9 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bac3811f]sendExecuteMsg trigger event TRANSACTION -[4ca 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Move state message TRANSACTION -[4cb 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[4cc 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4cd 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]sending state message TRANSACTION -[4ce 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Received message TRANSACTION from shim -[4cf 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[4d0 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bac3811f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[4d1 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[4d2 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[4d3 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Transaction completed. Sending COMPLETED -[4d4 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]Move state message COMPLETED -[4d5 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac3811f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[4d6 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac3811f]send state message COMPLETED -[4d7 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac3811f]Received message COMPLETED from shim -[4d8 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4d9 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89]HandleMessage- COMPLETED. Notify -[4da 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -[4db 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[4dc 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[4dd 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[4de 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [26678784-99b4-4c70-af0f-79d1b440b1bb] -[4df 12-19 06:47:59.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[4e0 12-19 06:48:01.45 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -[4e2 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[4e3 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[4e4 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[4e5 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217f5560 -[4e6 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -[4e7 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[4e8 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[4e9 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[4ea 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[4eb 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[4ec 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421984000, header channel_header:"\010\003\032\014\010\216\354\342\321\005\020\264\312\333\274\002\"\017businesschannel*@bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030\006{\307\037\036w\323 \252w\265.\371\223T\210X\262g6;(\235\030" -[4ed 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[4ee 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[4ef 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[4f0 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[4f1 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] -[4f2 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[4f3 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[4f4 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c2b8a3d3-6657-4d59-b797-ca5a34ac10ba] -[4f5 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=5fa2328d-fc01-4660-884a-b471ebc98bdf,syscc=true,proposal=0x0,canname=vscc:1.0.5 -[4f6 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 chaindID businesschannel -[4f7 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -[4f8 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4f9 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -[4fa 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5fa2328d]Inside sendExecuteMessage. Message TRANSACTION -[4fb 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4fc 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5fa2328d]sendExecuteMsg trigger event TRANSACTION -[4fd 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa2328d]Move state message TRANSACTION -[4fe 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa2328d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[4ff 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[500 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa2328d]sending state message TRANSACTION -[501 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]Received message TRANSACTION from shim -[502 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fa2328d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[503 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5fa2328d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[504 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[505 12-19 06:48:01.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[4e1 12-19 06:48:01.46 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -[506 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[507 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[508 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[509 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[50a 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d946c36f-1716-411d-85ef-5cd1a280d806] -[50b 12-19 06:48:01.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[50c 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [d946c36f-1716-411d-85ef-5cd1a280d806] -[50d 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[50e 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -[50f 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[510 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]Transaction completed. Sending COMPLETED -[511 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]Move state message COMPLETED -[512 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fa2328d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[513 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fa2328d]send state message COMPLETED -[514 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fa2328d]Received message COMPLETED from shim -[515 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa2328d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[516 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fa2328d-fc01-4660-884a-b471ebc98bdf]HandleMessage- COMPLETED. Notify -[517 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5fa2328d-fc01-4660-884a-b471ebc98bdf -[518 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[519 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c2b8a3d3-6657-4d59-b797-ca5a34ac10ba] -[51a 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[51b 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[51c 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215e9640), Data:(*common.BlockData)(0xc4218a4380), Metadata:(*common.BlockMetadata)(0xc4218a43c0)}, doMVCCValidation=true -[51d 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[51e 12-19 06:48:01.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -[51f 12-19 06:48:01.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] marked as valid by state validator -[520 12-19 06:48:01.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x6f, 0xe1, 0x56, 0x7c, 0x27, 0x75, 0xe6, 0x93, 0x47, 0x2e, 0x6a, 0xed, 0xf5, 0x1c, 0x93, 0x1e, 0x17, 0x7d, 0x76, 0xb2, 0x4a, 0x57, 0x9b, 0x93, 0xae, 0xf1, 0x93, 0xc1, 0xd2, 0xe4, 0xbc, 0xac} txOffsets= -txId=bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 locPointer=offset=70, bytesLength=3388 +[47f 01-12 22:56:46.33 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.5 +[480 01-12 22:57:02.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +[481 01-12 22:57:02.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +[482 01-12 22:57:02.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 +[483 01-12 22:57:02.54 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 +[484 01-12 22:57:03.04 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 +[485 01-12 22:57:03.04 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) +[486 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[487 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[488 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[489 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[48a 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 +[48b 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED +[48c 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[48d 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed +[48e 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +[48f 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[490 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[491 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message READY +[492 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: READY in state established +[493 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a1c14bb5]Entered state ready +[494 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +[495 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message READY +[496 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +[497 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +[498 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +[499 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +[49a 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]Inside sendExecuteMessage. Message INIT +[49b 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[49c 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[49d 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]sendExecuteMsg trigger event INIT +[49e 01-12 22:57:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message INIT +[49f 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[4a0 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4a1 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message INIT +[4a2 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message PUT_STATE from shim +[4a3 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[4a4 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4a5 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]state is ready +[4a6 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]Completed PUT_STATE. Sending RESPONSE +[4a7 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]enterBusyState trigger event RESPONSE +[4a8 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message RESPONSE +[4a9 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[4aa 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4ab 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message RESPONSE +[4ac 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message PUT_STATE from shim +[4ad 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[4ae 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4af 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]state is ready +[4b0 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a1c14bb5]Completed PUT_STATE. Sending RESPONSE +[4b1 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a1c14bb5]enterBusyState trigger event RESPONSE +[4b2 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message RESPONSE +[4b3 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[4b4 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4b5 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message RESPONSE +[4b6 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message COMPLETED from shim +[4b7 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[4b8 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e]HandleMessage- COMPLETED. Notify +[4b9 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +[4ba 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +[4bb 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[4bc 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[4bd 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [bb06bab2-bcfb-43e7-9134-99ff3475f9a2] +[4be 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[4bf 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel chaincode id: name:"lscc" +[4c0 01-12 22:57:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[4c1 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e channel id: businesschannel version: 1.0.5 +[4c2 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e,syscc=true,proposal=0xc421bd69b0,canname=escc:1.0.5 +[4c3 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[4c4 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[4c5 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[4c6 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]Inside sendExecuteMessage. Message TRANSACTION +[4c7 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[4c8 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[4c9 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a1c14bb5]sendExecuteMsg trigger event TRANSACTION +[4ca 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Move state message TRANSACTION +[4cb 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[4cc 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4cd 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]sending state message TRANSACTION +[4ce 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Received message TRANSACTION from shim +[4cf 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[4d0 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a1c14bb5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[4d1 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[4d2 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[4d3 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Transaction completed. Sending COMPLETED +[4d4 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]Move state message COMPLETED +[4d5 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1c14bb5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[4d6 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1c14bb5]send state message COMPLETED +[4d7 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1c14bb5]Received message COMPLETED from shim +[4d8 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[4d9 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e]HandleMessage- COMPLETED. Notify +[4da 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +[4db 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[4dc 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[4dd 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[4de 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bb06bab2-bcfb-43e7-9134-99ff3475f9a2] +[4df 01-12 22:57:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[4e0 01-12 22:57:05.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +[4e1 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +[4e2 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[4e3 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[4e4 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[4e5 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a2c870 +[4e6 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +[4e7 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[4e8 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[4e9 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[4ea 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[4eb 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[4ec 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42170c000, header channel_header:"\010\003\032\014\010\256\372\344\322\005\020\326\210\322\223\001\"\017businesschannel*@a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\253\260>}\242\2608\271\356\263\322\020K\246\rX\320P\2540\210Dy\241" +[4ed 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[4ee 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[4ef 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[4f0 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[4f1 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] +[4f2 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[4f3 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[4f4 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [67c10f47-93ec-4c2e-96fa-b831d614e3ef] +[4f5 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=1bab3624-ee06-4437-b505-29bcd9670a2e,syscc=true,proposal=0x0,canname=vscc:1.0.5 +[4f6 01-12 22:57:05.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e chaindID businesschannel +[4f7 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +[4f8 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[4f9 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +[4fa 01-12 22:57:05.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1bab3624]Inside sendExecuteMessage. Message TRANSACTION +[4fb 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[4fc 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1bab3624]sendExecuteMsg trigger event TRANSACTION +[4fd 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1bab3624]Move state message TRANSACTION +[4fe 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1bab3624]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[4ff 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[500 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1bab3624]sending state message TRANSACTION +[501 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]Received message TRANSACTION from shim +[502 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1bab3624]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[503 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1bab3624]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[504 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[505 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[506 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[507 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[508 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[509 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[50a 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [deef3d2b-4546-4bf8-9588-a049316f2d6c] +[50b 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[50c 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [deef3d2b-4546-4bf8-9588-a049316f2d6c] +[50d 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +[50e 01-12 22:57:05.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +[50f 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[510 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]Transaction completed. Sending COMPLETED +[511 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]Move state message COMPLETED +[512 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1bab3624]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[513 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1bab3624]send state message COMPLETED +[514 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1bab3624]Received message COMPLETED from shim +[515 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1bab3624]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[516 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1bab3624-ee06-4437-b505-29bcd9670a2e]HandleMessage- COMPLETED. Notify +[517 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1bab3624-ee06-4437-b505-29bcd9670a2e +[518 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[519 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [67c10f47-93ec-4c2e-96fa-b831d614e3ef] +[51a 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[51b 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[51c 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422420880), Data:(*common.BlockData)(0xc4219de5c0), Metadata:(*common.BlockMetadata)(0xc4219de600)}, doMVCCValidation=true +[51d 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[51e 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +[51f 01-12 22:57:05.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] marked as valid by state validator +[520 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xbb, 0x93, 0xc3, 0xe7, 0xfa, 0xa, 0x40, 0xf0, 0x5, 0xba, 0xa8, 0x70, 0x24, 0x7e, 0xb7, 0xcd, 0x9, 0x7a, 0x5f, 0x2d, 0xea, 0xc, 0xd2, 0xf4, 0x1a, 0x47, 0xc2, 0x36, 0x17, 0xb0, 0x25, 0xeb} txOffsets= +txId=a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e locPointer=offset=70, bytesLength=3387 ] -[521 12-19 06:48:01.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to index -[522 12-19 06:48:01.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39533, bytesLength=3388] for tx number:[0] ID: [bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89] to blockNumTranNum index -[523 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -[524 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -[525 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[526 12-19 06:48:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[527 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -[528 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[529 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[52a 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[52b 12-19 06:48:01.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -[52c 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -[52d 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[52e 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bac3811fa56c6d356afd59203d94ed4554de78c4902ab3a35e8b22758ed6ee89 -[52f 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -[530 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[531 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[532 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[533 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[534 12-19 06:48:01.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[535 12-19 06:48:17.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -[536 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -[537 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[538 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[539 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[53a 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422733320 -[53b 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -[53c 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[53d 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[53e 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -[53f 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[540 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[541 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421984000, header channel_header:"\010\003\032\014\010\237\354\342\321\005\020\364\313\256\204\002\"\017businesschannel*@65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\250q\366_\327\036\227\024\2244.\314\306\365\006s\020\216\250\264\227F\260g" -[542 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[543 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[544 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[545 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[546 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] -[547 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[548 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[549 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b3f03029-c5c7-4b61-9e3e-b1d5747522ce] -[54a 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=cd9e5819-ae88-49ea-be38-ed2749b7070d,syscc=true,proposal=0x0,canname=vscc:1.0.5 -[54b 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd chaindID businesschannel -[54c 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -[54d 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[54e 12-19 06:48:17.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -[54f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd9e5819]Inside sendExecuteMessage. Message TRANSACTION -[550 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[551 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd9e5819]sendExecuteMsg trigger event TRANSACTION -[552 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd9e5819]Move state message TRANSACTION -[553 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd9e5819]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[554 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[555 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd9e5819]sending state message TRANSACTION -[556 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]Received message TRANSACTION from shim -[557 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd9e5819]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[558 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd9e5819]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[559 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[55a 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[55b 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[55c 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[55d 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[55e 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[55f 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [09f49735-6eca-4317-b198-e6b7798b7b5b] -[560 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[561 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [09f49735-6eca-4317-b198-e6b7798b7b5b] -[562 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[563 12-19 06:48:17.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} -[564 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -[565 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]Transaction completed. Sending COMPLETED -[566 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]Move state message COMPLETED -[567 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd9e5819]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[568 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd9e5819]send state message COMPLETED -[569 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd9e5819]Received message COMPLETED from shim -[56a 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd9e5819]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[56b 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd9e5819-ae88-49ea-be38-ed2749b7070d]HandleMessage- COMPLETED. Notify -[56c 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd9e5819-ae88-49ea-be38-ed2749b7070d -[56d 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[56e 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd, error Chaincode mycc is already instantiated -[56f 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b3f03029-c5c7-4b61-9e3e-b1d5747522ce] -[570 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd returned error Chaincode mycc is already instantiated -[571 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[572 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[573 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4226f4c00), Data:(*common.BlockData)(0xc421a037a0), Metadata:(*common.BlockMetadata)(0xc421a037e0)}, doMVCCValidation=true -[574 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[575 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -[576 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x42, 0x8, 0x7a, 0xad, 0xa1, 0x7f, 0xfe, 0x34, 0x5a, 0x21, 0x9b, 0x59, 0x24, 0x86, 0x5, 0x18, 0x2f, 0x40, 0x7e, 0xb, 0xc3, 0xde, 0xfa, 0x9e, 0xdb, 0x2a, 0xd7, 0x12, 0x5d, 0xd0, 0x87, 0x11} txOffsets= -txId=65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd locPointer=offset=70, bytesLength=3388 +[521 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to index +[522 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39508, bytesLength=3387] for tx number:[0] ID: [a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e] to blockNumTranNum index +[523 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44646], isChainEmpty=[false], lastBlockNumber=[3] +[524 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +[525 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[526 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[527 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] +[528 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +[529 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +[52a 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[52b 01-12 22:57:05.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +[52c 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +[52d 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[52e 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: a1c14bb5d69f2b58aa8a367e412b12b8162187070633fae3dc57bb01234b2d5e +[52f 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +[530 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[531 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[532 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[533 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[534 01-12 22:57:05.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[535 01-12 22:57:21.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +[536 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +[537 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[538 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[539 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[53a 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42195aa80 +[53b 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +[53c 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[53d 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[53e 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +[53f 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[540 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[541 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421e9f500, header channel_header:"\010\003\032\014\010\277\372\344\322\005\020\362\233\337\206\001\"\017businesschannel*@a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030=\365\316\315\200!\212\200R\032\206\007Q\274\320\370\372.\352J\252'7\317" +[542 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[543 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[544 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[545 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[546 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] +[547 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[548 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[549 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e0b71488-4657-4815-8f6c-559247bcc089] +[54a 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=b7a9084e-0fc9-4844-9493-9db367b1b2b2,syscc=true,proposal=0x0,canname=vscc:1.0.5 +[54b 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 chaindID businesschannel +[54c 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +[54d 01-12 22:57:21.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[54e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +[54f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b7a9084e]Inside sendExecuteMessage. Message TRANSACTION +[550 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[551 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b7a9084e]sendExecuteMsg trigger event TRANSACTION +[552 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b7a9084e]Move state message TRANSACTION +[553 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b7a9084e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[554 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[555 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b7a9084e]sending state message TRANSACTION +[556 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]Received message TRANSACTION from shim +[557 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b7a9084e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[558 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b7a9084e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[559 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[55a 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[55b 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[55c 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[55d 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[55e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[55f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [7b158586-559d-4ae0-a5bd-b8d490962418] +[560 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[561 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7b158586-559d-4ae0-a5bd-b8d490962418] +[562 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 +[563 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x9547d0)} +[564 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated +[565 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]Transaction completed. Sending COMPLETED +[566 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]Move state message COMPLETED +[567 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b7a9084e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[568 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b7a9084e]send state message COMPLETED +[569 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b7a9084e]Received message COMPLETED from shim +[56a 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b7a9084e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[56b 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b7a9084e-0fc9-4844-9493-9db367b1b2b2]HandleMessage- COMPLETED. Notify +[56c 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b7a9084e-0fc9-4844-9493-9db367b1b2b2 +[56d 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[56e 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95, error Chaincode mycc is already instantiated +[56f 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e0b71488-4657-4815-8f6c-559247bcc089] +[570 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 returned error Chaincode mycc is already instantiated +[571 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[572 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[573 01-12 22:57:21.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42226f540), Data:(*common.BlockData)(0xc421f477e0), Metadata:(*common.BlockMetadata)(0xc421f47820)}, doMVCCValidation=true +[574 01-12 22:57:21.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[575 01-12 22:57:21.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +[576 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x96, 0x91, 0x36, 0xea, 0xad, 0x16, 0xd4, 0x10, 0xb0, 0x36, 0x2b, 0x1e, 0xfa, 0x34, 0xc8, 0xbb, 0x85, 0x3b, 0xd1, 0x4, 0x1, 0xe5, 0xf, 0xa2, 0x86, 0x20, 0x34, 0x3b, 0xd5, 0x24, 0xe9, 0x52} txOffsets= +txId=a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 locPointer=offset=70, bytesLength=3388 ] -[577 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to index -[578 12-19 06:48:17.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd] to blockNumTranNum index -[579 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49882], isChainEmpty=[false], lastBlockNumber=[4] -[57a 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -[57b 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[57c 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[57d 12-19 06:48:17.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[57e 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -[57f 12-19 06:48:17.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -[580 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -[581 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[582 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 65ef6751c4159d7da63155ea9fb22bf0ea9569cf2ddaeebe930d88f65d51d8bd -[583 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -[584 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[585 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[586 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[587 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[588 12-19 06:48:17.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[589 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[58a 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bf4480 -[58b 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[58c 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[58d 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[58e 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[58f 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[590 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c9dcc0, header 0xc421bf4600 -[591 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -[592 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -[593 12-19 06:48:32.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -[594 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[595 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d24e82f2-c81b-41f4-9cd4-6f0410d18986] -[596 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel -[597 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442,syscc=true,proposal=0xc421c9dcc0,canname=lscc:1.0.5 -[598 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[599 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[59a 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[59b 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]Inside sendExecuteMessage. Message TRANSACTION -[59c 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[59d 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[59e 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]sendExecuteMsg trigger event TRANSACTION -[59f 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message TRANSACTION -[5a0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5a1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5a2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message TRANSACTION -[5a3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Received message TRANSACTION from shim -[5a4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[5a5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4424bd92]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[5a6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4424bd92]Sending GET_STATE -[5a7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message GET_STATE from shim -[5a8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5a9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4424bd92]Received GET_STATE, invoking get state from ledger -[5aa 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5ab 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92] getting state for chaincode lscc, key mycc, channel businesschannel -[5ac 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[5ad 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Got state. Sending RESPONSE -[5ae 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]handleGetState serial send RESPONSE -[5af 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Received message RESPONSE from shim -[5b0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5b1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [4424bd92]before send -[5b2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [4424bd92]after send -[5b3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [4424bd92]Received RESPONSE, communicated (state:ready) -[5b4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4424bd92]GetState received payload RESPONSE -[5b5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Transaction completed. Sending COMPLETED -[5b6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Move state message COMPLETED -[5b7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5b8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]send state message COMPLETED -[5b9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message COMPLETED from shim -[5ba 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5bb 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442]HandleMessage- COMPLETED. Notify -[5bc 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -[5bd 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5be 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[5bf 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel version: 1.0 -[5c0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442,syscc=false,proposal=0xc421c9dcc0,canname=mycc:1.0 -[5c1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[5c2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5c3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[5c4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]Inside sendExecuteMessage. Message TRANSACTION -[5c5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5c6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5c7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]sendExecuteMsg trigger event TRANSACTION -[5c8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message TRANSACTION -[5c9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5ca 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5cb 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message TRANSACTION -[5cc 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message GET_STATE from shim -[5cd 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5ce 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4424bd92]Received GET_STATE, invoking get state from ledger -[5cf 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5d0 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92] getting state for chaincode mycc, key a, channel businesschannel -[5d1 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -[5d2 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Got state. Sending RESPONSE -[5d3 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]handleGetState serial send RESPONSE -[5d4 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message GET_STATE from shim -[5d5 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5d6 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [4424bd92]Received GET_STATE, invoking get state from ledger -[5d7 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5d8 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92] getting state for chaincode mycc, key b, channel businesschannel -[5d9 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -[5da 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Got state. Sending RESPONSE -[5db 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]handleGetState serial send RESPONSE -[5dc 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message PUT_STATE from shim -[5dd 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5de 12-19 06:48:32.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5df 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]state is ready -[5e0 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Completed PUT_STATE. Sending RESPONSE -[5e1 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]enterBusyState trigger event RESPONSE -[5e2 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message RESPONSE -[5e3 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5e4 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e5 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message RESPONSE -[5e6 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message PUT_STATE from shim -[5e7 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5e8 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e9 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]state is ready -[5ea 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4424bd92]Completed PUT_STATE. Sending RESPONSE -[5eb 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [4424bd92]enterBusyState trigger event RESPONSE -[5ec 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message RESPONSE -[5ed 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5ee 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5ef 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message RESPONSE -[5f0 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message COMPLETED from shim -[5f1 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5f2 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442]HandleMessage- COMPLETED. Notify -[5f3 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -[5f4 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5f5 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[5f6 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[5f7 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d24e82f2-c81b-41f4-9cd4-6f0410d18986] -[5f8 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[5f9 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel chaincode id: name:"mycc" -[5fa 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -[5fb 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 channel id: businesschannel version: 1.0.5 -[5fc 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442,syscc=true,proposal=0xc421c9dcc0,canname=escc:1.0.5 -[5fd 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[5fe 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5ff 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[600 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]Inside sendExecuteMessage. Message TRANSACTION -[601 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[602 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[603 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4424bd92]sendExecuteMsg trigger event TRANSACTION -[604 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Move state message TRANSACTION -[605 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[606 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[607 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]sending state message TRANSACTION -[608 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Received message TRANSACTION from shim -[609 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[60a 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4424bd92]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[60b 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[60c 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[60d 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Transaction completed. Sending COMPLETED -[60e 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]Move state message COMPLETED -[60f 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4424bd92]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[610 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4424bd92]send state message COMPLETED -[611 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4424bd92]Received message COMPLETED from shim -[612 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[613 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442]HandleMessage- COMPLETED. Notify -[614 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -[615 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[616 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[617 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[618 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d24e82f2-c81b-41f4-9cd4-6f0410d18986] -[619 12-19 06:48:32.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[61a 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -[61c 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[61d 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[61e 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[61f 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42148cdb0 -[620 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -[621 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[622 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[623 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[624 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[625 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[626 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421efd800, header channel_header:"\010\003\032\013\010\300\354\342\321\005\020\370\304\313&\"\017businesschannel*@4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAOxQXfu+mRHRG05zx7entxwwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAxWhcNMjcxMjEzMDc1NjAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGNUwK6tePhHNHWr0a5lkRE5U3db4UT2\ntXQZpjZYWJlt2d3tzWjwgKjt/BDl0KjAfzYYcKmtdKFhk92a5L2ZSMWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIKrjkHSu1EPg\nIOoQOA/Wd9cj06jfX3oc5GIKNFRGEpxCMAoGCCqGSM49BAMCA0cAMEQCIDmTAGlp\nLGEVUs+CvYs0Ijs+o2KjdTFmuAIRljCiQpr6AiAKsd7rS4g2bcNtWTcG7rKfB9c0\nxxOzE+vwajS1IiAN7g==\n-----END -----\n\022\030X\033\352\231\341oS\267q \275\203\303\003&\241\356\272\tl\036k c" -[627 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[628 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[629 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[62a 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[62b 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] -[62c 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[62d 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6d604cea-caa0-47c3-8736-438a22101e24] -[62e 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[62f 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6d604cea-caa0-47c3-8736-438a22101e24] -[630 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[631 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [767a5825-7721-4eb6-aa6d-877b243c70c5] -[632 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=a8f33e19-4cf2-4ece-a0e0-2f92f87db6ab,syscc=true,proposal=0x0,canname=vscc:1.0.5 -[633 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 chaindID businesschannel -[634 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -[635 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[636 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -[637 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a8f33e19]Inside sendExecuteMessage. Message TRANSACTION -[638 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[639 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a8f33e19]sendExecuteMsg trigger event TRANSACTION -[63a 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8f33e19]Move state message TRANSACTION -[63b 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8f33e19]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[63c 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[63d 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8f33e19]sending state message TRANSACTION -[63e 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]Received message TRANSACTION from shim -[63f 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8f33e19]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[640 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a8f33e19]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[641 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[642 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[643 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[644 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]Transaction completed. Sending COMPLETED -[645 12-19 06:48:34.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]Move state message COMPLETED -[646 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8f33e19]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[647 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8f33e19]send state message COMPLETED -[648 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8f33e19]Received message COMPLETED from shim -[649 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8f33e19]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[64a 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8f33e19-4cf2-4ece-a0e0-2f92f87db6ab]HandleMessage- COMPLETED. Notify -[64b 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a8f33e19-4cf2-4ece-a0e0-2f92f87db6ab -[61b 12-19 06:48:34.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -[64c 12-19 06:48:34.15 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[64d 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [767a5825-7721-4eb6-aa6d-877b243c70c5] -[64e 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[64f 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[650 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422338780), Data:(*common.BlockData)(0xc4218314c0), Metadata:(*common.BlockMetadata)(0xc421831500)}, doMVCCValidation=true -[651 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[652 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -[653 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -[654 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -[655 12-19 06:48:34.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] marked as valid by state validator -[656 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xbb, 0xbc, 0xe, 0xdc, 0x25, 0x6f, 0xbd, 0xfa, 0x3e, 0xa1, 0x3b, 0x37, 0xbc, 0xb9, 0x89, 0xad, 0xfd, 0x53, 0x97, 0x3d, 0xfe, 0x8d, 0x7, 0x1, 0xa2, 0xc1, 0xa0, 0x17, 0xda, 0x53, 0xc6, 0xe1} txOffsets= -txId=4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 locPointer=offset=70, bytesLength=2848 +[577 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to index +[578 01-12 22:57:21.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44716, bytesLength=3388] for tx number:[0] ID: [a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95] to blockNumTranNum index +[579 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49854], isChainEmpty=[false], lastBlockNumber=[4] +[57a 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +[57b 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[57c 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[57d 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[57e 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +[57f 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +[580 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +[581 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[582 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: a616a3ec87e9549e0905a8dcfa583f46dc5e5b117cf53734317ccc3ee55dde95 +[583 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +[584 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[585 01-12 22:57:21.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[586 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[587 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[588 01-12 22:57:21.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[589 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[58a 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bc6cc0 +[58b 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[58c 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[58d 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[58e 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[58f 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[590 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421eb3b80, header 0xc421bc6cf0 +[591 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +[592 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +[593 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +[594 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[595 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [edc46019-d047-4eb2-b056-2e277ce1ec79] +[596 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel +[597 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251,syscc=true,proposal=0xc421eb3b80,canname=lscc:1.0.5 +[598 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[599 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +[59a 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[59b 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]Inside sendExecuteMessage. Message TRANSACTION +[59c 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[59d 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[59e 01-12 22:57:36.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]sendExecuteMsg trigger event TRANSACTION +[59f 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message TRANSACTION +[5a0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5a1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5a2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message TRANSACTION +[5a3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Received message TRANSACTION from shim +[5a4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5a5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee76e58d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5a6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ee76e58d]Sending GET_STATE +[5a7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message GET_STATE from shim +[5a8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5a9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ee76e58d]Received GET_STATE, invoking get state from ledger +[5aa 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ab 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d] getting state for chaincode lscc, key mycc, channel businesschannel +[5ac 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[5ad 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Got state. Sending RESPONSE +[5ae 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]handleGetState serial send RESPONSE +[5af 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Received message RESPONSE from shim +[5b0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[5b1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee76e58d]before send +[5b2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee76e58d]after send +[5b3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ee76e58d]Received RESPONSE, communicated (state:ready) +[5b4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ee76e58d]GetState received payload RESPONSE +[5b5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Transaction completed. Sending COMPLETED +[5b6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Move state message COMPLETED +[5b7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5b8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]send state message COMPLETED +[5b9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message COMPLETED from shim +[5ba 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5bb 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251]HandleMessage- COMPLETED. Notify +[5bc 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +[5bd 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5be 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[5bf 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel version: 1.0 +[5c0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251,syscc=false,proposal=0xc421eb3b80,canname=mycc:1.0 +[5c1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +[5c2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5c3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +[5c4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]Inside sendExecuteMessage. Message TRANSACTION +[5c5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5c6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5c7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]sendExecuteMsg trigger event TRANSACTION +[5c8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message TRANSACTION +[5c9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5ca 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5cb 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message TRANSACTION +[5cc 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message GET_STATE from shim +[5cd 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5ce 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ee76e58d]Received GET_STATE, invoking get state from ledger +[5cf 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5d0 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d] getting state for chaincode mycc, key a, channel businesschannel +[5d1 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +[5d2 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Got state. Sending RESPONSE +[5d3 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]handleGetState serial send RESPONSE +[5d4 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message GET_STATE from shim +[5d5 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5d6 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ee76e58d]Received GET_STATE, invoking get state from ledger +[5d7 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5d8 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d] getting state for chaincode mycc, key b, channel businesschannel +[5d9 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b +[5da 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Got state. Sending RESPONSE +[5db 01-12 22:57:36.03 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]handleGetState serial send RESPONSE +[5dc 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message PUT_STATE from shim +[5dd 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[5de 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5df 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]state is ready +[5e0 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Completed PUT_STATE. Sending RESPONSE +[5e1 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]enterBusyState trigger event RESPONSE +[5e2 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message RESPONSE +[5e3 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[5e4 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5e5 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message RESPONSE +[5e6 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message PUT_STATE from shim +[5e7 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[5e9 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]state is ready +[5ea 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ee76e58d]Completed PUT_STATE. Sending RESPONSE +[5eb 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee76e58d]enterBusyState trigger event RESPONSE +[5e8 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ec 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message RESPONSE +[5ed 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[5ee 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ef 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message RESPONSE +[5f0 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message COMPLETED from shim +[5f1 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5f2 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251]HandleMessage- COMPLETED. Notify +[5f3 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +[5f4 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5f5 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[5f6 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[5f7 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [edc46019-d047-4eb2-b056-2e277ce1ec79] +[5f8 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[5f9 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel chaincode id: name:"mycc" +[5fa 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +[5fb 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 channel id: businesschannel version: 1.0.5 +[5fc 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251,syscc=true,proposal=0xc421eb3b80,canname=escc:1.0.5 +[5fd 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[5fe 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5ff 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[600 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]Inside sendExecuteMessage. Message TRANSACTION +[601 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[602 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[603 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee76e58d]sendExecuteMsg trigger event TRANSACTION +[604 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Move state message TRANSACTION +[605 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[606 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[607 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]sending state message TRANSACTION +[608 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Received message TRANSACTION from shim +[609 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[60a 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee76e58d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[60b 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[60c 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[60d 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Transaction completed. Sending COMPLETED +[60e 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]Move state message COMPLETED +[60f 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee76e58d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[610 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee76e58d]send state message COMPLETED +[611 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee76e58d]Received message COMPLETED from shim +[612 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[613 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251]HandleMessage- COMPLETED. Notify +[614 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +[615 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[616 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[617 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[618 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [edc46019-d047-4eb2-b056-2e277ce1ec79] +[619 01-12 22:57:36.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[61a 01-12 22:57:38.07 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +[61b 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +[61c 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[61d 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[61e 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[61f 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4228d1890 +[620 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +[621 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[622 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[623 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[624 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[625 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[626 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42284a000, header channel_header:"\010\003\032\013\010\340\372\344\322\005\020\330\234\357\013\"\017businesschannel*@ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAJCjVPy2i50/+1Wcnsf5WxUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA3WhcNMjcxMjI3MTM1OTA3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBwRUkKst0HOub1feVosqYuKT1GPA019\nIHWALbNC2saPJzqmQTPpR0nJs9FaAEA9SlHc5+V91HaQdhAHjdw6r/yjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPJtdndAi+X1\nIUlVbCWqpMH3e1AROSac20jcUY++6b0OMAoGCCqGSM49BAMCA0gAMEUCIQCpmmaE\n8WzEbTIlEClXQ4Qo88nk+gPzdHK+dNI2fC0AagIgHr5nMh7+SIux4VyXguNM53dt\nGQ7v12AxPl+nq3TimiE=\n-----END -----\n\022\030\240to\355\034]+\201*\317\200\031\307\005\032\225V\234\364>\332\252\310 " +[627 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[628 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[629 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[62a 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[62b 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] +[62c 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[62d 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [88b55529-b5f5-4d48-9384-a19931c65cfd] +[62e 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[62f 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [88b55529-b5f5-4d48-9384-a19931c65cfd] +[630 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[631 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [98b91a05-d4a1-470a-8727-22fd243ea772] +[632 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=1c879b92-1dc1-4529-8b34-aa4cf893b25a,syscc=true,proposal=0x0,canname=vscc:1.0.5 +[633 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 chaindID businesschannel +[634 01-12 22:57:38.08 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +[635 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[636 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +[637 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c879b92]Inside sendExecuteMessage. Message TRANSACTION +[638 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[639 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1c879b92]sendExecuteMsg trigger event TRANSACTION +[63a 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c879b92]Move state message TRANSACTION +[63b 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1c879b92]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[63c 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[63d 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c879b92]sending state message TRANSACTION +[63e 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]Received message TRANSACTION from shim +[63f 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c879b92]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[640 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1c879b92]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[641 01-12 22:57:38.09 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[642 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[643 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[644 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]Transaction completed. Sending COMPLETED +[645 01-12 22:57:38.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]Move state message COMPLETED +[646 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1c879b92]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[647 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1c879b92]send state message COMPLETED +[648 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1c879b92]Received message COMPLETED from shim +[649 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1c879b92]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[64a 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1c879b92-1dc1-4529-8b34-aa4cf893b25a]HandleMessage- COMPLETED. Notify +[64b 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1c879b92-1dc1-4529-8b34-aa4cf893b25a +[64c 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[64d 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [98b91a05-d4a1-470a-8727-22fd243ea772] +[64e 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[64f 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[650 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42163d240), Data:(*common.BlockData)(0xc42171c900), Metadata:(*common.BlockMetadata)(0xc42171c940)}, doMVCCValidation=true +[651 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[652 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +[653 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +[654 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +[655 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] marked as valid by state validator +[656 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x9c, 0xa9, 0x69, 0xac, 0xd0, 0xf9, 0x42, 0xd3, 0x46, 0xa0, 0xbf, 0xbf, 0x16, 0xb2, 0xf9, 0xa0, 0xd1, 0xaa, 0xa9, 0xb4, 0xf9, 0x20, 0xbe, 0x31, 0x8, 0xca, 0xce, 0x8, 0xc, 0xff, 0x77, 0x8d} txOffsets= +txId=ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 locPointer=offset=70, bytesLength=2847 ] -[657 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to index -[658 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49952, bytesLength=2848] for tx number:[0] ID: [4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442] to blockNumTranNum index -[659 12-19 06:48:34.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -[65a 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -[65b 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[65c 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[65d 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[65e 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[65f 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[660 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[661 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[662 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[663 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 4424bd9219257104317912c3ea31390dfe2c81fecee847a95370947cd485f442 -[664 12-19 06:48:34.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -[665 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[666 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[667 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[668 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[669 12-19 06:48:34.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[66a 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[66b 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421643b90 -[66c 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[66d 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[66e 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[66f 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[670 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[671 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220320f0, header 0xc421643bc0 -[672 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -[673 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -[674 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66] -[675 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[676 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e957060b-60c0-44f0-8698-a3f119d31623] -[677 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel -[678 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66,syscc=true,proposal=0xc4220320f0,canname=lscc:1.0.5 -[679 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[67a 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[67b 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[67c 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]Inside sendExecuteMessage. Message TRANSACTION -[67d 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[67e 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[67f 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]sendExecuteMsg trigger event TRANSACTION -[680 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Move state message TRANSACTION -[681 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[682 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[683 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]sending state message TRANSACTION -[684 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Received message TRANSACTION from shim -[685 12-19 06:48:48.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[686 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dab4dbd0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[687 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dab4dbd0]Sending GET_STATE -[688 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message GET_STATE from shim -[689 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[68a 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [dab4dbd0]Received GET_STATE, invoking get state from ledger -[68b 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[68c 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0] getting state for chaincode lscc, key mycc, channel businesschannel -[68d 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[68e 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0]Got state. Sending RESPONSE -[68f 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [dab4dbd0]handleGetState serial send RESPONSE -[690 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Received message RESPONSE from shim -[691 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[692 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [dab4dbd0]before send -[693 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [dab4dbd0]after send -[694 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [dab4dbd0]Received RESPONSE, communicated (state:ready) -[695 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dab4dbd0]GetState received payload RESPONSE -[696 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Transaction completed. Sending COMPLETED -[697 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Move state message COMPLETED -[698 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[699 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]send state message COMPLETED -[69a 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message COMPLETED from shim -[69b 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[69c 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66]HandleMessage- COMPLETED. Notify -[69d 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -[69e 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[69f 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[6a0 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel version: 1.0 -[6a1 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66,syscc=false,proposal=0xc4220320f0,canname=mycc:1.0 -[6a2 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[6a3 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6a4 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[6a5 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]Inside sendExecuteMessage. Message TRANSACTION -[6a6 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6a7 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6a8 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]sendExecuteMsg trigger event TRANSACTION -[6a9 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Move state message TRANSACTION -[6aa 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6ab 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6ac 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]sending state message TRANSACTION -[6ad 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message GET_STATE from shim -[6ae 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[6af 12-19 06:48:48.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [dab4dbd0]Received GET_STATE, invoking get state from ledger -[6b0 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6b1 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0] getting state for chaincode mycc, key a, channel businesschannel -[6b2 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -[6b3 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dab4dbd0]Got state. Sending RESPONSE -[6b4 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [dab4dbd0]handleGetState serial send RESPONSE -[6b5 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message COMPLETED from shim -[6b6 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6b7 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66]HandleMessage- COMPLETED. Notify -[6b8 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -[6b9 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6ba 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[6bb 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[6bc 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e957060b-60c0-44f0-8698-a3f119d31623] -[6bd 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[6be 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel chaincode id: name:"mycc" -[6bf 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -[6c0 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 channel id: businesschannel version: 1.0.5 -[6c1 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66,syscc=true,proposal=0xc4220320f0,canname=escc:1.0.5 -[6c2 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[6c3 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6c4 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[6c5 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]Inside sendExecuteMessage. Message TRANSACTION -[6c6 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6c7 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6c8 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dab4dbd0]sendExecuteMsg trigger event TRANSACTION -[6c9 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Move state message TRANSACTION -[6ca 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6cb 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6cc 12-19 06:48:48.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]sending state message TRANSACTION -[6cd 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Received message TRANSACTION from shim -[6ce 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6cf 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dab4dbd0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6d0 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[6d1 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[6d2 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Transaction completed. Sending COMPLETED -[6d3 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]Move state message COMPLETED -[6d4 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dab4dbd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6d5 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dab4dbd0]send state message COMPLETED -[6d6 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dab4dbd0]Received message COMPLETED from shim -[6d7 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6d8 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66]HandleMessage- COMPLETED. Notify -[6d9 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dab4dbd0ec7f8f6bab28af2ee82315dbc41fcc88bba3636e451a49a06df77e66 -[6da 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6db 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[6dc 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[6dd 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e957060b-60c0-44f0-8698-a3f119d31623] -[6de 12-19 06:48:48.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[6df 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[6e0 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420261c80 -[6e1 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[6e2 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[6e3 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[6e4 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[6e5 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[6e6 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422033450, header 0xc420261cb0 -[6e7 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[6e8 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 -[6e9 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485] -[6ea 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[6eb 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [87fc87c0-366a-4a58-a820-52e2aaa4ae08] -[6ec 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel -[6ed 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel version: 1.0.5 -[6ee 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485,syscc=true,proposal=0xc422033450,canname=lscc:1.0.5 -[6ef 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[6f0 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6f1 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[6f2 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]Inside sendExecuteMessage. Message TRANSACTION -[6f3 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6f4 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6f5 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]sendExecuteMsg trigger event TRANSACTION -[6f6 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Move state message TRANSACTION -[6f7 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6f8 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6f9 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]sending state message TRANSACTION -[6fa 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Received message TRANSACTION from shim -[6fb 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6fc 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8176048]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6fd 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8176048]Sending GET_STATE -[6fe 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Received message GET_STATE from shim -[6ff 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[700 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d8176048]Received GET_STATE, invoking get state from ledger -[701 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[702 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8176048] getting state for chaincode lscc, key mycc, channel businesschannel -[703 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[704 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8176048]Got state. Sending RESPONSE -[705 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8176048]handleGetState serial send RESPONSE -[706 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Received message RESPONSE from shim -[707 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[708 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8176048]before send -[709 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8176048]after send -[70a 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8176048]Received RESPONSE, communicated (state:ready) -[70b 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8176048]GetState received payload RESPONSE -[70c 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Transaction completed. Sending COMPLETED -[70d 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Move state message COMPLETED -[70e 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[70f 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]send state message COMPLETED -[710 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Received message COMPLETED from shim -[711 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[712 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485]HandleMessage- COMPLETED. Notify -[713 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 -[714 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[715 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[716 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[717 12-19 06:48:48.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [87fc87c0-366a-4a58-a820-52e2aaa4ae08] -[718 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[719 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel chaincode id: name:"lscc" -[71a 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[71b 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 channel id: businesschannel version: 1.0.5 -[71c 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485,syscc=true,proposal=0xc422033450,canname=escc:1.0.5 -[71d 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[71e 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[71f 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[720 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]Inside sendExecuteMessage. Message TRANSACTION -[721 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[722 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[723 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8176048]sendExecuteMsg trigger event TRANSACTION -[724 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Move state message TRANSACTION -[725 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[726 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[727 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]sending state message TRANSACTION -[728 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Received message TRANSACTION from shim -[729 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[72a 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8176048]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[72b 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[72c 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[72d 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Transaction completed. Sending COMPLETED -[72e 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]Move state message COMPLETED -[72f 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8176048]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[730 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8176048]send state message COMPLETED -[731 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8176048]Received message COMPLETED from shim -[732 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[733 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485]HandleMessage- COMPLETED. Notify -[734 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8176048abefb7ec8d9b8483219336d8e0437782e3bdc4d9fcb51d1d9b977485 -[735 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[736 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[737 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[738 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [87fc87c0-366a-4a58-a820-52e2aaa4ae08] -[739 12-19 06:48:48.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[73a 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[73b 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f3a510 -[73c 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[73d 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[73e 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[73f 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[740 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[741 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4221830e0, header 0xc421f3a540 -[742 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[743 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 -[744 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090] -[745 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[746 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [80d0f625-ec2e-4824-9cfd-89b7cded0832] -[747 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel -[748 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel version: 1.0.5 -[749 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090,syscc=true,proposal=0xc4221830e0,canname=lscc:1.0.5 -[74a 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[74b 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[74c 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[74d 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]Inside sendExecuteMessage. Message TRANSACTION -[74e 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[74f 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[750 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]sendExecuteMsg trigger event TRANSACTION -[751 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Move state message TRANSACTION -[752 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[753 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[754 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]sending state message TRANSACTION -[755 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Received message TRANSACTION from shim -[756 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[757 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c19a6553]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[758 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c19a6553]Sending GET_STATE -[759 12-19 06:48:49.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Received message GET_STATE from shim -[75a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[75b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c19a6553]Received GET_STATE, invoking get state from ledger -[75c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[75d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c19a6553] getting state for chaincode lscc, key mycc, channel businesschannel -[75e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[75f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c19a6553]Got state. Sending RESPONSE -[760 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c19a6553]handleGetState serial send RESPONSE -[761 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Received message RESPONSE from shim -[762 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[763 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c19a6553]before send -[764 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c19a6553]after send -[765 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c19a6553]Received RESPONSE, communicated (state:ready) -[766 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c19a6553]GetState received payload RESPONSE -[767 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Transaction completed. Sending COMPLETED -[768 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Move state message COMPLETED -[769 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[76a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]send state message COMPLETED -[76b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Received message COMPLETED from shim -[76c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[76d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090]HandleMessage- COMPLETED. Notify -[76e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 -[76f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[770 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[771 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[772 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [80d0f625-ec2e-4824-9cfd-89b7cded0832] -[773 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[774 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel chaincode id: name:"lscc" -[775 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[776 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 channel id: businesschannel version: 1.0.5 -[777 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090,syscc=true,proposal=0xc4221830e0,canname=escc:1.0.5 -[778 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[779 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[77a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[77b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]Inside sendExecuteMessage. Message TRANSACTION -[77c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[77d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[77e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c19a6553]sendExecuteMsg trigger event TRANSACTION -[77f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Move state message TRANSACTION -[780 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[781 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[782 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]sending state message TRANSACTION -[783 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Received message TRANSACTION from shim -[784 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[785 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c19a6553]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[786 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[787 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[788 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Transaction completed. Sending COMPLETED -[789 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]Move state message COMPLETED -[78a 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c19a6553]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[78b 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c19a6553]send state message COMPLETED -[78c 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c19a6553]Received message COMPLETED from shim -[78d 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[78e 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090]HandleMessage- COMPLETED. Notify -[78f 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c19a6553ac3c67af7614aebf14e57a507c453bf96ad32697d092221745c89090 -[790 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[791 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[792 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[793 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [80d0f625-ec2e-4824-9cfd-89b7cded0832] -[794 12-19 06:48:49.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[795 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[796 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42208bb00 -[797 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[798 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[799 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[79a 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[79b 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[79c 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422118d70, header 0xc42208bb30 -[79d 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[79e 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b -[79f 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b] -[7a0 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7a1 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [feabe049-5086-45be-97ca-28a6c22ad92d] -[7a2 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel -[7a3 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel version: 1.0.5 -[7a4 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b,syscc=true,proposal=0xc422118d70,canname=lscc:1.0.5 -[7a5 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[7a6 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7a7 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[7a8 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]Inside sendExecuteMessage. Message TRANSACTION -[7a9 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7aa 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[7ab 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]sendExecuteMsg trigger event TRANSACTION -[7ac 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Move state message TRANSACTION -[7ad 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7ae 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7af 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]sending state message TRANSACTION -[7b0 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Received message TRANSACTION from shim -[7b1 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7b2 12-19 06:48:49.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5b0b9e14]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7b3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5b0b9e14]Sending GET_STATE -[7b4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Received message GET_STATE from shim -[7b5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[7b6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [5b0b9e14]Received GET_STATE, invoking get state from ledger -[7b7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7b8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5b0b9e14] getting state for chaincode lscc, key mycc, channel businesschannel -[7b9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[7ba 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5b0b9e14]Got state. Sending RESPONSE -[7bb 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [5b0b9e14]handleGetState serial send RESPONSE -[7bc 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Received message RESPONSE from shim -[7bd 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[7be 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5b0b9e14]before send -[7bf 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [5b0b9e14]after send -[7c0 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [5b0b9e14]Received RESPONSE, communicated (state:ready) -[7c1 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5b0b9e14]GetState received payload RESPONSE -[7c2 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Transaction completed. Sending COMPLETED -[7c3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Move state message COMPLETED -[7c4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7c5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]send state message COMPLETED -[7c6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Received message COMPLETED from shim -[7c7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7c8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b]HandleMessage- COMPLETED. Notify -[7c9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b -[7ca 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7cb 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[7cc 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[7cd 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [feabe049-5086-45be-97ca-28a6c22ad92d] -[7ce 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[7cf 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel chaincode id: name:"lscc" -[7d0 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[7d1 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b channel id: businesschannel version: 1.0.5 -[7d2 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b,syscc=true,proposal=0xc422118d70,canname=escc:1.0.5 -[7d3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[7d4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7d5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[7d6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]Inside sendExecuteMessage. Message TRANSACTION -[7d7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7d8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[7d9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5b0b9e14]sendExecuteMsg trigger event TRANSACTION -[7da 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Move state message TRANSACTION -[7db 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7dc 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7dd 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]sending state message TRANSACTION -[7de 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Received message TRANSACTION from shim -[7df 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7e0 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5b0b9e14]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7e1 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[7e2 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[7e3 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Transaction completed. Sending COMPLETED -[7e4 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]Move state message COMPLETED -[7e5 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b0b9e14]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7e6 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b0b9e14]send state message COMPLETED -[7e7 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b0b9e14]Received message COMPLETED from shim -[7e8 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e14]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7e9 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b]HandleMessage- COMPLETED. Notify -[7ea 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b0b9e142da495774f4dba07631eab67ab0cd4b93af07742c95d30763a7b473b -[7eb 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7ec 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[7ed 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[7ee 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [feabe049-5086-45be-97ca-28a6c22ad92d] -[7ef 12-19 06:48:49.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[7f0 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[7f1 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220e17a0 -[7f2 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[7f3 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[7f4 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[7f5 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[7f6 12-19 06:48:49.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[7f7 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220befa0, header 0xc4220e17d0 -[7f8 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[7f9 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 -[7fa 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507] -[7fb 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7fc 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7562ff34-b1cc-454d-aa80-561b58a5984a] -[7fd 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel -[7fe 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel version: 1.0.5 -[7ff 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507,syscc=true,proposal=0xc4220befa0,canname=lscc:1.0.5 -[800 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[801 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[802 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[803 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]Inside sendExecuteMessage. Message TRANSACTION -[804 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[805 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[806 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]sendExecuteMsg trigger event TRANSACTION -[807 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Move state message TRANSACTION -[808 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[809 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[80a 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]sending state message TRANSACTION -[80b 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Received message TRANSACTION from shim -[80c 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[80d 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ff3ffbe4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[80e 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Transaction completed. Sending COMPLETED -[80f 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Move state message COMPLETED -[810 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[811 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]send state message COMPLETED -[812 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Received message COMPLETED from shim -[813 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[814 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507]HandleMessage- COMPLETED. Notify -[815 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 -[816 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[817 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[818 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[819 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7562ff34-b1cc-454d-aa80-561b58a5984a] -[81a 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[81b 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel chaincode id: name:"lscc" -[81c 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[81d 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 channel id: businesschannel version: 1.0.5 -[81e 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507,syscc=true,proposal=0xc4220befa0,canname=escc:1.0.5 -[81f 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[820 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[821 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[822 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]Inside sendExecuteMessage. Message TRANSACTION -[823 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[824 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[825 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ff3ffbe4]sendExecuteMsg trigger event TRANSACTION -[826 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Move state message TRANSACTION -[827 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[828 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[829 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]sending state message TRANSACTION -[82a 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Received message TRANSACTION from shim -[82b 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[82c 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ff3ffbe4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[82d 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[82e 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[82f 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Transaction completed. Sending COMPLETED -[830 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]Move state message COMPLETED -[831 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ff3ffbe4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[832 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ff3ffbe4]send state message COMPLETED -[833 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ff3ffbe4]Received message COMPLETED from shim -[834 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[835 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507]HandleMessage- COMPLETED. Notify -[836 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ff3ffbe4233c0657e11cf115a970cdce5d348fe2ac7c3698014af671b3f5c507 -[837 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[838 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[839 12-19 06:48:49.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[83a 12-19 06:48:49.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7562ff34-b1cc-454d-aa80-561b58a5984a] -[83b 12-19 06:48:49.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[83c 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[83d 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422106990 -[83e 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[83f 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[840 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[841 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[842 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[843 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422119540, header 0xc4221069c0 -[844 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[845 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e -[846 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e] -[847 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[848 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [04b5a3c1-2cb6-470a-957e-5b19b2f668f6] -[849 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel -[84a 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel version: 1.0.5 -[84b 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e,syscc=true,proposal=0xc422119540,canname=lscc:1.0.5 -[84c 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 -[84d 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[84e 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 -[84f 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]Inside sendExecuteMessage. Message TRANSACTION -[850 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[851 12-19 06:48:49.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[852 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]sendExecuteMsg trigger event TRANSACTION -[853 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Move state message TRANSACTION -[854 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[855 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[856 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]sending state message TRANSACTION -[857 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message TRANSACTION from shim -[858 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[859 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4db8d2d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[85a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [f4db8d2d]Sending GET_STATE_BY_RANGE -[85b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message GET_STATE_BY_RANGE from shim -[85c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[85d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -[85e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -[85f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[860 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -[861 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[862 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -[863 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4db8d2d]handleGetStateByRange serial send RESPONSE -[864 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message RESPONSE from shim -[865 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[866 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]before send -[867 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]after send -[868 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4db8d2d]Received RESPONSE, communicated (state:ready) -[869 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [f4db8d2d]Received RESPONSE. Successfully got range -[86a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [f4db8d2d]Sending QUERY_STATE_CLOSE -[86b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message QUERY_STATE_CLOSE from shim -[86c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[86d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -[86e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -[86f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[870 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -[871 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4db8d2d]handleQueryStateClose serial send RESPONSE -[872 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message RESPONSE from shim -[873 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[874 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]before send -[875 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4db8d2d]after send -[876 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4db8d2d]Received RESPONSE, communicated (state:ready) -[877 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [f4db8d2d]Received RESPONSE. Successfully got range -[878 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Transaction completed. Sending COMPLETED -[879 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Move state message COMPLETED -[87a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[87b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]send state message COMPLETED -[87c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message COMPLETED from shim -[87d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[87e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e]HandleMessage- COMPLETED. Notify -[87f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e -[880 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[881 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[882 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[883 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [04b5a3c1-2cb6-470a-957e-5b19b2f668f6] -[884 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[885 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel chaincode id: name:"lscc" -[886 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[887 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e channel id: businesschannel version: 1.0.5 -[888 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e,syscc=true,proposal=0xc422119540,canname=escc:1.0.5 -[889 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[88a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[88b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[88c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]Inside sendExecuteMessage. Message TRANSACTION -[88d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[88e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[88f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4db8d2d]sendExecuteMsg trigger event TRANSACTION -[890 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Move state message TRANSACTION -[891 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[892 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[893 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]sending state message TRANSACTION -[894 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Received message TRANSACTION from shim -[895 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[896 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4db8d2d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[897 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[898 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[899 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Transaction completed. Sending COMPLETED -[89a 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]Move state message COMPLETED -[89b 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4db8d2d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[89c 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4db8d2d]send state message COMPLETED -[89d 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4db8d2d]Received message COMPLETED from shim -[89e 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[89f 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e]HandleMessage- COMPLETED. Notify -[8a0 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f4db8d2d03debafe960de5b9dd5670d8a9f67bff62fd9898895cda56ca7f048e -[8a1 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8a2 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8a3 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[8a4 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [04b5a3c1-2cb6-470a-957e-5b19b2f668f6] -[8a5 12-19 06:48:49.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[8a6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[8a7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42218aed0 -[8a8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8a9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8aa 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[8ab 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8ac 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8ad 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421712f00, header 0xc42218af00 -[8ae 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[8af 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb -[8b0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb] -[8b1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8b2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [54114a2a-ca8c-4b57-9ee3-f6be568d5f82] -[8b3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel -[8b4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel version: 1.0.5 -[8b5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb,syscc=true,proposal=0xc421712f00,canname=qscc:1.0.5 -[8b6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -[8b7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8b8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -[8b9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]Inside sendExecuteMessage. Message TRANSACTION -[8ba 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8bb 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8bc 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]sendExecuteMsg trigger event TRANSACTION -[8bd 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Move state message TRANSACTION -[8be 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8bf 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8c0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]sending state message TRANSACTION -[8c1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Received message TRANSACTION from shim -[8c2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8c3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b5877d7f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8c4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[8c5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Transaction completed. Sending COMPLETED -[8c6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Move state message COMPLETED -[8c7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8c8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]send state message COMPLETED -[8c9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Received message COMPLETED from shim -[8ca 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8cb 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb]HandleMessage- COMPLETED. Notify -[8cc 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb -[8cd 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8ce 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[8cf 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[8d0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [54114a2a-ca8c-4b57-9ee3-f6be568d5f82] -[8d1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[8d2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel chaincode id: name:"qscc" -[8d3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[8d4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb channel id: businesschannel version: 1.0.5 -[8d5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb,syscc=true,proposal=0xc421712f00,canname=escc:1.0.5 -[8d6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[8d7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8d8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[8d9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]Inside sendExecuteMessage. Message TRANSACTION -[8da 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8db 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8dc 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5877d7f]sendExecuteMsg trigger event TRANSACTION -[8dd 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Move state message TRANSACTION -[8de 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8df 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8e0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]sending state message TRANSACTION -[8e1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Received message TRANSACTION from shim -[8e2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8e3 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b5877d7f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8e4 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[8e5 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[8e6 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Transaction completed. Sending COMPLETED -[8e7 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]Move state message COMPLETED -[8e8 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5877d7f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8e9 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5877d7f]send state message COMPLETED -[8ea 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5877d7f]Received message COMPLETED from shim -[8eb 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8ec 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb]HandleMessage- COMPLETED. Notify -[8ed 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5877d7f17900a13b65378f660763f107a162f9b79fa8c7aea6c2264f35bfacb -[8ee 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8ef 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8f0 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[8f1 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [54114a2a-ca8c-4b57-9ee3-f6be568d5f82] -[8f2 12-19 06:48:49.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[8f3 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[8f4 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228187e0 -[8f5 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8f6 12-19 06:48:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8f7 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 123a6e7ac41d8eae1b092528206f566a4f56ae67353ce3df7bdd8db7c7d7f290} -[8f8 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8f9 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8fa 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4223ac6e0, header 0xc422818810 -[8fb 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[8fc 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d -[8fd 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d] -[8fe 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8ff 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d97b8f9e-5f01-47cc-88ad-1b7ef436315e] -[900 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel -[901 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel version: 1.0.5 -[902 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d,syscc=true,proposal=0xc4223ac6e0,canname=qscc:1.0.5 -[903 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 -[904 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[905 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 -[906 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]Inside sendExecuteMessage. Message TRANSACTION -[907 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[908 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[909 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]sendExecuteMsg trigger event TRANSACTION -[90a 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Move state message TRANSACTION -[90b 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[90c 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[90d 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]sending state message TRANSACTION -[90e 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Received message TRANSACTION from shim -[90f 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[910 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fa6cfee3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[911 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[912 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[913 12-19 06:48:50.05 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=[25671] -[914 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28880], Going to peek [8] bytes -[915 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25671], bytesOffset=[25673]} -[916 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Transaction completed. Sending COMPLETED -[917 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Move state message COMPLETED -[918 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[919 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]send state message COMPLETED -[91a 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Received message COMPLETED from shim -[91b 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[91c 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d]HandleMessage- COMPLETED. Notify -[91d 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d -[91e 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[91f 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[920 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[921 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d97b8f9e-5f01-47cc-88ad-1b7ef436315e] -[922 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[923 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel chaincode id: name:"qscc" -[924 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[925 12-19 06:48:50.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d channel id: businesschannel version: 1.0.5 -[926 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d,syscc=true,proposal=0xc4223ac6e0,canname=escc:1.0.5 -[927 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 -[928 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[929 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 -[92a 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]Inside sendExecuteMessage. Message TRANSACTION -[92b 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[92c 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[92d 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fa6cfee3]sendExecuteMsg trigger event TRANSACTION -[92e 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Move state message TRANSACTION -[92f 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[930 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[931 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]sending state message TRANSACTION -[932 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Received message TRANSACTION from shim -[933 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[934 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fa6cfee3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[935 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[936 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[937 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Transaction completed. Sending COMPLETED -[938 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]Move state message COMPLETED -[939 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa6cfee3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[93a 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa6cfee3]send state message COMPLETED -[93b 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa6cfee3]Received message COMPLETED from shim -[93c 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[93d 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d]HandleMessage- COMPLETED. Notify -[93e 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa6cfee3966112b6b92fa5ca59dc99b194af6ba4f0e2f90eb19b8755bba8707d -[93f 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[940 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[941 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[942 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d97b8f9e-5f01-47cc-88ad-1b7ef436315e] -[943 12-19 06:48:50.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[944 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -[945 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -[946 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[947 12-19 06:48:50.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[948 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[949 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4229e2a80 -[94a 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -[94b 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[94c 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[94d 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 9928c580c209763de36d98850256055c31c9b3cd8fd813534b95aac916b700ed} -[94e 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[94f 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[950 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a16000, header channel_header:"\010\003\032\014\010\320\354\342\321\005\020\374\276\223\223\001\"\017businesschannel*@9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRANifZiXsMqtFhdpfvq83FEUwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjE1MDc1NjAyWhcNMjcxMjEzMDc1NjAy\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMDYtQ/19fLKq8KVJGvfwDYav2Jy0KAJ\n5WvSWabA0xyVmEXrptW+o6Awec46CfKSj3Dh3JYMob6VqUYl3w+T9eujTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIM4O6D2OZvvc\nc0+wyw+h65uEL7PiYU5+pUawgXANNA06MAoGCCqGSM49BAMCA0gAMEUCIQDX2WEP\nfnqPE7sW6mBIjJKzNdZG39qwEjAiYI4sloLKbwIgCLC2uUOL3jI2T9XtYuHGzxwO\nRylILfxW9iIlKYt/mSI=\n-----END -----\n\022\030\222q2\352[I\211\213\010\265\317\352wh\301vn\212\310\341\244)9O" -[951 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[952 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[953 12-19 06:48:50.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[954 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[955 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] -[956 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[957 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [8d18fa10-3b6f-40b6-a600-a2a196f6ac9d] -[958 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[959 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [8d18fa10-3b6f-40b6-a600-a2a196f6ac9d] -[95a 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[95b 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [59c57bce-c902-4ac5-96e6-a8182fdd18e6] -[95c 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=b5f637b6-e64a-4410-a58f-7615fd305dd6,syscc=true,proposal=0x0,canname=vscc:1.0.5 -[95d 12-19 06:48:50.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 chaindID businesschannel -[95e 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 -[95f 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[960 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 -[961 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5f637b6]Inside sendExecuteMessage. Message TRANSACTION -[962 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[963 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b5f637b6]sendExecuteMsg trigger event TRANSACTION -[964 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5f637b6]Move state message TRANSACTION -[965 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5f637b6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[966 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[967 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5f637b6]sending state message TRANSACTION -[968 12-19 06:48:50.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]Received message TRANSACTION from shim -[969 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5f637b6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[96a 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b5f637b6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[96b 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[96c 12-19 06:48:50.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[96d 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[96e 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]Transaction completed. Sending COMPLETED -[96f 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]Move state message COMPLETED -[970 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5f637b6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[971 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5f637b6]send state message COMPLETED -[972 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b5f637b6]Received message COMPLETED from shim -[973 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5f637b6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[974 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b5f637b6-e64a-4410-a58f-7615fd305dd6]HandleMessage- COMPLETED. Notify -[975 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b5f637b6-e64a-4410-a58f-7615fd305dd6 -[976 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[977 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [59c57bce-c902-4ac5-96e6-a8182fdd18e6] -[978 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[979 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[97a 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a4ef40), Data:(*common.BlockData)(0xc4220e2220), Metadata:(*common.BlockMetadata)(0xc4220e2260)}, doMVCCValidation=true -[97b 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[97c 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -[97d 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -[97e 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -[97f 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] marked as valid by state validator -[980 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x8f, 0xf6, 0x73, 0x94, 0xc7, 0x5c, 0xa2, 0xe7, 0x44, 0xe4, 0xfe, 0x24, 0x6f, 0xe7, 0x8a, 0xc2, 0xcd, 0xd0, 0x61, 0x79, 0x61, 0x1f, 0x71, 0xaa, 0xd8, 0x59, 0x4, 0x26, 0xdc, 0xeb, 0xb5, 0x29} txOffsets= -txId=9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 locPointer=offset=70, bytesLength=2849 +[657 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to index +[658 01-12 22:57:38.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49924, bytesLength=2847] for tx number:[0] ID: [ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251] to blockNumTranNum index +[659 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54521], isChainEmpty=[false], lastBlockNumber=[5] +[65a 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +[65b 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[65c 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[65d 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +[65e 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +[65f 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[660 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +[661 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +[662 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[663 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: ee76e58d0f2a2e429e136f714f0a163c1dfe203ed699aba2f3eb61ae5a8d0251 +[664 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +[665 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[666 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[667 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[668 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[669 01-12 22:57:38.12 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[66a 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[66b 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f9ee70 +[66c 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[66d 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[66e 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[66f 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[670 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[671 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4214ade00, header 0xc421f9eea0 +[672 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" +[673 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +[674 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8] +[675 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[676 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [57dc365c-33f8-4116-8749-d16535fdfc37] +[677 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel +[678 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8,syscc=true,proposal=0xc4214ade00,canname=lscc:1.0.5 +[679 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[67a 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +[67b 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[67c 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]Inside sendExecuteMessage. Message TRANSACTION +[67d 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[67e 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[67f 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]sendExecuteMsg trigger event TRANSACTION +[680 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Move state message TRANSACTION +[681 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[682 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[683 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]sending state message TRANSACTION +[684 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Received message TRANSACTION from shim +[685 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[686 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd5fd2f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[687 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cd5fd2f1]Sending GET_STATE +[688 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message GET_STATE from shim +[689 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[68a 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cd5fd2f1]Received GET_STATE, invoking get state from ledger +[68b 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[68c 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1] getting state for chaincode lscc, key mycc, channel businesschannel +[68d 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[68e 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1]Got state. Sending RESPONSE +[68f 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cd5fd2f1]handleGetState serial send RESPONSE +[690 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Received message RESPONSE from shim +[691 01-12 22:57:52.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[692 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cd5fd2f1]before send +[693 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [cd5fd2f1]after send +[694 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [cd5fd2f1]Received RESPONSE, communicated (state:ready) +[695 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [cd5fd2f1]GetState received payload RESPONSE +[696 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Transaction completed. Sending COMPLETED +[697 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Move state message COMPLETED +[698 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[699 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]send state message COMPLETED +[69a 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message COMPLETED from shim +[69b 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[69c 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8]HandleMessage- COMPLETED. Notify +[69d 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +[69e 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +[69f 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[6a0 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel version: 1.0 +[6a1 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8,syscc=false,proposal=0xc4214ade00,canname=mycc:1.0 +[6a2 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 +[6a3 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6a4 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 +[6a5 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]Inside sendExecuteMessage. Message TRANSACTION +[6a6 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6a7 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6a8 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]sendExecuteMsg trigger event TRANSACTION +[6a9 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Move state message TRANSACTION +[6aa 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6ab 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6ac 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]sending state message TRANSACTION +[6ad 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message GET_STATE from shim +[6ae 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[6af 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [cd5fd2f1]Received GET_STATE, invoking get state from ledger +[6b0 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6b1 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1] getting state for chaincode mycc, key a, channel businesschannel +[6b2 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a +[6b3 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [cd5fd2f1]Got state. Sending RESPONSE +[6b4 01-12 22:57:52.53 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [cd5fd2f1]handleGetState serial send RESPONSE +[6b5 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message COMPLETED from shim +[6b6 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6b7 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8]HandleMessage- COMPLETED. Notify +[6b8 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +[6b9 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6ba 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[6bb 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[6bc 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [57dc365c-33f8-4116-8749-d16535fdfc37] +[6bd 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[6be 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel chaincode id: name:"mycc" +[6bf 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc +[6c0 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 channel id: businesschannel version: 1.0.5 +[6c1 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8,syscc=true,proposal=0xc4214ade00,canname=escc:1.0.5 +[6c2 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[6c3 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6c4 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[6c5 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]Inside sendExecuteMessage. Message TRANSACTION +[6c6 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6c7 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6c8 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd5fd2f1]sendExecuteMsg trigger event TRANSACTION +[6c9 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Move state message TRANSACTION +[6ca 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6cb 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6cc 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]sending state message TRANSACTION +[6cd 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Received message TRANSACTION from shim +[6ce 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6cf 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd5fd2f1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6d0 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[6d1 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[6d2 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Transaction completed. Sending COMPLETED +[6d3 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]Move state message COMPLETED +[6d4 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd5fd2f1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[6d5 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd5fd2f1]send state message COMPLETED +[6d6 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd5fd2f1]Received message COMPLETED from shim +[6d7 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6d8 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8]HandleMessage- COMPLETED. Notify +[6d9 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd5fd2f18ac0fcfbcdb537f57194a6fc09e22f14bcc3c5c1d6695ca7172e93e8 +[6da 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6db 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[6dc 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[6dd 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [57dc365c-33f8-4116-8749-d16535fdfc37] +[6de 01-12 22:57:52.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[6df 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[6e0 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422848b70 +[6e1 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[6e2 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[6e3 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[6e4 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[6e5 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[6e6 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421950d70, header 0xc422848ba0 +[6e7 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[6e8 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc +[6e9 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc] +[6ea 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[6eb 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [66d320e7-a1d1-4055-ae26-29ec06cfbe19] +[6ec 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel +[6ed 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel version: 1.0.5 +[6ee 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc,syscc=true,proposal=0xc421950d70,canname=lscc:1.0.5 +[6ef 01-12 22:57:53.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[6f0 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6f1 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[6f2 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]Inside sendExecuteMessage. Message TRANSACTION +[6f3 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6f4 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6f5 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]sendExecuteMsg trigger event TRANSACTION +[6f6 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Move state message TRANSACTION +[6f7 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6f8 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6f9 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]sending state message TRANSACTION +[6fa 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Received message TRANSACTION from shim +[6fb 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6fc 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f3d141ef]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6fd 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f3d141ef]Sending GET_STATE +[6fe 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Received message GET_STATE from shim +[6ff 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[700 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f3d141ef]Received GET_STATE, invoking get state from ledger +[701 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[702 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f3d141ef] getting state for chaincode lscc, key mycc, channel businesschannel +[703 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[704 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f3d141ef]Got state. Sending RESPONSE +[705 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f3d141ef]handleGetState serial send RESPONSE +[706 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Received message RESPONSE from shim +[707 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[708 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f3d141ef]before send +[709 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f3d141ef]after send +[70a 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f3d141ef]Received RESPONSE, communicated (state:ready) +[70b 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f3d141ef]GetState received payload RESPONSE +[70c 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Transaction completed. Sending COMPLETED +[70d 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Move state message COMPLETED +[70e 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[70f 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]send state message COMPLETED +[710 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Received message COMPLETED from shim +[711 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[712 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc]HandleMessage- COMPLETED. Notify +[713 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc +[714 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[715 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[716 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[717 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [66d320e7-a1d1-4055-ae26-29ec06cfbe19] +[718 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[719 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel chaincode id: name:"lscc" +[71a 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[71b 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc channel id: businesschannel version: 1.0.5 +[71c 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc,syscc=true,proposal=0xc421950d70,canname=escc:1.0.5 +[71d 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[71e 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[71f 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[720 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]Inside sendExecuteMessage. Message TRANSACTION +[721 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[722 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[723 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f3d141ef]sendExecuteMsg trigger event TRANSACTION +[724 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Move state message TRANSACTION +[725 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[726 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[727 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]sending state message TRANSACTION +[728 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Received message TRANSACTION from shim +[729 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[72a 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f3d141ef]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[72b 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[72c 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[72d 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Transaction completed. Sending COMPLETED +[72e 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]Move state message COMPLETED +[72f 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f3d141ef]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[730 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f3d141ef]send state message COMPLETED +[731 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f3d141ef]Received message COMPLETED from shim +[732 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[733 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc]HandleMessage- COMPLETED. Notify +[734 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f3d141ef5b72c3937f718816be0e7d56e6cb95a1ed8ca5a7afccf2a9c5dd74bc +[735 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[736 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[737 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[738 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [66d320e7-a1d1-4055-ae26-29ec06cfbe19] +[739 01-12 22:57:53.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[73a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[73b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422849fb0 +[73c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[73d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[73e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[73f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[740 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[741 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421951a40, header 0xc422728000 +[742 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[743 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d +[744 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d] +[745 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[746 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [804b924c-4f93-4cca-89e8-0e3cb2cb4981] +[747 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel +[748 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel version: 1.0.5 +[749 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d,syscc=true,proposal=0xc421951a40,canname=lscc:1.0.5 +[74a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[74b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[74c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[74d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]Inside sendExecuteMessage. Message TRANSACTION +[74e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[74f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[750 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]sendExecuteMsg trigger event TRANSACTION +[751 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Move state message TRANSACTION +[752 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[753 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[754 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]sending state message TRANSACTION +[755 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Received message TRANSACTION from shim +[756 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[757 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7131d719]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[758 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7131d719]Sending GET_STATE +[759 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Received message GET_STATE from shim +[75a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[75b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7131d719]Received GET_STATE, invoking get state from ledger +[75c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[75d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7131d719] getting state for chaincode lscc, key mycc, channel businesschannel +[75e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[75f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7131d719]Got state. Sending RESPONSE +[760 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7131d719]handleGetState serial send RESPONSE +[761 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Received message RESPONSE from shim +[762 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[763 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7131d719]before send +[764 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7131d719]after send +[765 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7131d719]Received RESPONSE, communicated (state:ready) +[766 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7131d719]GetState received payload RESPONSE +[767 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Transaction completed. Sending COMPLETED +[768 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Move state message COMPLETED +[769 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[76a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]send state message COMPLETED +[76b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Received message COMPLETED from shim +[76c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[76d 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d]HandleMessage- COMPLETED. Notify +[76e 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d +[76f 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[770 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[771 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[772 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [804b924c-4f93-4cca-89e8-0e3cb2cb4981] +[773 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[774 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel chaincode id: name:"lscc" +[775 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[776 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d channel id: businesschannel version: 1.0.5 +[777 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d,syscc=true,proposal=0xc421951a40,canname=escc:1.0.5 +[778 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[779 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[77a 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[77b 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]Inside sendExecuteMessage. Message TRANSACTION +[77c 01-12 22:57:53.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[77d 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[77e 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7131d719]sendExecuteMsg trigger event TRANSACTION +[77f 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Move state message TRANSACTION +[780 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[781 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[782 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]sending state message TRANSACTION +[783 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Received message TRANSACTION from shim +[784 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[785 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7131d719]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[786 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[787 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[788 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Transaction completed. Sending COMPLETED +[789 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]Move state message COMPLETED +[78a 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7131d719]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[78b 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7131d719]send state message COMPLETED +[78c 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7131d719]Received message COMPLETED from shim +[78d 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[78e 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d]HandleMessage- COMPLETED. Notify +[78f 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7131d719766cfb7e6fdb6dae6d2d89570b5bc6edcf61f93437e08735a094976d +[790 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[791 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[792 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[793 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [804b924c-4f93-4cca-89e8-0e3cb2cb4981] +[794 01-12 22:57:53.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[795 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[796 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220cc810 +[797 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[798 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[799 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[79a 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[79b 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[79c 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421dc8d20, header 0xc4220cc840 +[79d 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[79e 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 +[79f 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4] +[7a0 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[7a1 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [41835a83-e049-43cf-bb10-4fc41e51e6e4] +[7a2 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel +[7a3 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel version: 1.0.5 +[7a4 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4,syscc=true,proposal=0xc421dc8d20,canname=lscc:1.0.5 +[7a5 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[7a6 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7a7 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[7a8 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]Inside sendExecuteMessage. Message TRANSACTION +[7a9 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7aa 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7ab 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]sendExecuteMsg trigger event TRANSACTION +[7ac 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Move state message TRANSACTION +[7ad 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7ae 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7af 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]sending state message TRANSACTION +[7b0 01-12 22:57:53.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Received message TRANSACTION from shim +[7b1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7b2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4676bf7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7b3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4676bf7]Sending GET_STATE +[7b4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Received message GET_STATE from shim +[7b5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[7b6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c4676bf7]Received GET_STATE, invoking get state from ledger +[7b7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7b8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4676bf7] getting state for chaincode lscc, key mycc, channel businesschannel +[7b9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[7ba 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c4676bf7]Got state. Sending RESPONSE +[7bb 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c4676bf7]handleGetState serial send RESPONSE +[7bc 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Received message RESPONSE from shim +[7bd 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[7be 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4676bf7]before send +[7bf 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c4676bf7]after send +[7c0 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c4676bf7]Received RESPONSE, communicated (state:ready) +[7c1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c4676bf7]GetState received payload RESPONSE +[7c2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Transaction completed. Sending COMPLETED +[7c3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Move state message COMPLETED +[7c4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7c5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]send state message COMPLETED +[7c6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Received message COMPLETED from shim +[7c7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7c8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4]HandleMessage- COMPLETED. Notify +[7c9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 +[7ca 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7cb 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[7cc 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[7cd 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [41835a83-e049-43cf-bb10-4fc41e51e6e4] +[7ce 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[7cf 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel chaincode id: name:"lscc" +[7d0 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[7d1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 channel id: businesschannel version: 1.0.5 +[7d2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4,syscc=true,proposal=0xc421dc8d20,canname=escc:1.0.5 +[7d3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[7d4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7d5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[7d6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]Inside sendExecuteMessage. Message TRANSACTION +[7d7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7d8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7d9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c4676bf7]sendExecuteMsg trigger event TRANSACTION +[7da 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Move state message TRANSACTION +[7db 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7dc 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7dd 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]sending state message TRANSACTION +[7de 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Received message TRANSACTION from shim +[7df 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7e0 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c4676bf7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7e1 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[7e2 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[7e3 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Transaction completed. Sending COMPLETED +[7e4 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]Move state message COMPLETED +[7e5 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4676bf7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7e6 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4676bf7]send state message COMPLETED +[7e7 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4676bf7]Received message COMPLETED from shim +[7e8 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7e9 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4]HandleMessage- COMPLETED. Notify +[7ea 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4676bf77d819a7773e7b748d366cc8d1796dec74b583338f0d24bea083323d4 +[7eb 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7ec 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[7ed 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[7ee 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [41835a83-e049-43cf-bb10-4fc41e51e6e4] +[7ef 01-12 22:57:53.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[7f0 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[7f1 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e06720 +[7f2 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[7f3 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[7f4 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[7f5 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[7f6 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[7f7 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422405db0, header 0xc421e06750 +[7f8 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[7f9 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 +[7fa 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2] +[7fb 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[7fc 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b90e8efc-5a7b-4a87-83ab-1916d8e13599] +[7fd 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel +[7fe 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel version: 1.0.5 +[7ff 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2,syscc=true,proposal=0xc422405db0,canname=lscc:1.0.5 +[800 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[801 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[802 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[803 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]Inside sendExecuteMessage. Message TRANSACTION +[804 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[805 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[806 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]sendExecuteMsg trigger event TRANSACTION +[807 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Move state message TRANSACTION +[808 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[809 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[80a 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]sending state message TRANSACTION +[80b 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Received message TRANSACTION from shim +[80c 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[80d 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5a96e6d7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[80e 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Transaction completed. Sending COMPLETED +[80f 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Move state message COMPLETED +[810 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[811 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]send state message COMPLETED +[812 01-12 22:57:53.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Received message COMPLETED from shim +[813 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[814 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2]HandleMessage- COMPLETED. Notify +[815 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 +[816 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[817 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[818 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[819 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b90e8efc-5a7b-4a87-83ab-1916d8e13599] +[81a 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[81b 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel chaincode id: name:"lscc" +[81c 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[81d 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 channel id: businesschannel version: 1.0.5 +[81e 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2,syscc=true,proposal=0xc422405db0,canname=escc:1.0.5 +[81f 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[820 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[821 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[822 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]Inside sendExecuteMessage. Message TRANSACTION +[823 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[824 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[825 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5a96e6d7]sendExecuteMsg trigger event TRANSACTION +[826 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Move state message TRANSACTION +[827 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[828 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[829 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]sending state message TRANSACTION +[82a 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Received message TRANSACTION from shim +[82b 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[82c 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5a96e6d7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[82d 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[82e 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[82f 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Transaction completed. Sending COMPLETED +[830 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]Move state message COMPLETED +[831 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a96e6d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[832 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a96e6d7]send state message COMPLETED +[833 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a96e6d7]Received message COMPLETED from shim +[834 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[835 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2]HandleMessage- COMPLETED. Notify +[836 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5a96e6d72e23c9a5f9e89c9155aee3ffe738486896b34fd7fd317838320feee2 +[837 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[838 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[839 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[83a 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b90e8efc-5a7b-4a87-83ab-1916d8e13599] +[83b 01-12 22:57:53.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[83c 01-12 22:57:53.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[83d 01-12 22:57:53.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4222aeb40 +[83e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[83f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[840 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[841 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[842 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[843 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e259a0, header 0xc4222aeb70 +[844 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[845 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 +[846 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8] +[847 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[848 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f8d5f9cf-67c4-422a-b645-4369a6dfe3aa] +[849 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel +[84a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel version: 1.0.5 +[84b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.5,txid=89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8,syscc=true,proposal=0xc421e259a0,canname=lscc:1.0.5 +[84c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.5 +[84d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[84e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.5 +[84f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]Inside sendExecuteMessage. Message TRANSACTION +[850 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[851 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[852 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]sendExecuteMsg trigger event TRANSACTION +[853 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Move state message TRANSACTION +[854 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[855 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[856 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]sending state message TRANSACTION +[857 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message TRANSACTION from shim +[858 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[859 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89d80ff9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[85a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [89d80ff9]Sending GET_STATE_BY_RANGE +[85b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message GET_STATE_BY_RANGE from shim +[85c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +[85d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +[85e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +[85f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[860 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +[861 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +[862 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +[863 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [89d80ff9]handleGetStateByRange serial send RESPONSE +[864 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message RESPONSE from shim +[865 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[866 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]before send +[867 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]after send +[868 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [89d80ff9]Received RESPONSE. Successfully got range +[869 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [89d80ff9]Received RESPONSE, communicated (state:ready) +[86a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [89d80ff9]Sending QUERY_STATE_CLOSE +[86b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message QUERY_STATE_CLOSE from shim +[86c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +[86d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +[86e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +[86f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[870 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +[871 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [89d80ff9]handleQueryStateClose serial send RESPONSE +[872 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message RESPONSE from shim +[873 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[874 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]before send +[875 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [89d80ff9]after send +[876 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [89d80ff9]Received RESPONSE, communicated (state:ready) +[877 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [89d80ff9]Received RESPONSE. Successfully got range +[878 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Transaction completed. Sending COMPLETED +[879 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Move state message COMPLETED +[87a 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[87b 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]send state message COMPLETED +[87c 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message COMPLETED from shim +[87d 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[87e 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8]HandleMessage- COMPLETED. Notify +[87f 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 +[880 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[881 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[882 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[883 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f8d5f9cf-67c4-422a-b645-4369a6dfe3aa] +[884 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[885 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel chaincode id: name:"lscc" +[886 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[887 01-12 22:57:53.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 channel id: businesschannel version: 1.0.5 +[888 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8,syscc=true,proposal=0xc421e259a0,canname=escc:1.0.5 +[889 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[88a 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[88b 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[88c 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]Inside sendExecuteMessage. Message TRANSACTION +[88d 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[88e 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[88f 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [89d80ff9]sendExecuteMsg trigger event TRANSACTION +[890 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Move state message TRANSACTION +[891 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[892 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[893 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]sending state message TRANSACTION +[894 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Received message TRANSACTION from shim +[895 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[896 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [89d80ff9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[897 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[898 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[899 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Transaction completed. Sending COMPLETED +[89a 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]Move state message COMPLETED +[89b 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89d80ff9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[89c 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89d80ff9]send state message COMPLETED +[89d 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [89d80ff9]Received message COMPLETED from shim +[89e 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[89f 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8]HandleMessage- COMPLETED. Notify +[8a0 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:89d80ff96075bdb967ace5075ae5d848a3f6247ce02318e451354faf01c320a8 +[8a1 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8a2 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8a3 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[8a4 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f8d5f9cf-67c4-422a-b645-4369a6dfe3aa] +[8a5 01-12 22:57:53.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[8a6 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[8a7 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229a26c0 +[8a8 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8a9 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8aa 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[8ab 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8ac 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8ad 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422960aa0, header 0xc4229a26f0 +[8ae 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[8af 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d +[8b0 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d] +[8b1 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[8b2 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [515ebe05-2f68-4255-aa27-bb5821f01177] +[8b3 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel +[8b4 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel version: 1.0.5 +[8b5 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d,syscc=true,proposal=0xc422960aa0,canname=qscc:1.0.5 +[8b6 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +[8b7 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8b8 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +[8b9 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]Inside sendExecuteMessage. Message TRANSACTION +[8ba 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8bb 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8bc 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]sendExecuteMsg trigger event TRANSACTION +[8bd 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Move state message TRANSACTION +[8be 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8bf 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8c0 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]sending state message TRANSACTION +[8c1 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Received message TRANSACTION from shim +[8c2 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8c3 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a7f7389]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8c4 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[8c5 01-12 22:57:54.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Transaction completed. Sending COMPLETED +[8c6 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Move state message COMPLETED +[8c7 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8c8 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]send state message COMPLETED +[8c9 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Received message COMPLETED from shim +[8ca 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8cb 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d]HandleMessage- COMPLETED. Notify +[8cc 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d +[8cd 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8ce 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[8cf 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[8d0 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [515ebe05-2f68-4255-aa27-bb5821f01177] +[8d1 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[8d2 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel chaincode id: name:"qscc" +[8d3 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[8d4 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d channel id: businesschannel version: 1.0.5 +[8d5 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d,syscc=true,proposal=0xc422960aa0,canname=escc:1.0.5 +[8d6 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[8d7 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8d8 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[8d9 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]Inside sendExecuteMessage. Message TRANSACTION +[8da 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8db 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8dc 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a7f7389]sendExecuteMsg trigger event TRANSACTION +[8dd 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Move state message TRANSACTION +[8de 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8df 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8e0 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]sending state message TRANSACTION +[8e1 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Received message TRANSACTION from shim +[8e2 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8e3 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a7f7389]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8e4 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[8e5 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[8e6 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Transaction completed. Sending COMPLETED +[8e7 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]Move state message COMPLETED +[8e8 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a7f7389]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8e9 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a7f7389]send state message COMPLETED +[8ea 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a7f7389]Received message COMPLETED from shim +[8eb 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8ec 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d]HandleMessage- COMPLETED. Notify +[8ed 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a7f7389f0149dfc857f13f2254463bc00d1961bbe72929085a1821c7805823d +[8ee 01-12 22:57:54.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8ef 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8f0 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[8f1 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [515ebe05-2f68-4255-aa27-bb5821f01177] +[8f2 01-12 22:57:54.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[8f3 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +[8f4 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +[8f5 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[8f6 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[8f7 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[8f8 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422848570 +[8f9 01-12 22:57:54.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +[8fa 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8fb 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8fc 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 8dc0e4ddc5f20caac20cf5acfc3267025ce2ac6687eb4f0dee387fe6d0018168} +[8fd 01-12 22:57:54.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8fe 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8ff 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4224de000, header channel_header:"\010\003\032\014\010\360\372\344\322\005\020\334\253\326\253\001\"\017businesschannel*@1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAO1798cPJYtHT8wpdFEnK9UwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MTM1OTA4WhcNMjcxMjI3MTM1OTA4\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCZPJsFg7lGWjlAHih7rzMwINWHTjFVf\nKlU8CF3rqg3RAzt4p38Sft+B/PuAsS3q8w99mCgMlv4Z8vdYdrrIBn+jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIA1uMKrBIdLX\n+Mi8Dxz1UzYIuLtiDeNhUdXug8RSTHpvMAoGCCqGSM49BAMCA0cAMEQCIAYxnUUv\nrAa+lCF+WSoF5hcCFRpM98p7DatvoBQBiQBkAiBkQLzGOsfSOE4Q1QJuBmPjtY5D\nSYrZ4wtbgZQtN8SOzQ==\n-----END -----\n\022\030\356\023\301F\216V\207\325x\276\255\314/\337H\305R\241\375\336\3653p\374" +[900 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[901 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[902 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[903 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[904 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] +[905 01-12 22:57:54.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[906 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [c88865a9-d8f1-4ace-bff5-16a1c2fd7b0c] +[907 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +[908 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c88865a9-d8f1-4ace-bff5-16a1c2fd7b0c] +[909 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[90a 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4a141338-4de7-411e-b5c3-fd5d07225850] +[90b 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.5,txid=502adefd-7cdd-4b50-9e02-6f5801f2f814,syscc=true,proposal=0x0,canname=vscc:1.0.5 +[90c 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 chaindID businesschannel +[90d 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.5 +[90e 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[90f 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.5 +[910 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [502adefd]Inside sendExecuteMessage. Message TRANSACTION +[911 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[912 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [502adefd]sendExecuteMsg trigger event TRANSACTION +[913 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [502adefd]Move state message TRANSACTION +[914 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [502adefd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[915 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[916 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [502adefd]sending state message TRANSACTION +[917 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]Received message TRANSACTION from shim +[918 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [502adefd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[919 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [502adefd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[91a 01-12 22:57:54.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[91b 01-12 22:57:54.46 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[91c 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[91d 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]Transaction completed. Sending COMPLETED +[91e 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]Move state message COMPLETED +[91f 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [502adefd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[920 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [502adefd]send state message COMPLETED +[921 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [502adefd]Received message COMPLETED from shim +[922 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [502adefd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[923 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [502adefd-7cdd-4b50-9e02-6f5801f2f814]HandleMessage- COMPLETED. Notify +[924 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:502adefd-7cdd-4b50-9e02-6f5801f2f814 +[925 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[926 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4a141338-4de7-411e-b5c3-fd5d07225850] +[927 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[928 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[929 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421df2800), Data:(*common.BlockData)(0xc4220a5e20), Metadata:(*common.BlockMetadata)(0xc4220a5e60)}, doMVCCValidation=true +[92a 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[92b 01-12 22:57:54.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc +[92c 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a +[92d 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b +[92e 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] marked as valid by state validator +[92f 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x16, 0xfd, 0xb6, 0x54, 0x87, 0xaf, 0xb5, 0x85, 0xf4, 0x7c, 0xd3, 0x4, 0xc2, 0x6b, 0x1f, 0x42, 0xd6, 0xb9, 0xd4, 0xdb, 0x8e, 0x6a, 0x3d, 0x95, 0xb6, 0x4f, 0x37, 0xf0, 0xc2, 0x25, 0x5, 0x30} txOffsets= +txId=1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 locPointer=offset=70, bytesLength=2850 ] -[981 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to index -[982 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2849] for tx number:[0] ID: [9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090] to blockNumTranNum index -[983 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59221], isChainEmpty=[false], lastBlockNumber=[6] -[984 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -[985 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[986 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[987 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[988 12-19 06:48:50.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[989 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[98a 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -[98b 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -[98c 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[98d 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 9ebbee3e08ef1d9b95e8e2cfe1904cc895a6bfe5caacff1c5a4210fb3d004090 -[98e 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -[98f 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[990 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[991 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[992 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[993 12-19 06:48:50.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[930 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to index +[931 01-12 22:57:54.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54591, bytesLength=2850] for tx number:[0] ID: [1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026] to blockNumTranNum index +[932 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59191], isChainEmpty=[false], lastBlockNumber=[6] +[933 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +[934 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[935 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[936 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] +[937 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] +[938 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[939 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +[93a 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +[93b 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[93c 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 1780d66594b58174f54659c5681ea01f5849d4069301dacf77c126219a76c026 +[93d 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +[93e 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[93f 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[940 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[941 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[942 01-12 22:57:54.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[943 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[944 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229c95c0 +[945 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[946 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[947 01-12 22:57:54.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 905bfa45fba9ce3fd4d3241c7a9340d407384860f1779d3bb5532a69a8b15453} +[948 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[949 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[94a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fd0730, header 0xc4229c95f0 +[94b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[94c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 +[94d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0] +[94e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[94f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [891cdda9-42eb-4bb3-b762-21dc14b625e2] +[950 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel +[951 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel version: 1.0.5 +[952 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.5,txid=22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0,syscc=true,proposal=0xc421fd0730,canname=qscc:1.0.5 +[953 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.5 +[954 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[955 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.5 +[956 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]Inside sendExecuteMessage. Message TRANSACTION +[957 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[958 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[959 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]sendExecuteMsg trigger event TRANSACTION +[95a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Move state message TRANSACTION +[95b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[95c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[95d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]sending state message TRANSACTION +[95e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Received message TRANSACTION from shim +[95f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[960 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [22b7af6a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[961 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +[962 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[963 01-12 22:57:54.53 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=[25655] +[964 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[33536], Going to peek [8] bytes +[965 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13781], placementInfo={fileNum=[0], startOffset=[25655], bytesOffset=[25657]} +[966 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Transaction completed. Sending COMPLETED +[967 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Move state message COMPLETED +[968 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[969 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]send state message COMPLETED +[96a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Received message COMPLETED from shim +[96b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[96c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0]HandleMessage- COMPLETED. Notify +[96d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 +[96e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[96f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[970 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[971 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [891cdda9-42eb-4bb3-b762-21dc14b625e2] +[972 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[973 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel chaincode id: name:"qscc" +[974 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[975 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 channel id: businesschannel version: 1.0.5 +[976 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.5,txid=22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0,syscc=true,proposal=0xc421fd0730,canname=escc:1.0.5 +[977 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.5 +[978 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[979 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.5 +[97a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]Inside sendExecuteMessage. Message TRANSACTION +[97b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[97c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[97d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [22b7af6a]sendExecuteMsg trigger event TRANSACTION +[97e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Move state message TRANSACTION +[97f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[980 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[981 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]sending state message TRANSACTION +[982 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Received message TRANSACTION from shim +[983 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[984 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [22b7af6a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[985 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[986 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[987 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Transaction completed. Sending COMPLETED +[988 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]Move state message COMPLETED +[989 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22b7af6a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[98a 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22b7af6a]send state message COMPLETED +[98b 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22b7af6a]Received message COMPLETED from shim +[98c 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[98d 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0]HandleMessage- COMPLETED. Notify +[98e 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:22b7af6a448e1a91190163638d55d366cba0ec5792cda38d3d6ff6ddc056f0b0 +[98f 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[990 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[991 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[992 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [891cdda9-42eb-4bb3-b762-21dc14b625e2] +[993 01-12 22:57:54.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit